-
Hi,
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
@ay8tb this probably does not match the FEM in WB Mechanical. The use of CPs in WB Mechanical is pretty rare. Can you show a picture of the applied load in WB Mech? Mike |
Beta Was this translation helpful? Give feedback.
-
Hi @ay8tb Ok Mechanical is using a surface effect element and is applying a equivalent pressure to the face with the applied force. Instead of using a couple try this: mapdl.nsel("S", "LOC", "Y", 0)
selected_nodes = mapdl.mesh.nnum
mapdl.f('all', 'fy', -5700/len(selected_nodes))
mapdl.allsel() Now how do the results match? Oh, and compare with linear elements to start. |
Beta Was this translation helpful? Give feedback.
-
@ay8tb you can always compare your PyMAPDL code with the Converting the Having both codes allows you to compare. I believe exporting the |
Beta Was this translation helpful? Give feedback.
Hi @ay8tb Ok Mechanical is using a surface effect element and is applying a equivalent pressure to the face with the applied force. Instead of using a couple try this:
Now how do the results match? Oh, and compare with linear elements to start.