Source code for abaqus.Section.HomogeneousSolidSection
from .SolidSection import SolidSection
[docs]class HomogeneousSolidSection(SolidSection):
"""The HomogeneousSolidSection object defines the properties of a solid section.
The HomogeneousSolidSection object is derived from the SolidSection object.
Notes
-----
This object can be accessed by:
.. code-block:: python
import section
mdb.models[name].sections[name]
import odbSection
session.odbs[name].sections[name]
The corresponding analysis keywords are:
- SOLID SECTION
"""
def __init__(self, name: str, material: str, thickness: float = 1):
"""This method creates a HomogeneousSolidSection object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].HomogeneousSolidSection
session.odbs[name].HomogeneousSolidSection
Parameters
----------
name
A String specifying the repository key.
material
A String specifying the name of the material.
thickness
A Float specifying the thickness of the section. Possible values are None or greater
than zero. The default value is 1.0.
Returns
-------
A HomogeneousSolidSection object.
Raises
------
InvalidNameError
RangeError
"""
super().__init__()
pass
[docs] def setValues(self, thickness: float = 1):
"""This method modifies the HomogeneousSolidSection object.
Parameters
----------
thickness
A Float specifying the thickness of the section. Possible values are None or greater
than zero. The default value is 1.0.
Raises
------
RangeError
"""
pass