I try to get the calculated bolt pretension force in ACT command.
analysis = ExtAPI.DataModel.Project.Model.Analyses[0]
reader = analysis.GetResultsData()
rstMesh = reader.CreateMeshData()
nodeIds = rstMesh.NodeIds
elementIds = rstMesh.ElementIds
bolt_pre = reader.GetResult("BOLT")
bolt_pre.SelectComponents(['LOAD'])
times = reader.ListTimeFreq
reader.CurrentTimeFreq = times[1]
load=bolt_pre.GetNodeValues(7472)
In the up Python code, the nodeIds include the bolt pretension remote node (7472) which is stored in rst file, but the elementIds don't include the pretension elements.
So how do I get the bolt pretension remote node number (in this case the number is 7472) ?