An output database contains the same steps of the model database that originated it.
import odbAccess session.odbs[name].steps[name]
This method creates an OdbStep object.
session.odbs[name].Step
Required arguments
A String specifying the repository key.
A String specifying the step description.
A SymbolicConstant specifying the domain of the step. Possible values are TIME, FREQUENCY, ARC_LENGTH, and MODAL.
The type of OdbFrame object that can be created for this step is based on the value of the domain argument.
Optional arguments
A Float specifying the time period of the step. timePeriod is required if domain=TIME; otherwise, this argument is not applicable. The default value is 0.0.
A String specifying the preceding step. If previousStepName is the empty string, the last step in the repository is used. If previousStepName is not the last step, this will result in a change to the previousStepName member of the step that was in that position. A special value 'Initial' refers to the internal initial model step and may be used exclusively for inserting a new step at the first position before any other existing steps. The default value is an empty string.
A String specifying the step procedure. The default value is an empty string.
A Float specifying the analysis time spend in all the steps previous to this step. The default value is –1.0.
Return value
An OdbStep object.
Exceptions
If previousStepName is invalid:
This method retrieves an OdbFrame object associated with a given frame value.
Required argument
A Double specifying the value at which the frame is required. frameValue can be the step time or frequency.
Optional argument
A SymbolicConstant specifying which frame to return if there is no frame at the exact frame value. Possible values are CLOSEST, BEFORE, AFTER, and EXACT. The default value is CLOSEST.
When match=CLOSEST, Abaqus returns the closest frame. If the frame value requested is exactly halfway between two frames, Abaqus returns the frame after the value.
When match=EXACT, Abaqus raises an exception if the exact frame value does not exist.
Return value
An OdbFrame object.
Exceptions
If the OdbFrame object is not found:
This method retrieves an OdbFrame object associated with a given load case.
Required argument
An OdbLoadCase object specifying a load case in the step.
Optional arguments
Return value
An OdbFrame object.
Exceptions
If the OdbFrame object is not found:
This method retrieves an OdbFrame object associated with a given load case and frame value.
Required arguments
An OdbLoadCase object specifying a load case in the step.
A Double specifying the value at which the frame is required. frameValue can be the step time or frequency.
Optional argument
A SymbolicConstant specifying which frame to return if there is no frame at the exact frame value. Possible values are CLOSEST, BEFORE, AFTER, and EXACT. The default value is CLOSEST.
When match=CLOSEST, Abaqus returns the closest frame. If the frame value requested is exactly halfway between two frames, Abaqus returns the frame after the value.
When match=EXACT, Abaqus raises an exception if the exact frame value does not exist.
Return value
An OdbFrame object.
Exceptions
If the OdbFrame object is not found:
This method retrieves a HistoryRegion object associated with a HistoryPoint in the model.
Required argument
A HistoryPoint object specifying the point in the model.
Optional argument
An OdbLoadCase object specifying a load case in the step.
Return value
A HistoryRegion object.
Exceptions
If a HistoryRegion object is not found:
This method sets the default deformed field variable in a step.
Required argument
A FieldOutput object specifying the default deformed field variable for visualization.
Optional arguments
Return value
Exceptions
This method sets the default field variable in a step.
Required argument
A FieldOutput object specifying the default field variable for visualization.
Optional arguments
Return value
Exceptions
The OdbStep object has members with the same names and descriptions as the arguments to the Step method.
In addition, the OdbStep object can have the following members:
An Int specifying the step number.
A Boolean specifying whether geometric nonlinearity can occur in this step.
A Float specifying the current value of the mass of the model. This does not include the mass of the acoustic media if any present.
A Float specifying the current value of the mass of the acoustic media of the model.
An OdbFrameArray object.
A repository of HistoryRegion objects.
A repository of OdbLoadCase objects.
A tuple of Floats specifying the coordinates of the center of mass.
A tuple of Floats specifying the moments and products of inertia about the center of mass. For 3-D models inertia quantities are written in the following order: I(XX), I(YY), I(ZZ), I(XY), I(XZ), and I(YZ). For 2-D models only I(ZZ) and I(XY) are outputted.
A tuple of Floats specifying the moments and products of inertia about the origin of the global coordinate system. For 3-D models inertia quantities are written in the following order: I(XX), I(YY), I(ZZ), I(XY), I(XZ), and I(YZ). For 2-D models only I(ZZ) and I(XY) are outputted.
A tuple of Floats specifying the coordinates of the center of mass of the acoustic media.