Package author: Jukka Aho (@ahojukka5)
Gmshparser is a small Python package which aims to do only one thing: parse Gmsh mesh file format. Package does not have any external dependencies to other packages and it aims to be a simple stand-alone solution for a common problem: how to import mesh to your favourite research FEM code?
Project documentation is located at: https://gmshparser.readthedocs.io/
Using pip:
pip install gmshparser
To read mesh into Mesh
object, use command parse
:
import gmshparser
mesh = gmshparser.parse("data/testmesh.msh")
print(mesh)
Output is
Mesh name: data/testmesh.msh
Mesh version: 4.1
Number of nodes: 6
Minimum node tag: 1
Maximum node tag: 6
Number of node entities: 1
Number of elements: 2
Minimum element tag: 1
Maximum element tag: 2
Number of element entities: 1
For further information on how to access nodes, elements, physical groups etc. look the documentation.
Like in other open source projects, contributions are always welcome to this too! If you have some great ideas how to make this package better, feature requests etc., you can open an issue on gmshparser's issue tracker or contact me (ahojukka5 at gmail.com) directly.