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!

abaqus results 1

Status
Not open for further replies.

fentasio

Mechanical
Mar 5, 2002
6
0
0
FR
hi
how can I have a list of element results or node results with abaqus?
I mean, I have several jobs and I would like to compare the results at the same node or element so I need to know the results for one node or element but the same at each job.
thanks in advance for your help.
nick
 
Replies continue below

Recommended for you

I think what you need to use are the *EL PRINT or the *NODE PRINT commands. These need to be put in the history data part of the input file. This will tell the solver to write the requested data to the .dat file.

eg
*EL PRINT, ELSET="set1"
S22, MISES

will print out the s22 and mises stress for all elements in set1

*NODE PRINT, NSET="set2"
U1, U2

will print out the displacements in the 1 and 2 directions for nodes in set2

if you need more info than that i'm happy to help :)
 
You can also put the frequency, how often the results will be written and totals to get the sum on the end.

*NODE PRINT,NSET=BCRIGHT,TOTAL=YES,FREQ=1
U1,RF1


I hope this can help you
happy.gif
 
Status
Not open for further replies.
Back
Top