The HistoryRegion object contains history data for a single location in the model.
odb.steps()[name].historyRegions()[name]
This method creates a HistoryRegion object.
odb.steps()[name].HistoryRegion
odb_HistoryRegion& HistoryRegion(const odb_String& name, const odb_String& description, const odb_HistoryPoint& point, const odb_LoadCase& loadCase);
Required arguments
An odb_String specifying the name of the HistoryRegion object.
An odb_String specifying the description of the HistoryRegion object.
A HistoryPoint object specifying the point to which the history data refer.
Optional argument
An OdbLoadCase object specifying the load case associated with the HistoryRegion object.
Return value
A HistoryRegion object.
Exceptions
This method returns a subset of the data in the HistoryRegion object.
odb_HistoryRegion getSubset(const odb_String& variableName);
Required argument
A String specifying the name of the output variable to return.
Optional arguments
Return value
A HistoryRegion object.
Exceptions
This method returns a subset of the data in the HistoryRegion object.
odb_HistoryRegion getSubset(float start);
Required argument
A Float specifying the start of the subset. This is the same as the first item in the data array member of the HistoryOutput object.
Optional arguments
Return value
A HistoryRegion object.
Exceptions
This method returns a subset of the data in the HistoryRegion object.
odb_HistoryRegion getSubset(float start, float end);
Required arguments
A Float specifying the start of the subset. This is the same as the first item in the data array member of the HistoryOutput object.
A Float specifying the end of the subset.
Optional arguments
Return value
A HistoryRegion object.
Exceptions
The HistoryRegion object has members with the same names and descriptions as the arguments to the HistoryRegion method.
In addition, the HistoryRegion object can have the following members:
odb_String description() const; const odb_LoadCase& loadCase() const; odb_String name() const; odb_HistoryPoint point() const; odb_Enum::odb_ResultPositionEnum position() const; const odb_HistoryOutputRepository& historyOutputs();
An odb_Enum::odb_ResultPositionEnum specifying the position of the history output. Possible values are odb_Enum::NODAL, odb_Enum::INTEGRATION_POINT, odb_Enum::WHOLE_ELEMENT, odb_Enum::WHOLE_REGION, and odb_Enum::WHOLE_MODEL.
A repository of HistoryOutput objects.