Postprocessing automation in Icepak #6496
Replies: 2 comments 4 replies
-
Script: import os #Define the AEDT project and design #List of power values to sweep for $Pbox #Create an Excel workbook to save results #List to store max temperatures for plotting try:
except Exception as e: |
Beta Was this translation helpful? Give feedback.
-
I hope I haven’t missed any critical details that would make this approach unsuitable for your use case. Based on what you're aiming to achieve, I believe it can be done quite simply using the Here’s a quick example: ipk = ansys.aedt.core.Icepak()
out = ipk.post.get_temperature_extremum("Box1", "Max", "Surface")
# out[0] gives the (x, y, z) position of the maximum temperature
# out[1] gives the maximum temperature value Let me know if this works for you! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm trying to develop a pyAEDT script to automate Icepak simulation for certain models. My intention is to run the model for different power models and postprocess the results by obtaining the max temperature of an object called "Box1" in the Icepak model.
I used the following script and several variations of this script, but always getting error messages for the postprocessing portion.
Beta Was this translation helpful? Give feedback.
All reactions