Replies: 2 comments 1 reply
-
Hi @derne058 Fields 10-30 have the element nodal connectivity: https://mapdl.docs.pyansys.com/version/stable/api/_autosummary/ansys.mapdl.core.mesh_grpc.MeshGrpc.elem.html If that is too much we can *get (or get_value in PyMAPDL) the specific node for an element. Like return the 'i' node, or the 'j' node. Where the nodes traditionally are numbered/lettered i, j, k, l, m, n,...... |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @mikerife, thanks a lot! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I am writing a code where I want to calculate the deformations and stresses at the Gauss points of an element and compare them with the results calculated by APDL.
I am using the isoparametric formulation for hexahedral linear elements and have implemented the corresponding shape functions.
I would need to extrapolate for each element its nodes, i.e. a vector in which in the first position is the node ID of node i, in the second position the node ID of node J, and so on up to index P.
So far I haven't found anything that works for me.
Does anyone have any ideas or has ever done anything similar?
Beta Was this translation helpful? Give feedback.
All reactions