Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

Using Matlab to extract data from FE output file

Status
Not open for further replies.

Chris31

New member
Joined
Jul 20, 2007
Messages
19
Location
US
Can anyone offer suggestions on where to look for the following:

I'm trying to write a script that will search through a Finite Element output file and print axial force values for specific element ID numbers.

Any help is greatly appreciated.

Thanks,
Chris
 
You didn't provide ANY detail about what form your FEA results are in, so the general idea is:

inx = strmatch(EID_you want,EIDS)

axial_stress = EIDS(inx,column_of_axial_stress)



 
Sorry,

The output is NX Nastran Ouput and there are multiple subcases and element types.

Thanks for all your help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top