Source code for abaqus.Material.Plastic.Metal.Cyclic.CyclicHardening
from abaqusConstants import *
[docs]class CyclicHardening:
"""The CyclicHardening object defines the evolution of the elastic domain for the nonlinear
isotropic/kinematic hardening model.
Notes
-----
This object can be accessed by:
.. code-block:: python
import material
mdb.models[name].materials[name].Plastic.cyclicHardening
import odbMaterial
session.odbs[name].materials[name].Plastic.cyclicHardening
The table data for this object are:
- Equivalent stress.
- Q∞Q(only if *parameters*=ON).
- Hardening parameter (only if *parameters*=ON).
- 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:
- CYCLIC HARDENING
"""
def __init__(self, table: tuple, temperatureDependency: Boolean = OFF, dependencies: int = 0,
parameters: Boolean = OFF):
"""This method creates a CyclicHardening object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].materials[name].Plastic.CyclicHardening
session.odbs[name].materials[name].Plastic.CyclicHardening
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.
parameters
A Boolean specifying whether material parameters are to be input directly. The default
value is OFF.
Returns
-------
A CyclicHardening object.
"""
pass
def setValues(self):
"""This method modifies the CyclicHardening object.
"""
pass