Source code for abaqus.Material.Gasket.ContactArea
from abaqusConstants import *
[docs]class ContactArea:
"""A ContactArea object specifies a suboption of gasket thickness behavior when
*variableUnits*=FORCE on the GasketThicknessBehavior object. The ContactArea object
defines the contact area or contact width versus closure curves to output an average
pressure through variable CS11.
Notes
-----
This object can be accessed by:
.. code-block:: python
import material
mdb.models[name].materials[name].gasketThicknessBehavior.contactArea
import odbMaterial
session.odbs[name].materials[name].gasketThicknessBehavior.contactArea
The table data for this object are:
- Contact area or width; this value must be positive.
- Closure; this value must be positive.
- 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:
- GASKET CONTACT AREA
"""
def __init__(self, table: tuple, temperatureDependency: Boolean = OFF, dependencies: int = 0):
"""This method creates a ContactArea object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].materials[name].gasketThicknessBehavior.ContactArea
session.odbs[name].materials[name].gasketThicknessBehavior.ContactArea
Parameters
----------
table
A sequence of sequences of Floats specifying the items described below.
temperatureDependency
A Boolean specifying whether contact area data depend on temperature. The default value
is OFF.
dependencies
An Int specifying the number of field variable dependencies included in the definition
of the contact area data, in addition to temperature. The default value is 0.
Returns
-------
A ContactArea object.
"""
pass
def setValues(self):
"""This method modifies the ContactArea object.
"""
pass