Source code for abaqus.Mesh.MeshElement
from abaqusConstants import *
from .MeshNode import MeshNode
[docs]class MeshElement:
"""The MeshElement object refers to an element of a native mesh or an orphan mesh. A
MeshElement object can be accessed via a part or part instance using an index that
refers to the internal numbering of the element repository. The index does not refer to
the element label.
Attributes
----------
label: int
An Int specifying the element label.
type: SymbolicConstant
A SymbolicConstant specifying the Abaqus element code.
instanceName: str
A String specifying the name of the part instance that owns this element.
connectivity: int
A tuple of Ints specifying the internal node indices that define the nodal connectivity.
It is important to note the difference with :py:class:`~abaqus.Odb.OdbMeshElement.OdbMeshElement` object of ODB where the
connectivity is node labels instead of node indices.
Notes
-----
This object can be accessed by:
.. code-block:: python
import part
mdb.models[name].parts[name].allInternalSets[name].elements[i]
mdb.models[name].parts[name].allInternalSurfaces[name].elements[i]
mdb.models[name].parts[name].allSets[name].elements[i]
mdb.models[name].parts[name].allSurfaces[name].elements[i]
mdb.models[name].parts[name].elements[i]
mdb.models[name].parts[name].sets[name].elements[i]
mdb.models[name].parts[name].surfaces[name].elements[i]
import assembly
mdb.models[name].rootAssembly.allInstances[name].elements[i]
mdb.models[name].rootAssembly.allInstances[name].sets[name].elements[i]
mdb.models[name].rootAssembly.allInstances[name].surfaces[name].elements[i]
mdb.models[name].rootAssembly.allInternalSets[name].elements[i]
mdb.models[name].rootAssembly.allInternalSurfaces[name].elements[i]
mdb.models[name].rootAssembly.allSets[name].elements[i]
mdb.models[name].rootAssembly.allSurfaces[name].elements[i]
mdb.models[name].rootAssembly.elements[i]
mdb.models[name].rootAssembly.instances[name].elements[i]
mdb.models[name].rootAssembly.instances[name].sets[name].elements[i]
mdb.models[name].rootAssembly.instances[name].surfaces[name].elements[i]
mdb.models[name].rootAssembly.modelInstances[i].elements[i]
mdb.models[name].rootAssembly.modelInstances[i].sets[name].elements[i]
mdb.models[name].rootAssembly.modelInstances[i].surfaces[name].elements[i]
mdb.models[name].rootAssembly.sets[name].elements[i]
mdb.models[name].rootAssembly.surfaces[name].elements[i]
"""
# An Int specifying the element label.
label: int = None
# A SymbolicConstant specifying the Abaqus element code.
type: SymbolicConstant = None
# A String specifying the name of the part instance that owns this element.
instanceName: str = ''
# A tuple of Ints specifying the internal node indices that define the nodal connectivity.
# It is important to note the difference with OdbMeshElement object of ODB where the
# connectivity is node labels instead of node indices.
connectivity: int = None
[docs] def Element(self, nodes: tuple[MeshNode], elemShape: SymbolicConstant, label: int = None):
"""This method creates an element on an orphan mesh part from a sequence of nodes.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].parts[*name*].Element
Parameters
----------
nodes
A sequence of MeshNode objects.
elemShape
A SymbolicConstant specifying the shape of the new element. Possible values are LINE2,
LINE3, TRI3, TRI6, QUAD4, QUAD8, TET4, TET10, WEDGE6, WEDGE15, HEX8, and HEX20.
label
An Int specifying the element label.
Returns
-------
element: MeshElement
A MeshElement object.
"""
pass
[docs] def getNodes(self):
"""This method returns a tuple of node objects of the element.
Returns
-------
A tuple of MeshNode objects.
"""
pass
[docs] def getElemEdges(self):
"""This method returns a tuple of unique element edge objects on the element.
Returns
-------
A tuple of MeshEdge objects.
"""
pass
[docs] def getElemFaces(self):
"""This method returns a tuple of unique element face objects on the element.
Returns
-------
A tuple of MeshFace objects.
"""
pass
[docs] def getAdjacentElements(self):
"""This method returns an array of element objects adjacent to the mesh element.
Returns
-------
A MeshElementArray object which is a sequence of MeshElement objects.
"""
pass
[docs] def getElementsByFeatureEdge(self, angle: str):
"""This method returns an array of mesh element objects that are obtained by recursively
finding adjacent elements along a feature edge with a face angle of less than or equal
to the specified angle.
Parameters
----------
angle
A float specifying the value of the face angle in degrees.
Returns
-------
A MeshElementArray object, which is a sequence of MeshElement objects.
"""
pass
[docs] def setValues(self, label: int = None):
"""This method modifies the MeshElement object.
Parameters
----------
label
An Int specifying the element label. This member may only be edited if the element
belongs to an orphan mesh part. The specified label must be non-negative and must not be
in use by any other element of the same part.
"""
pass