Source code for abaqus.PlotOptions.OdbDataMaterial
[docs]class OdbDataMaterial:
"""The OdbDataMaterial object stores material 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].materials[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 = ''