How can I automate printing of results at some nodes for transient simulation in FIPOST?


To print x component of velocity at node 64 at time steps 1,11,21,31, to 101 to the .FIOUT file.
To print temperature at node 64 at time steps 1,11,21,31 to 101 to the .FIOUT file, read in the following file:

FIPOST
$A=1
DO($A=1, $A.LE.101,10)
TIME(STEP=$A)
PRINT(temperature, NOD1=64, PRINT)
ENDDO
END

If you want to see on the screen, then replace the PRINT command as follows:
PRINT(temperature, NOD1=64, SCREEN)





Show Form
No comments yet. Be the first to add a comment!