Source code for abaqus.Material.Elastic.Linear.FailStress
from abaqusConstants import *
[docs]class FailStress:
"""The FailStress object defines parameters for stress-based failure measures.
Notes
-----
This object can be accessed by:
.. code-block:: python
import material
mdb.models[name].materials[name].elastic.failStress
import odbMaterial
session.odbs[name].materials[name].elastic.failStress
The table data for this object are:
- Tensile stress limit in fiber direction, Xt.
- Compressive stress limit in fiber direction, Xc.
- Tensile stress limit in transverse direction, Yt.
- Compressive stress limit in transverse direction, Yc.
- Shear strength in the X–Y plane, S.
- Cross product term coefficient, *f* (-1.0≤f*≤1.0). The default value is zero.
- Biaxial stress limit, σbiax.
- Temperature, if the data depend on temperature.
- Value of the first field variable, if the data depend on field variables.
- Value of the second field variable.
- Etc.
The corresponding analysis keywords are:
- FAIL STRESS
"""
def __init__(self, table: tuple, temperatureDependency: Boolean = OFF, dependencies: int = 0):
"""This method creates a FailStress object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].materials[name].elastic.FailStress
session.odbs[name].materials[name].elastic.FailStress
Parameters
----------
table
A sequence of sequences of Floats specifying the items described below.
temperatureDependency
A Boolean specifying whether the data depend on temperature. The default value is OFF.
dependencies
An Int specifying the number of field variable dependencies. The default value is 0.
Returns
-------
A FailStress object.
Raises
------
RangeError
"""
pass
def setValues(self):
"""This method modifies the FailStress object.
Raises
------
RangeError
"""
pass