If you are using the Abaqus Scripting Interface to read data from an output database, the objects exist when you open the output database, and you do not have to use constructors to create them. However, if you are creating or writing to an output database, you may need to use constructors to create new objects, such as part instances and steps. The documentation describes the path to the constructors that create objects in an output database. For example, the Path description for the FieldOutput constructor is session.odbs[name].steps[name].frames[i].FieldOutput The following statement creates a FieldOutput object: myFieldOutput = session.odbs[name].steps['Side load'].frames[-1].\
FieldOutput(name='S', description='stress',
type=TENSOR_3D_FULL) |