Hello,
I am trying to export a mesh created in the julia api. It works fine so far, but when creating node sets from physical surfaces, lines or simpy nodes, it does not work as it should.
My code: (Should work in python as well, by changing using with import.)
using Gmsh
gmsh.initialize()
gmsh.model.add("test")
gmsh.logger.start()
gmsh.model.occ.synchronize()
gmsh.model.occ.addBox(0, 0, 0, 20, 10, 1)
gmsh.model.occ.synchronize()
gmsh.option.setNumber("Mesh.CharacteristicLengthMax", 0.5)
gmsh.option.setNumber("Mesh.SaveGroupsOfElements", 1000)
gmsh.option.setNumber("Mesh.SaveGroupsOfNodes", -111)
gmsh.model.mesh.generate(3)
# Bottom face nodes
bot = gmsh.model.getEntitiesInBoundingBox(0, 0, 0, 20, 10, 0, 0)
gmsh.model.addPhysicalGroup(0, [p[2] for p in bot], 1, "bottom")
# Along a edge
lin = gmsh.model.getEntitiesInBoundingBox(0, 0, 0, 0, 10, 0, 0)
gmsh.model.addPhysicalGroup(0, [p[2] for p in lin], 2, "edge1")
# Volume
vol = gmsh.model.getEntities(3)
gmsh.model.addPhysicalGroup(3, [v[2] for v in vol], 3, "vol1")
gmsh.model.occ.synchronize()
gmsh.write("test.msh")
gmsh.write("test.inp")
gmsh.finalize
The issue is, that the physical groups to pick nodes from edges or surfaces do not export nodes from the mesh but the ones that are created by addBox as geometric points. A set nall for example then only contains the 8 corner nodes, nothing else.
Am I doing anything wrong or is this a known issue with gmsh?