plot_nodal_total_component_strain¶
- PostProcessing.plot_nodal_total_component_strain(component, show_node_numbering=False, **kwargs)¶
Plot nodal total component starin.
Includes elastic, plastic, and creep strain.
- Parameters
- component
str
,optional
Component to retrieve. Must be
'X'
,'Y'
,'Z'
,'XY'
,'YZ'
, or'XZ'
.- show_node_numberingbool,
optional
Plot the node numbers of surface nodes.
- **kwargs
dict
,optional
Keyword arguments passed to
general_plotter
.
- component
- Returns
list
Camera position from plotter. Can be reused as an input parameter to use the same camera position for future plots.
Examples
Plot total component strain in the X direction for the first result.
>>> mapdl.post1() >>> mapdl.set(1, 1) >>> mapdl.post_processing.plot_nodal_total_component_strain('X')