plot_nodal_rotation#
- PostProcessing.plot_nodal_rotation(component, show_node_numbering=False, **kwargs)#
Plot nodal rotation.
- Parameters:
- component
str
Structural rotation component to retrieve. Must be
'X'
,'Y'
, or'Z'
.- show_node_numberingbool,
optional
Plot the node numbers of surface nodes.
- **kwargs
dict
,optional
Keyword arguments passed to
MapdlPlotter
.
- component
- Returns:
pyvista.plotting.renderer.CameraPosition
Camera position from plotter. Can be reused as an input parameter to use the same camera position for future plots. Only returned when
return_cpos
isTrue
.pyvista.Plotter
PyVista Plotter. In this case, the plotter is shown yet, so you can still edit it using PyVista Plotter methods. Only when
return_plotter
kwarg isTrue
.
Notes
If
vkt=True
(default), this function usesMapdlPlotter
You can pass key arguments toMapdlPlotter
usingkwargs
argument. For example,show_axes
,background
, etc.Examples
Plot the x rotation without smooth shading with individual node numbering.
>>> mapdl.post1() >>> mapdl.set(1, 2) >>> mapdl.post_processing.plot_nodal_rotation('X', show_node_numbering=True)