Source code for abaqus.PlotOptions.OdbDataElementSet

[docs]class OdbDataElementSet: """The OdbDataElementSet object stores element set data. Attributes ---------- name: str A String specifying the set name. This attribute is read-only. elements: str A String-to-tuple-of-Ints Dictionary specifying the elements in the set. This attribute is read-only. Notes ----- This object can be accessed by: .. code-block:: python import visualization session.odbData[name].elementSets[i] """ # A String specifying the set name. This attribute is read-only. name: str = '' # A String-to-tuple-of-Ints Dictionary specifying the elements in the set. This attribute # is read-only. elements: str = ''