-
hello :)
I would like to obtain a graph like this using PyMAPDL. |
Beta Was this translation helpful? Give feedback.
Answered by
mikerife
Aug 31, 2023
Replies: 1 comment 3 replies
-
Hi @ufsaa2022 mapdl.show('png')
mapdl.plls('mzi', 'mzj', 1, 0, 0)
mapdl.show() Mike |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
germa89
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @ufsaa2022
Yes you would just need to include a 'show' command to redirect the plot from the terminal to a file. Much like you would running MAPDL in batch mode. So the PyMAPDL version would be (assuming you used the standard conventions):
Mike