Source code for abaqus.BeamSectionProfile.PipeProfile
from .Profile import Profile
[docs]class PipeProfile(Profile):
"""The PipeProfile object defines the properties of a circular pipe profile.
The PipeProfile object is derived from the Profile object.
Notes
-----
This object can be accessed by:
.. code-block:: python
import section
mdb.models[name].profiles[name]
import odbSection
session.odbs[name].profiles[name]
The corresponding analysis keywords are:
- BEAM SECTION
"""
def __init__(self, name: str, r: float, t: float):
"""This method creates a PipeProfile object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].PipeProfile
session.odbs[name].PipeProfile
Parameters
----------
name
A String specifying the repository key.
r
A Float specifying the outer radius of the pipe. For more information, see [Beam
cross-section
library](https://help.3ds.com/2021/English/DSSIMULIA_Established/SIMACAEELMRefMap/simaelm-c-beamcrosssectlib.htm?ContextScope=all).
t
A Float specifying the wall thickness of the pipe.
Returns
-------
A PipeProfile object.
Raises
------
RangeError
"""
super().__init__()
pass
[docs] def setValues(self):
"""This method modifies the PipeProfile object.
Raises
------
RangeError
"""
pass