Assigning radiation model using pyAEDT in Icepak #4862
-
I want to assign Discrete Ordinate Radiation model in my simulation using script, Is there any specific way where in I can model this ? Methods I have tried is listed below, none of it is working or giving any error message |
Beta Was this translation helpful? Give feedback.
Answered by
ansys-satyajeet
Jul 4, 2024
Replies: 1 comment
-
Hi, You can assign Discrete Ordinate Radiation model using the lines below setup = ipk.create_setup("sim1")
setup.props["Radiation Model"] = "Discrete Ordinates Model"
setup.props["Flow Iteration Per Radiation Iteration"] = "10"
setup.props["ThetaDivision"] = 2
setup.props["PhiDivision"] = 2
setup.props["ThetaPixels"] = 2
setup.props["PhiPixels"] = 2
setup.update() In the code snippet above, you will also find the keys for other settings such as resolution for DO model and flow iteration per radiation iteration. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ansys-satyajeet
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
You can assign Discrete Ordinate Radiation model using the lines below
In the code snippet above, you will also find the keys for other settings such as resolution for DO model and flow iteration per radiation iteration.