When storing a 3D Mesh
object in a File
via
data_file = dolfin.File(filename)
data_file << mesh_3d
only the vertices and the cells are stored in filename
.
However, there are plenty of other objects associated from these that can be inferred from the cells, such as faces and edges.
So, are the indices of these faces deterministic on reloading of the mesh file? If no, is there a better way to mark and serialize faces for later use? Is there possibly a way to store mesh attributes other than <vertices size="XXX">
and <cells size="YYY">
in the XML file?