Problems in plot results from Modal analysis #3682
-
How do you auto-save a result plot with a white background in the result? mapdl.result.plot_nodal_displacement(0,background="white") |
Beta Was this translation helpful? Give feedback.
Answered by
germa89
Jan 21, 2025
Replies: 1 comment
-
From the documentation any additional keyword argument is passed to the from ansys.mapdl.reader import examples
# Download an example shaft modal analysis result file
shaft = examples.download_shaft_modal()
shaft.plot_nodal_displacement(0, screenshot="my_plot.png") # save as 'my_plot.png' |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
germa89
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the documentation any additional keyword argument is passed to the
pyvista.plot
function. Hence you can do: