Sep 5, 2007 #1 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
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
Sep 5, 2007 #2 cibachrome Automotive Joined Jan 16, 2007 Messages 514 Location US 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) Upvote 0 Downvote
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)
Sep 5, 2007 Thread starter #3 Chris31 New member Joined Jul 20, 2007 Messages 19 Location US Sorry, The output is NX Nastran Ouput and there are multiple subcases and element types. Thanks for all your help. Upvote 0 Downvote
Sorry, The output is NX Nastran Ouput and there are multiple subcases and element types. Thanks for all your help.