Hi,
I have constructed a simple mesh in GMSH. Below is the .geo file
Point(1) = {0, 0, 0, 0.1};
Point(2) = {1, 0, 0, 0.1};
Line(1) = {1, 2};
Extrude {{0, 1, 0}, {0, 0, 0}, Pi/2} {
Line{1};
}
Extrude {{0, 1, 0}, {0, 0, 0}, Pi/2} {
Line{2};
}
Extrude {{0, 1, 0}, {0, 0, 0}, Pi/2} {
Line{5};
}
Extrude {{0, 1, 0}, {0, 0, 0}, Pi/2} {
Line{8};
}
I have converted the .msh file into a .xml file using dolfin-convert, but the result is mesh that is nothing but a line. I.e.:
mesh = Mesh("test.xml")
plot(mesh,interactive=True)
Thanks in advance