How to get member internal forces by member #271
Replies: 3 comments 1 reply
-
Hi @nathanvanthof, |
Beta Was this translation helpful? Give feedback.
-
Hi @nathanvanthof, |
Beta Was this translation helpful? Give feedback.
-
Hello @nathanvanthof, as @OndraMichal said that this bug is fixed and now you can get result table for specific member by defining result = ResultTables.MembersInternalForces(CaseObjectType.E_OBJECT_TYPE_LOAD_CASE, loading_no=1, object_no=0, include_base=True)
print(result[13])
output: {'no': 14.0, 'description': 1.0, 'internal_force_vz': xyz, 'internal_force_my': xyz, 'internal_force_mz': xyz, 'internal_force_n': xyz, 'internal_force_label': 'xyz', 'internal_force_mt': xyz, 'location': xyz, 'node_number': xyz, 'internal_force_vy': xyz, 'specification': 'xyz', 'location_flags': 'xyz'} In output, |
Beta Was this translation helpful? Give feedback.
-
I would like to retrieve the internal forces for one member. I've tried:
But then I get the results for all the members. I've also tried:
It doesn't seem to matter. I always get the exact same results (namely: across all the members). Anybody know how to get the internal results for one specific member?
A workable solution would also be to determine what result belongs to what member, I can filter it out myself then, but based on this I don't think I can do that either:
Beta Was this translation helpful? Give feedback.
All reactions