Hello,
I have a question about the mesh implementation in dolfinx.
Suppose that mesh
is an object of type dolfinx.mesh.Mesh
.
Then the objects mesh.geometry.index_map()
and mesh.topology.index_map(0)
stores the information regarding the indices of the nodes of the mesh.
If I run the code on only one processor, the two index_map coincides and are coherent. When I run the code in parallel instead, the information regarding the local nodes is still coherent among the two objects but the order of the ghost nodes is different.
Is there a reason why the order of the ghost nodes cannot be the same in both objects?
Is there an official method to move from one ordering of the ghost nodes to the other?
Best,
Federico