This module contains Node-related wrapper classes.

class ansys.dpf.post.nodes.Node(node: Node)#

Wrapper class around dpf.core.nodes.Node.

property coordinates: List[float]#

Cartersian coordinates of the node.

property id: int#

Returns the ID of the node.

property index: int#

Returns the index of the node (zero-based).

property to_element_connectivity: List[int]#

Elements indices connected to the node.

class ansys.dpf.post.nodes.NodeListByIndex(nodes: Nodes)#

Node List object using indexes as input.

property by_id: NodeListById#

Returns an equivalent list which accepts IDs as input.

class ansys.dpf.post.nodes.NodeListById(nodes: Nodes)#

Node List object using IDs as input.