×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Query stress in a node?

Query stress in a node?

Query stress in a node?

(OP)
How may I find the stress acting in one single node? If I for example want to know the stress S11 in node 14?

RE: Query stress in a node?

CAE -> Visualization->Tools Menu->Query->Select Probe Values->Apply
Then in the dialog window:
Probe: Select Nodes
Check "Key-in labels"
Select Part instance
Input node label....


RE: Query stress in a node?

How shall we probe the stress and strain tensor for an element and for the whole model?  I am desperate to know this question smile  My advisor wants these tensors.

I read this sentence in one paper: ":average stress and strain tensors are computed over all of the elements:"  I wrote to the authors but they wouldn't tell me how they did it.

A stupid way may be to get the stress at the node, use interpolation function and then integrate over the volume.  But I guess there should be an easy way to get average stress and strain tensors from Abaqus output.  

I directly run the python code in the Abaqus Command Window.  So I cannot request writing to the result file which is only available to Input File Usage.  The result file should be able to compute the stress and strain tensor pretty easily, I guess.

RE: Query stress in a node?

(OP)
I`ve tried this, but I get wrong values in nodes.

RE: Query stress in a node?

louisa,
Are you interested in average stress and strain tensor for computing effective properties maybe?

You do not need to extrapolate the stress and strain at nodes. Use the suitable Gauss quadrature rule for the element type you are using to integrate each stress and strain component over each element in the domain.
then the average over entire model is:

<Sij(whole_model)> = (1/Volume)*Sum(I(Sij(elem_i)), i=1...Nelem

where I(Sij(elem_i)) means the integral of Sij over element i, i=1..Nelem

Personally, I could not find a direct way so I had to write my own code.

RE: Query stress in a node?

ah-  xerf, you are brilliant! :)  Yes, I want to calculate effective properties of composites.

You are right.  Use Gauss integration weights significantly simplifies the problem.  I have another question: for each element, I should divide the integrated value by the real volume of the element in x,y coordinate, or by the volume of 2x2=4 in r,s coordinate?

RE: Query stress in a node?

You should use Gauss quadrature to integrate each stress and strain component over each element. Therefore you will have one value per stress/strain component/per element. The you sum all these values (separately for each component) and in the end you will have one value for each stress/strain component per entire model.

The divide each of these values by the model volume.

To obtain the current model volume (if the volume changes significantly under the loading condition), then include EVOL in your field output request. ABAQUS will compute the volume of each element. To obtain the total volume , just sum all the EVOL values.

A simple approach might be to check if ABAQUS can output the entire model volume for you as a history request.

If you want to average over a single element then you should divide the integral over that element (approximated by Gauss quadrature) by the real volume of the element.

RE: Query stress in a node?

What type of composite are you modeling ? (I've noticed you are using a 2D model.)

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources