-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @fzanst Yes, see the post_processing nodal_value. Here is an example of using this. Since MAPDL stores only corner node results in the result file I'll first select the corner nodes of the contact elements (ename 174). mapdl.post1()
mapdl.set('last','last')
mapdl.esel('s','enam','',174)
mapdl.nsle('s','corner')
contact_pressure = mapdl.post_processing.nodal_values('cont','pres')
print(contact_pressure)
mapdl.mesh.nnum Then compare to the MAPDL listing of the contact results. Unfortunately MAPDL "prints" all the contact information with the PRNSOL command. print(mapdl.prnsol('cont')) Mike |
Beta Was this translation helpful? Give feedback.
Hi @fzanst Yes, see the post_processing nodal_value. Here is an example of using this. Since MAPDL stores only corner node results in the result file I'll first select the corner nodes of the contact elements (ename 174).
Then compare to the MAPDL listing of the contact results. Unfortunately MAPDL "prints" all the contact information with the PRNSOL command.
Mike