Ferrite-FEM / FerriteGmsh.jl

MIT License
14 stars 7 forks source link

Parsing of embedded elements #30

Open termi-official opened 1 year ago

termi-official commented 1 year ago

Currently parsing of embedded elements (e.g. Triangles in 3D) does not fully work. As a hotfix I have

try
    togrid("/home/dogiermann/untitled.msh")
catch
end
nodes = tonodes();
elements, gmsh_elementidx = toelements(2);
grid = Grid(elements, nodes);

but I think it would be nice to have a proper solution.

For me this is important to allow parsing of mixed-dimensional problems later on.