I can use the following to get the element number that's written to the ds.dat file for a beam connection object, but how do you access the node numbers?
beam = ExtAPI.DataModel.GetObjectsByType(DataModelObjectCategory.Beam)[0]
Analysis = Model.Analyses[0]
SolverData = Analysis.Solution.SolverData
BeamData = SolverData.GetObjectData(beam)
beamElmId = BeamData.ElementId
dir(BeamData)
['ElementId', 'MaterialId', 'RealConstantId']
I would have expected a 'NodeIds' method to also be available. Is there any way to get this information (without having to write out the ds.dat file)?