nz#
- Query.nz(n)#
Return the z coordinate of a node.
Fetches Z-coordinate of node
n
in the active coordinate system.Examples
Here we construct a simple box and mesh it with elements. Then we use the
nz
attribute from thequeries
attribute to find the z-coordinate of the 10th node.>>> from ansys.mapdl.core import launch_mapdl >>> mapdl = launch_mapdl() >>> mapdl.prep7() >>> mapdl.et(1, 'SOLID5') >>> mapdl.block(0, 10, 0, 20, 0, 30) >>> mapdl.esize(2) >>> mapdl.vmesh('ALL') >>> mapdl.queries.nz(10) 0.0