Extract temperature field on object face. #4216
-
In AEDT Icepak I want to extract the temperature field on an object face. How to do this in PyAEDT? |
Beta Was this translation helpful? Give feedback.
Answered by
Samuelopez-ansys
Feb 14, 2024
Replies: 1 comment
-
Hi @rohskopf , I would use a Face monitor and then get with get_solution_data the temperature. This will return a FaceMonitor object: If you do not like this approach, you can directly compute the Temperature of the object/Face using the fields calculator: Hopefully it helps you. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Samuelopez-ansys
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @rohskopf ,
I would use a Face monitor and then get with get_solution_data the temperature.
https://aedt.docs.pyansys.com/version/0.7/API/_autosummary/pyaedt.icepak.Icepak.assign_surface_monitor.html#assign-surface-monitor
This will return a FaceMonitor object:
https://aedt.docs.pyansys.com/version/0.7/API/_autosummary/pyaedt.modules.monitor_icepak.FaceMonitor.html
If you do not like this approach, you can directly compute the Temperature of the object/Face using the fields calculator:
https://aedt.docs.pyansys.com/version/0.7/API/_autosummary/pyaedt.modules.AdvancedPostProcessing.PostProcessor.get_scalar_field_value.html#get-scalar-field-value
Hopefully it helps you.