I'd like to extract the full list of nodes and its information from a specfici Face in Ansys Mechanical
For example:
""" mesh = ExtAPI.DataModel.MeshDataByName("Global")
"Element Face ID 8" nodesIds=mesh.MeshRegionById(8)
"Node Information" n0 = nodesIds.Nodes[0] n0.X n0.Y n0.Z """
Your example is related to an element face. In your question you are mentioning body face.
the MeshRegionById method is used to get a mesh region based on a CAD geo entity ID. It can be a body, face, edge or vertex ID.