Source code for abaqus.PlotOptions.OdbDataStep
from abaqusConstants import *
from .OdbDataFrameArray import OdbDataFrameArray
[docs]class OdbDataStep:
"""The OdbDataStep object.
Attributes
----------
frames: OdbDataFrameArray
An :py:class:`~abaqus.PlotOptions.OdbDataFrameArray.OdbDataFrameArray` object specifying the list of frames. The list is read-only.
Notes
-----
This object can be accessed by:
.. code-block:: python
import visualization
session.odbData[name].steps[i]
"""
# An OdbDataFrameArray object specifying the list of frames. The list is read-only.
frames: OdbDataFrameArray = OdbDataFrameArray()
[docs] def setValues(self, activateFrames: Boolean, update: Boolean = OFF):
"""This method modifies the OdbDataStep object.
Parameters
----------
activateFrames
A Boolean specifying whether to activate all the frames in the step.
update
A Boolean specifying whether to update the model. The default value is ON
"""
pass