Field output of coordinate on integer point with python script

Hello, Bonjour

frensh answer are welcomed (since I am frensh, frensh explanation could be clearer for me, even if i can understand pretty well english)

I am looking to have a field output made automaticaly with a python script. In this field output I would lije deformation en coordinate on INTEGRATION POINT.

this commande :

"

session.writeFieldReport(fileName='job_meca.rpt', append=OFF, sortItem='Node Label', odb=odb, step=0, frame=1, outputPosition=NODAL, variable=(('COORD', NODAL, ((COMPONENT, 'COOR1'), (COMPONENT, 'COOR2'), (COMPONENT, 'COOR3'), )), ('E', NODAL, ((INVARIANT, 'Max. Principal'), (COMPONENT, 'E11'), (COMPONENT, 'E22'), (COMPONENT, 'E33'), (COMPONENT, 'E12'), (COMPONENT, 'E13'), (COMPONENT, 'E23'), )), ))

"

is working and give coordinate AND deformation on NODAL position

this command :

"

session.writeFieldReport(fileName='job_meca.rpt', append=OFF, sortItem='Node Label', odb=odb, step=0, frame=1, outputPosition=INTEGRATION_POINT, variable=(('E', INTEGRATION_POINT, ((INVARIANT, 'Max. Principal'), (COMPONENT, 'E11'), (COMPONENT, 'E22'), (COMPONENT, 'E33'), (COMPONENT, 'E12'), (COMPONENT, 'E13'), (COMPONENT, 'E23'), )), ))

is working and give ONLY deformation on INTEGRATION_POINT position

But I cannot have both (coordinate AND deformation on INTEGRATION_POINT position

since the mix of previus example is not working:

session.writeFieldReport(fileName='job_meca.rpt', append=OFF, sortItem='Node Label', odb=odb, step=0, frame=1, outputPosition=INTEGRATION_POINT, variable=(('COORD', NODAL, ((COMPONENT, 'COOR1'), (COMPONENT, 'COOR2'), (COMPONENT, 'COOR3'), )), ('E', INTEGRATION_POINT, ((INVARIANT, 'Max. Principal'), (COMPONENT, 'E11'), (COMPONENT, 'E22'), (COMPONENT, 'E33'), (COMPONENT, 'E12'), (COMPONENT, 'E13'), (COMPONENT, 'E23'), )), ))

The coordinate componant for INTEGRATION_POINT is not defined. And I cannot do it manually, to many point.

How can I do ?

thank in advance

have a good day

Aurélien Lambourg