• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

esportazione tensioni ansys workbench

  • Thread starter Thread starter nicnoc
  • Start date Start date

nicnoc

Guest
Hi, everybody, I have a problem. I'm analyzing a glass facade. the problem of this material is static fatigue (depending on load duration, its resistance changes significantly). Having to analyze various load conditions, I need to export the tension status of each panel and make an assessment with an external program. do you know if you can export the tension status of a single item or with ansys or with the workbench module?

Thank you in advance.. .
Niche
 
What do you have to export?
the tension of one element and all?
I would use classic ansys with some apdl.
first you get results with *get or *vget commands and then you expose them in a text file with *cfopen, *vwrite, *cfclose
 
I have to export the voltage values of each mesh element and then "process" data with an external program
 
maybe the quickest thing is for you to write these series of commands:

/output,result,txt
Take it.
/output

basically the first line redirects output to the file "results.txt"
the second line, for every knot of the i-th element, goes to write all the components of stress
the third line reports output on video
 
and if you want to select only some items I use the command
esel,s,ele1
esel,a,ele2
esel,a,ele3

What do you mean?
 
dear nicnoc the commands you have to use are exactly:

esel,s,,(number element)
and to add other elements:

esel,a,,(num element)

of course, if the items you have to export have, for example, all the same real or the same matid, you can use the esel command by specifying the type of element in relation to the matid, or to the real using:

esel,s,real,...
or

esel,s,mat,...

Say hi!
 
ottengo questo risultato sul file risultati.txt

geometry is not available.
the presol command is ignored

il comando che ho scritto è il seguente:

allsel
esel,s,ename,,180 ! select only link180 elements

/output,risultati,txt
presol,s1
/output

allsel
 
At the end of the day, I got tired.
I exported the workbench solution to ansys and read the results from them....
works equal :)
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
ciao
Back
Top