Source code for abaqus.Section.EulerianSection
from .Section import Section
[docs]class EulerianSection(Section):
"""The EulerianSection object defines the properties of a Eulerian section.
The EulerianSection object is derived from the Section 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:
- EULERIAN SECTION
"""
def __init__(self, name: str, data: str):
"""This method creates a EulerianSection object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].EulerianSection
session.odbs[name].EulerianSection
Parameters
----------
name
A String specifying the repository key.
data
A String-to-String Dictionary specifying a dictionary mapping Material instance names to
Material names. Internally the specified mapping gets sorted on Material instance name.
Returns
-------
An EulerianSection object.
"""
super().__init__()
pass