import typing
from abaqusConstants import *
[docs]class HistoryOutputRequestState:
"""The HistoryOutputRequestState object stores the propagating data of a History output
request current in a step. One instance of this object is created internally by the
HistoryOutputRequest object for each step. The instance is also deleted internally by
the HistoryOutputRequest object.
The HistoryOutputRequestState object has no constructor or methods.
Attributes
----------
variablesState: SymbolicConstant
A SymbolicConstant specifying the propagation state of the history output request
variables. Possible values are UNSET, SET, and UNCHANGED.
frequency: SymbolicConstant
The SymbolicConstant LAST_INCREMENT or an Int specifying the output frequency in
increments. The default value is 1.
frequencyState: SymbolicConstant
A SymbolicConstant specifying the propagation state of the history output request
frequency. Possible values are UNSET, SET, and UNCHANGED.
modesState: SymbolicConstant
A SymbolicConstant specifying the propagation state of the history output request modes.
Possible values are UNSET, SET, and UNCHANGED.
timeInterval: typing.Union[SymbolicConstant, float]
The SymbolicConstant EVERY_TIME_INCREMENT or a Float specifying the time interval at
which the output states are to be written. The default value is EVERY_TIME_INCREMENT.
timeIntervalState: SymbolicConstant
A SymbolicConstant specifying the propagation state of the history output request time
interval. Possible values are UNSET, SET, and UNCHANGED.
numIntervals: int
An Int specifying the number of intervals during the step at which output database
states are to be written. The default value is 20.
timePointState: SymbolicConstant
A SymbolicConstant specifying the propagation state of the history output request.
Possible values are UNSET, SET, and UNCHANGED.
numIntervalsState: SymbolicConstant
A SymbolicConstant specifying the propagation state of the history output request.
Possible values are UNSET, SET, and UNCHANGED.
status: SymbolicConstant
A SymbolicConstant specifying the propagation state of the HistoryOutputRequestState
object. Possible values are NOT_YET_ACTIVE, CREATED, PROPAGATED, MODIFIED, DEACTIVATED,
NO_LONGER_ACTIVE, TYPE_NOT_APPLICABLE, and INSTANCE_NOT_APPLICABLE.
variables: SymbolicConstant
A tuple of Strings specifying output request variable or component names, or the
SymbolicConstant PRESELECT or ALL. PRESELECT represents all default output variables for
the given step. ALL represents all valid output variables.
modes: SymbolicConstant
The SymbolicConstant ALL or a tuple of Ints specifying a list of eigenmodes for which
output is desired. The default value is ALL.
timePoint: str
A String specifying the name of a time :py:class:`~.point` object used to determine at which :py:class:`~.point`s in
the time period data is written to the output database. The default value is an empty
string.
frequencyType: str
A String specifying a read-only SymbolicConstant describing which type of frequency of
output is used. Possible values areFREQUENCY, NUMBER_INTERVALS, TIME_INTERVAL,
TIME_POINT and MODES. The default value depends on the procedure. The default value is
an empty string.
Notes
-----
This object can be accessed by:
.. code-block:: python
import step
mdb.models[name].steps[name].historyOutputRequestState[name]
"""
# A SymbolicConstant specifying the propagation state of the history output request
# variables. Possible values are UNSET, SET, and UNCHANGED.
variablesState: SymbolicConstant = None
# The SymbolicConstant LAST_INCREMENT or an Int specifying the output frequency in
# increments. The default value is 1.
frequency: SymbolicConstant = 1
# A SymbolicConstant specifying the propagation state of the history output request
# frequency. Possible values are UNSET, SET, and UNCHANGED.
frequencyState: SymbolicConstant = None
# A SymbolicConstant specifying the propagation state of the history output request modes.
# Possible values are UNSET, SET, and UNCHANGED.
modesState: SymbolicConstant = None
# The SymbolicConstant EVERY_TIME_INCREMENT or a Float specifying the time interval at
# which the output states are to be written. The default value is EVERY_TIME_INCREMENT.
timeInterval: typing.Union[SymbolicConstant, float] = EVERY_TIME_INCREMENT
# A SymbolicConstant specifying the propagation state of the history output request time
# interval. Possible values are UNSET, SET, and UNCHANGED.
timeIntervalState: SymbolicConstant = None
# An Int specifying the number of intervals during the step at which output database
# states are to be written. The default value is 20.
numIntervals: int = 20
# A SymbolicConstant specifying the propagation state of the history output request.
# Possible values are UNSET, SET, and UNCHANGED.
timePointState: SymbolicConstant = None
# A SymbolicConstant specifying the propagation state of the history output request.
# Possible values are UNSET, SET, and UNCHANGED.
numIntervalsState: SymbolicConstant = None
# A SymbolicConstant specifying the propagation state of the HistoryOutputRequestState
# object. Possible values are NOT_YET_ACTIVE, CREATED, PROPAGATED, MODIFIED, DEACTIVATED,
# NO_LONGER_ACTIVE, TYPE_NOT_APPLICABLE, and INSTANCE_NOT_APPLICABLE.
status: SymbolicConstant = None
# A tuple of Strings specifying output request variable or component names, or the
# SymbolicConstant PRESELECT or ALL. PRESELECT represents all default output variables for
# the given step. ALL represents all valid output variables.
variables: SymbolicConstant = None
# The SymbolicConstant ALL or a tuple of Ints specifying a list of eigenmodes for which
# output is desired. The default value is ALL.
modes: SymbolicConstant = ALL
# A String specifying the name of a time point object used to determine at which points in
# the time period data is written to the output database. The default value is an empty
# string.
timePoint: str = ''
# A String specifying a read-only SymbolicConstant describing which type of frequency of
# output is used. Possible values areFREQUENCY, NUMBER_INTERVALS, TIME_INTERVAL,
# TIME_POINT and MODES. The default value depends on the procedure. The default value is
# an empty string.
frequencyType: str = ''