Return results values of specified type at all nodes for element. All options (loadcase, transformation, Wood-Armer, composite layer, etc) will be taken from the current view If an UnitSet object (or its name) is given, the value will be returned in those units. Otherwise it will be returned in the database's current unit system. Note that for efficiency the requested results are cached and will not be removed from the system (and so will potentially use a large amount of memory) until explicitly removed with a call to flushScriptedResults
entity | string | Results entity i.e. "Stress - Thick Shell" etc.. |
component | string | Sx, Sy, Sxy, etc.. See element reference manual for details |
units | optional IFUnitSet | |
Return value | array | returned array |
Example
' get node results
mxArray=element.getNodeResultsArray("STRESS","Mx")
' get nodes
nodes = element.getNodes()
' loop nodes
for k = 0 to ubound(nodes)
msgBox("node " & nodes(k).getID() & " mx = " & mxArray(k))
next
Back to Element
Back to Overview