Source code for abaqus.Mesh.MeshNode
from ..Datum.DatumCsys import DatumCsys
[docs]class MeshNode:
"""The MeshNode object refers to a node of a native mesh or an orphan mesh. A MeshNode
object can be accessed via a part or part instance using an index that refers to the
internal numbering of the node repository. The index does not refer to the node label.
Attributes
----------
label: int
An Int specifying the node label.
instanceName: str
A String specifying the name of the part instance that owns this node.
coordinates: float
A tuple of three Floats specifying the coordinates of the new node.
Notes
-----
This object can be accessed by:
.. code-block:: python
import part
mdb.models[name].parts[name].allInternalSets[name].nodes[i]
mdb.models[name].parts[name].allInternalSurfaces[name].nodes[i]
mdb.models[name].parts[name].allSets[name].nodes[i]
mdb.models[name].parts[name].allSurfaces[name].nodes[i]
mdb.models[name].parts[name].nodes[i]
mdb.models[name].parts[name].retainedNodes[i]
mdb.models[name].parts[name].sets[name].nodes[i]
mdb.models[name].parts[name].surfaces[name].nodes[i]
import assembly
mdb.models[name].rootAssembly.allInstances[name].nodes[i]
mdb.models[name].rootAssembly.allInstances[name].sets[name].nodes[i]
mdb.models[name].rootAssembly.allInstances[name].surfaces[name].nodes[i]
mdb.models[name].rootAssembly.allInternalSets[name].nodes[i]
mdb.models[name].rootAssembly.allInternalSurfaces[name].nodes[i]
mdb.models[name].rootAssembly.allSets[name].nodes[i]
mdb.models[name].rootAssembly.allSurfaces[name].nodes[i]
mdb.models[name].rootAssembly.instances[name].nodes[i]
mdb.models[name].rootAssembly.instances[name].sets[name].nodes[i]
mdb.models[name].rootAssembly.instances[name].surfaces[name].nodes[i]
mdb.models[name].rootAssembly.modelInstances[i].nodes[i]
mdb.models[name].rootAssembly.modelInstances[i].sets[name].nodes[i]
mdb.models[name].rootAssembly.modelInstances[i].surfaces[name].nodes[i]
mdb.models[name].rootAssembly.nodes[i]
mdb.models[name].rootAssembly.sets[name].nodes[i]
mdb.models[name].rootAssembly.surfaces[name].nodes[i]
"""
# An Int specifying the node label.
label: int = None
# A String specifying the name of the part instance that owns this node.
instanceName: str = ''
# A tuple of three Floats specifying the coordinates of the new node.
coordinates: float = None
def __init__(self, coordinates: tuple, localCsys: DatumCsys = DatumCsys(), label: int = None):
"""This method creates a node on an orphan mesh part.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].parts[*name*].Node
Parameters
----------
coordinates
A sequence of three Floats specifying the coordinates of the new node.
localCsys
A DatumCsys object specifying the local coordinate system. If unspecified, the global
coordinate system will be used.
label
An Int specifying the node label.
Returns
-------
node: MeshNode
A MeshNode object
"""
pass
[docs] def getElemEdges(self):
"""This method returns a tuple of element edge objects that share the node.
Returns
-------
edges: tuple[MeshEdge]
A tuple of MeshEdge objects
"""
pass
[docs] def getElemFaces(self):
"""This method returns a tuple of element face objects that share the node.
Returns
-------
faces: tuple[MeshFace]
A tuple of MeshFace objects
"""
pass
[docs] def getElements(self):
"""This method returns a tuple of element objects that share the node.
Returns
-------
elements: tuple[MeshElement]
A tuple of MeshElement objects
"""
pass
[docs] def getNodesByFeatureEdge(self, angle: str):
"""This method returns an array of mesh node objects that are obtained by recursively
finding adjacent nodes along a feature edge that are at an angle of less than or equal
to the specified face angle.
Parameters
----------
angle
A float specifying the value of the face angle in degrees.
Returns
-------
nodes: MeshNodeArray
A MeshNodeArray object, which is a sequence of MeshNode objects
"""
pass
[docs] def setValues(self, label: int = None):
"""This method modifies the MeshNode object.
Parameters
----------
label
An Int specifying the node label. This member may only be edited if the node belongs to
an orphan mesh part. The specified label must be non-negative and must not be in use by
any other node of the same part.
"""
pass