Thanks Blas. In the "Select PostProcessing Data" menu when it shows "Type" next to the "Contour" menu, do you know how to change the "Type" from "Element" to "Node" for the "Maximum" and "Minimum"?
I have been having issues with my Post Processing in Femap 10.2.1. In the attachment that I have added I show a screen shot of a problem I am currently working. The contour key to the right shows that my max stress (max principal) is 8828 psi. But in my Select PostProcessing Data menu shows that...
Thanks cpt09135. I eventually figured it out and wrote this code in Excel's VB Developer:
Private Sub LoadNodalData()
Dim femap As Object
Set femap = GetObject(, "femap.model")
'Dimension these variables so that they can take the form of the object commands
Dim nd As Object
Dim mt As Object...
I created a simple truss problem in FEMAP and I am trying to extrapolate the data from the FEMAP model using the API feature. I have been trying to pull the length of each element into an excel sheet, the method is Length(dlength) associated with the element. I am struggling to get any code...