Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Output Ansys Data to Excel file

Status
Not open for further replies.

TucsonAz

Mechanical
Mar 22, 2004
5
0
0
US
How can I export Ansys data to Excel. I have run some transient thermal analysis in Ansys Professional. I was plotting the results using Time Histograph in Ansys. The plots are Temperature vs Time for a load step.
 
Replies continue below

Recommended for you

Create a small script in a text file and read in using FILE --> READ INPUT FROM... The script should contain the commands below once your results file has been read in:

! ----------- output temps to excel -------------
/POST26
*del,...
*dim,...
*vget,...

*cfopen,filename,csv ! use delimited file type csv
*vwrite,...
(format)
*cfclose
! -------------------- END ----------------------


Best of luck,

-- drej --
 
Status
Not open for further replies.
Back
Top