- Steps
You use the Step constructor to create a results step for time, frequency, or modal domain results. For example,
step1 = odb.Step(name='step-1',
description='', domain=TIME, timePeriod=1.0)
The Step constructor has an optional previousStepName argument that specifies the step after which this step must be inserted in the steps repository. For a full description of the Step command, see Step(...).
- Frames
-
You use the Frame constructor to create a frame for field output. For example,
frame1 = step1.Frame(incrementNumber=1,
frameValue=0.1, description='')
For a full description of the Frame command, see Frame(...).
|