Skip to content

gmshparser is a lightweight, 100 % tested and well documented package that aims to reliably parse the Gmsh ascii file format (.msh). The package does not introduce any external dependencies and thus fits well with the needs of your own FEM research code as a small stand-alone package.

License

Notifications You must be signed in to change notification settings

ahojukka5/gmshparser

Repository files navigation

gmshparser - parse Gmsh .msh file format

Build Status Coverate Status Documentation Status

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/

Installing package

Using pip:

pip install gmshparser

Usage

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.

Contributing to project

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.

About

gmshparser is a lightweight, 100 % tested and well documented package that aims to reliably parse the Gmsh ascii file format (.msh). The package does not introduce any external dependencies and thus fits well with the needs of your own FEM research code as a small stand-alone package.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages