×
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

request fieldouput about node stress

request fieldouput about node stress

request fieldouput about node stress

(OP)
Hi all,

I am trying to extract nodal stress (shear stress) from odb file using a python script.
I first defined a field request in CAE with a domain of a set of nodes, which in INP file is shown as "*Output, field *Node Output, nset=Set-1, variable=PRESELECT". and i select stress to be the requested varible.
the part of my script is:
Nodeset = odb.rootAssembly.nodeSets['SET-1']
ReactionForce = frame.fieldOutputs['S'] # this certain frame has been previously defined.
ReactionForceInterest = ReactionForce.getSubset(region=Nodeset).values

however, i get zero values from above script.
Can someone suggest? thanks in advance.
Hoping to hear from some one soon.

Cheers

RE: request fieldouput about node stress

Stresses are still element output, even when you request that Abaqus extrapolates the values to the nodes. So you have to use an element set (or nothing) and
*Element Output, Position=...

See Keyword Reference Manual for the details.
This keyword option is not supported through /CAE, so you have to add manually it into the input file or the CAE keyword editor.


And be aware, that prior v2016 the values can only be extrapolated by the solver, but not averaged.

RE: request fieldouput about node stress

(OP)
Dear Mustaine3,

thanks for your reply. just to confirm, so did you mean there is no direct method to extract the nodal stress?
and my second question is:
i had succeeded to extract the elemental stress. based on my understanding, is it right that the only way to get 'true' nodal stress would be averaging the nodal stress (i.e. the stress on the corners of each element) of every element that shares that node?

thanks again

RE: request fieldouput about node stress

Extrapolation and averaging is usually a task of the postprocessing tool. Maybe you don't try reading the ODB directly, but automate that A/CAE as postprocessor opens the ODB and writes an report with the stresses at the nodes. There you'll find what you're looking for.

RE: request fieldouput about node stress

(OP)
Dear Mustaine3,

thanks again for your reply. i actually need to extract shear stress related customised variable: shear stress* displacement, over every frame.
i am sure that can be done through CAE by exporting each variable and multiplying together, which also can be very time and labour consuming.
So, is that the only method that i can do?

thank you again.

RE: request fieldouput about node stress

I see two options for your process:

1. Without postprocessing tool:
- request stresses extrapolated to nodes from solver
- with script:
---- read stresses at nodes
---- do averaging
---- read displacements
---- calculate your result
---- repeat for next frames

2. With postprocessing tool:
With script:
- open regular odb in /CAE
- create report with displacement and stresses at nodes for first frame
- read data from report
- calculate your result
- repeat last three actions for other frames

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