selected_nodes#
- property PostProcessing.selected_nodes: ndarray#
Mask of the selected nodes.
Examples
The mask of the selected nodes.
>>> mapdl.post_processing.selected_nodes array([False, False, False, ..., True, True, True])
If you want the node numbers of the selected nodes.
>>> mapdl.post_processing.selected_nodes.nonzero()[0] + 1 array([1, 2, 3, 4, 5, 6, 7, 8, 9])