mesh_data = gmshio.model_to_mesh(model, comm, rank=0)
mesh_data.mesh.name = name
...
if mesh_data.edge_tags is not None:
while according to the documentation, dolfinx.io.gmshio.read_from_msh returns a python tuple, which cannot be accessed with member syntax ("AttributeError: 'tuple' object has no attribute 'mesh'"). Also, there are only 3 possible fields - mesh, cell_tags and facet_tags - while the example suggest also edge_tags and vertex_tags.
Am I doing something wrong or the example is not correct for the current version?
Thank you! I thought 0.9 was the latest version. I see that tutorials were updated to 0.10, but I can’t find this version. Is it going to be released soon?
I understand it means that 0.10 supports tags for all dimensions, and 0.9 only for n and n-1? It is important for me, as I have a 3D mesh that includes:
internal surfaces with tags (between tagged volumes)