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.
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].sets[name].nodes[i] mdb.models[name].parts[name].surfaces[name].nodes[i] import assembly 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.nodes[i] mdb.models[name].rootAssembly.sets[name].nodes[i] mdb.models[name].rootAssembly.surfaces[name].nodes[i]
This method creates a node on an orphan mesh part.
mdb.models[name].parts[name].Node
Required argument
A sequence of three Floats specifying the coordinates of the new node.
Optional arguments
A DatumCsys object specifying the local coordinate system. If unspecified, the global coordinate system will be used.
An Int specifying the node label.
Return value
A MeshNode object.
Exceptions
This method returns a tuple of unique element edges that share the node.
Arguments
Return value
A tuple of MeshEdge objects.
Exceptions