table of results
table of results
(OP)
Hi everyone !
I would like to create a table in a journal that contain all the displacement and stresses of each elements of my part.
I have managed to create a table with the displacement but when I when to put stresses like Xx or Von Mises the program fail.
there is my code join
Thanks for your help
Regards
Ben
I would like to create a table in a journal that contain all the displacement and stresses of each elements of my part.
I have managed to create a table with the displacement but when I when to put stresses like Xx or Von Mises the program fail.
there is my code join
Thanks for your help
Regards
Ben





RE: table of results
RE: table of results
It is not a Nodal result
( the same with element " this is not an element result " )
RE: table of results
stress = elemental value
Starter for 10 from the NX examples
Dim nNodes As Integer = results.AskNumNodes()
Dim comps(0) As NXOpen.CAE.Result.Component
resultAccess.AskResultComponents(comps)
Dim nComps As Integer = comps.Length
Dim iComp As Integer
Dim iNode As Integer = 1
Do Until (iNode = nNodes + 1)
Dim iNodeLabel As Integer = results.AskNodeLabel(iNode)
Dim iNodes(0) As Integer
iNodes(0) = iNode
Dim values(0) As Double
resultAccess.AskNodalResultAllComponents(iNode, values)
Loop
RE: table of results
thanks for your help