-
Hi all, I would like to obtain contact penetration infos of a CONTA178 data set.
There is the following output:
What´s the reason for that? It is possible to plot all contact information but not only the penetration. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @herttim mapdl.esel('s','enam','',178)
mapdl.nsle()
mapdl.post_processing.plot_element_values(item='nmisc', comp=3) You could capture the values for later calculations using: contact_penetration = mapdl.post_processing.element_values(item='nmisc', comp=3) Attached is a Jupyter Lab notebook of MAPDL Verification Manual 27 to test on. Mike |
Beta Was this translation helpful? Give feedback.
-
@mikerife Thanks for answering my question! That helped me a lot 👍 Unfortunately, I'm still stuck on determining the contact penetration for a selected line and its elements. I thought it would work that way, but unfortunately it doesn't: Or is it only possible to output all CONTA178 elements at once? Best regards |
Beta Was this translation helpful? Give feedback.
Hi @herttim
There are a few answers here as when I see "need X for further calculations" I'm assuming you need to capture the value and not a plot. Anyway Contact 178's don't support plotting contact values with the "cont" items as the other contact element types do. The name of the value is USEP (go figure) where negative values represent a gap and positive values penetration. And are stored on the third NMISC. So the following should plot these:
You could capture the values for later calculations using:
…