exporting data from ansys
exporting data from ansys
(OP)
i would like to export data from a Path, into notepad. i can't find from the path operations menu which is the command. any help please?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
exporting data from ansys
|
RE: exporting data from ansys
List -> results -> path data -> file -> save as..
In script:
/OUTPUT,filename,extension, ! redirects output to file
PRPATH,_UX,_UY ! prints path data
/OUTPUT ! resets output redirection
but both solutions result in text file divided into pages.
The other way is to save values from all path points to a variable and export them into file:
*CFOPEN,filename,ext,,APPEND
*do,k,1,path_division
PSEL,itemname,pathname
*get,variable,PATH,0,ITEM,itemname,pathpt,k
*end
*vwrite,variable
%f
RE: exporting data from ansys