Ansys Learning Forum Forums Discuss Simulation General Mechanical Can Ansys APDL extract a function of temperature distribution? Reply To: Can Ansys APDL extract a function of temperature distribution?

Erik Kostson
Ansys Employee
that should be possible, see perhaps *dim,*do, set, and *get commands - they are well documented in our help manual, and one can find examples there to (or on the internet on how they are used to extract results).
A pseudo script could be (unfortunately I can not provide any additional help as this requires some specific scripting from our side which I do not do and provide)
Pseudo-Script:
Create arrays to store results (*dim for array, and *get to get number of nodes and time steps, in order to size arrays)
Loop through time steps and nodes and store results in array using *get (this a double loop over time and nodes)
If one wants we can print those results to file (*mwrite)
Thank you

Erik