Icepak post processing using pyAEDT #4890
-
In pyAEDT i am able to create temperature contours using the command cepak.post.create_fieldplot_surface() , the contours that are created are with default view, now i want it to customize the view across X,Y,Z, isometric view depending on the model, is there any option for the same? Also, I want to use zoom to fit option before exporting the contours image. Are there any options for it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you want to export the images, you have all the options using the method here> pyaedt/pyaedt/modules/solutions.py Line 3746 in a24bfdb o=ipk.post.create_fieldplot_surface(...) You cannot just control the view in the interface from code. |
Beta Was this translation helpful? Give feedback.
If you want to export the images, you have all the options using the method here>
pyaedt/pyaedt/modules/solutions.py
Line 3746 in a24bfdb
o=ipk.post.create_fieldplot_surface(...)
o.export_image(...)
You cannot just control the view in the interface from code.