plot_element_temperature¶
- PostProcessing.plot_element_temperature(option='AVG', show_elem_numbering=False, **kwargs)¶
Plot element temperature.
One value per element. Either minimum, maximum, or average of all nodes in each element.
- Parameters
- option
str
,optional
Option for storing element table data. One of the following:
"MIN"
: Store minimum element nodal value of the specified item component."MAX"
: Store maximum element nodal value of the specified item component."AVG"
: Store averaged element centroid value of the specified item component (default).
- option
- 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
.
Examples
Plot the average element temperature.
>>> arr = mapdl.post_processing.plot_element_temperature()
- Return type
CameraPosition