Source code for abaqus.EngineeringFeature.Crack
from abaqusConstants import *
[docs]class Crack:
"""The Crack object is the abstract base type for ContourIntegral and future crack objects.
Attributes
----------
name: str
A String specifying the repository key.
suppressed: Boolean
A Boolean specifying whether the crack is suppressed or not. The default value is OFF.
Notes
-----
This object can be accessed by:
.. code-block:: python
import part
mdb.models[name].parts[name].engineeringFeatures.cracks[name]
import assembly
mdb.models[name].rootAssembly.engineeringFeatures.cracks[name]
"""
# A String specifying the repository key.
name: str = ''
# A Boolean specifying whether the crack is suppressed or not. The default value is OFF.
suppressed: Boolean = OFF