Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Mean stress values - absolute value - for an entire volume: please help me! Ansys 14 1

Status
Not open for further replies.

oguila

Bioengineer
Dec 18, 2012
11
Hello everybody!

I am trying to get the mean absolute value (e.g. SEQV) for an entire volume. Ansys provides max and min values, but not the mean.
After ploting the volume, the best I got was:

General Postproc > Element Table > List Element Table > select the stress I want = resulted in a list (.lis) showing the value of each element. I transfer the values to Excel, eliminate "the number of element column", and it calculates the mean for all elements.

However, it is complicated when you have thousands and thousands of elements....

Isn´t there a simple way? As Ansys provide the value of each element, can it provide the mean?

Thank you very much!
 
Replies continue below

Recommended for you

If you need to compute a volume-averaged von mises stress, you'll probably want to use ETABLES. I think you can select the elements that you want to average and do something like this to loop through them:
Code:
cmsel,s,my_elems,elem
*get,enum,elem,0,count
EE = 0
vmvol = 0
totvol= 0
etable,vmstr,s,eqv
*do,i,1,enum
  EE = elnext(EE)
  *get,evol,elem,EE,volu
  *get,evmstr,elem,EE,etab,vmstr
  vmvol  = vmvol + evol*evmstr
  totvol = totvol + evol
*enddo
avgvm = vmvol/totvol
etable,erase,

I haven't tested that, so beware. No exchanges, substitutes or refunds. :)

Hope that helps. Good luck!
 
Thank you very much! It worked fine!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor