Postprocess force on remote point from remote displacement

Pernelle Marone-Hitz
Member, Moderator, Employee Posts: 870
✭✭✭✭
How can I postprocess the force reaction on a remote displacement boundary condition ?
Tagged:
0
Best Answer
-
The following code can be adapted. It will add a force reaction probe and scope it to the first remote displacement in the Mechanical tree.
remote_disp = Model.Analyses[0].GetChildren(DataModelObjectCategory.RemoteDisplacement,True)[0] # get first remote disp in tree force_reaction = Model.Analyses[0].Solution.AddForceReaction() force_reaction.BoundaryConditionSelection = remote_disp Model.Analyses[0].Solution.EvaluateAllResults()
0