Source code for abaqus.PredefinedField.FluidCavityPressure
from .PredefinedField import PredefinedField
from ..Region.Region import Region
[docs]class FluidCavityPressure(PredefinedField):
"""The FluidCavityPressure object stores the data for initial fluid cavity pressures. The
base class*region* argument can not be specifed with this object.
The FluidCavityPressure object is derived from the PredefinedField object.
Attributes
----------
region: Region
A :py:class:`~abaqus.Region.Region.Region` object on which the **fluidCavity** interaction is specified.
Notes
-----
This object can be accessed by:
.. code-block:: python
import load
mdb.models[name].predefinedFields[name]
The corresponding analysis keywords are:
- INITIAL CONDITIONS
"""
# A Region object on which the *fluidCavity* interaction is specified.
region: Region = Region()
def __init__(self, name: str, fluidCavity: str, fluidPressure: float):
"""This method creates a FluidCavityPressure object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].FluidCavityPressure
Parameters
----------
name
A String specifying the repository key.
fluidCavity
A String specifying the name of a Fluid Cavity Interaction.
fluidPressure
A Float specifying the initial fluid pressure.
Returns
-------
A FluidCavityPressure object.
"""
super().__init__()
pass