Problem.show_nodes_field
- Problem.show_nodes_field(field_name, component, step=None, width=1600, height=900, model_sf=1.0, **kwargs)
Display a contour plot of a given field and component. The field must de defined at the nodes of the model (e.g displacement field).
- Parameters
- fieldstr
The field to display, e.g. ‘U’ for displacements. Check the
compas_fea2.problem.FieldOutput
for more info about valid components.- componentstr
The compoenet of the field to display, e.g. ‘U3’ for displacements along the 3 axis. Check the
compas_fea2.problem.FieldOutput
for more info about valid components.- step
compas_fea2.problem.Step
, optional The step to show the results of, by default None. if not provided, the last step of the analysis is used.
- deformedbool, optional
Choose if to display on the deformed configuration or not, by default False
- widthint, optional
Width of the viewer window, by default 1600
- heightint, optional
Height of the viewer window, by default 900
- Raises
- ValueError
_description_