Source code for abaqus.PredefinedField.IMAField
from ..Region.Region import Region
[docs]class IMAField:
"""A IMAField is an object used to define material instance name volume fractions for the
MaterialAssignment predefined field.
Attributes
----------
region: Region
A :py:class:`~abaqus.Region.Region.Region` object specifying the sub-region of the selected part instance to which the
volume fractions will be applied.
discFieldList: tuple
A tuple of Strings specifying the name of the discrete fields that contain the volume
fraction data. The length of the tuple corresponds to the number of material instance
names, as established by the assigned Eulerian section.
Notes
-----
This object can be accessed by:
.. code-block:: python
import load
mdb.models[name].predefinedFields[name].fieldList
"""
# A Region object specifying the sub-region of the selected part instance to which the
# volume fractions will be applied.
region: Region = Region()
# A tuple of Strings specifying the name of the discrete fields that contain the volume
# fraction data. The length of the tuple corresponds to the number of material instance
# names, as established by the assigned Eulerian section.
discFieldList: tuple = ()