get the thermal conductivity of the material with pyaedt scripts #4660
-
Hi all, I am facing a problem while post-processing using pyaedt script. The issue is that I need the thermal conductivity of the material in my report, so I want to get the thermal conductivity of the material with pyaedt scripts.
I would like to know which pyaedt script I need to use to get the thermal conductivity of a material! |
Beta Was this translation helpful? Give feedback.
Answered by
Samuelopez-ansys
May 13, 2024
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
aknsj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@aknsj
I assume, the material "plastic" is used in your design, because if it is not, then you can not get it in the way you are trying:
If the material is defined like in the previous picture.
If the material is not defined in the design, you need to first load it,
app.materials.add_material("polyamide")
If the material name you pass exists in the AEDT library, then the material definition will be the same, if you pass a new name, you will create a dummy material, that you can customize later. This is how AEDT works:
Please let me know if this solves your questions.