abaqus

writeFieldReport for nodal force

writeFieldReport for nodal force Question: Does anyone knows how to use writeFieldReport to export NFORC results into a text file? Right now I am trying this for global nodal displacements: session.writeFieldReport(fileName=’DISPLACEMENT_OUT.rpt’, append=OFF, sortItem=’Node Label’, odb=odb, step=last_step_number, frame=lastframe_number, outputPosition=NODAL, displayGroup= dg , variable=( (‘U’,NODAL), ) ) This will give me nodal displacement, I need to find …

Total answers: 2

Ignoring an error message to continue with the loop in python

Ignoring an error message to continue with the loop in python Question: I am using a Python script for executing some function in Abaqus. Now, after running for some iterations Abaqus is exiting the script due to an error. Is it possible in Python to bypass the error and continue with the other iterations? The …

Total answers: 1