Get Node Ids for a face index on a particular element ID
from Ansys.ACT.Common.Mesh import ElementFaceWrapper mesh = ExtAPI.DataModel.MeshDataByName("Global") ''' Get Node Ids for element face index 2 on Element ID 936 ''' e_face = ElementFaceWrapper(mesh, mesh.ElementById(936), 2) node_ids = e_face.NodeIds
Hi @Ayush Kumar
Many thanks for this post.
I wanted to kindly follow up with some more questions.
what if
I have a face (named selection) and all the elements on that face, and I want to find the element face index of these elements such that each one is on the named selection face.
My current thought is to build a loop through each element on the face and then the number of element face indices, but I figured there might be a better way around.
Any help would be appreciated.
Thank you in advance