Centroid of elements
Swamy
Member Posts: 3 **
I have 11 elements after meshing, I need the centroid location of each element in a list or file format for using it later. Can someone provide me with the APDL code?
Tagged:
0
Answers
-
You should be using *VGET. This will return/fill an array of data based on your current elemental selection:
*VGET, ParR, ELEM, n, Item1, IT1NUM, , , KLOOP
CENT X, Y, Z Centroid X, Y, or Z location (based on shape function) in the active coordinate system
0