owais ahmed
Student
- Nov 10, 2021
- 10
Hello Everyone,
I created the abaqus python script to get the stresses data in a particular frame but i would like to obtained all the data of stresses for All frames at a time by using loops ....Can someone help me how could i modify my abaqus python script.... code attached
db = session.odbs['file name']
session.writeFieldReport(
fileName=',
append=ON, sortItem='Node Label', odb=odb, step=0, frame=12,
outputPosition=NODAL, variable=(('COORD', NODAL, ((COMPONENT, 'COOR1'),
(COMPONENT, 'COOR2'), (COMPONENT, 'COOR3'), )), ('S',
INTEGRATION_POINT, ((INVARIANT, 'Mises'), (COMPONENT, 'S11'), (
COMPONENT, 'S22'), (COMPONENT, 'S33'), (COMPONENT, 'S12'), (COMPONENT,
'S13'), (COMPONENT, 'S23'), )), ), stepFrame=SPECIFY )
I created the abaqus python script to get the stresses data in a particular frame but i would like to obtained all the data of stresses for All frames at a time by using loops ....Can someone help me how could i modify my abaqus python script.... code attached
db = session.odbs['file name']
session.writeFieldReport(
fileName=',
append=ON, sortItem='Node Label', odb=odb, step=0, frame=12,
outputPosition=NODAL, variable=(('COORD', NODAL, ((COMPONENT, 'COOR1'),
(COMPONENT, 'COOR2'), (COMPONENT, 'COOR3'), )), ('S',
INTEGRATION_POINT, ((INVARIANT, 'Mises'), (COMPONENT, 'S11'), (
COMPONENT, 'S22'), (COMPONENT, 'S33'), (COMPONENT, 'S12'), (COMPONENT,
'S13'), (COMPONENT, 'S23'), )), ), stepFrame=SPECIFY )