-
How to get force reaction on area like in Mechanical, where you can choose as Boundary condition Displacement, etc.? mapdl.run('/post26')
mapdl.run('ASEL,S,AREA,,{}'.format(area_number_static)) # Select area with displacement 0
mapdl.run('NSLA,S,1') # Select all nodes in area
nodes_num = mapdl.mesh.nnum # get nodes numbers associated to selected area Then im getting force like: for node_num in nodes_num:
mapdl.rforce(2,node_num,'F','Y','FY1') # geting force reaction of node
n_force = mapdl.prvar(2) #Lists variables vs. time (10 substeps of 1s.) After i getting sum of all nodes, but getting not same result as in Mechanical. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Any idea? |
Beta Was this translation helpful? Give feedback.
-
As @pmaroneh suggested, this type of question is more related to Ansys Customer support. I would suggest you to open a ticket with them in Ansys Customer Portal or Ansys Forum |
Beta Was this translation helpful? Give feedback.
As @pmaroneh suggested, this type of question is more related to Ansys Customer support. I would suggest you to open a ticket with them in Ansys Customer Portal or Ansys Forum