A simple tool to convert mesh created from Gmsh to XDMF for use in FEniCS. This work is derived from the work done during my GSoC project and is based on the following snippet of code made by Michal Habera.
To use this tool you have to use the docker image provided here. It has all the correct version of different libraries that are supported by this tool.
You can install this with the following commands:
sudo -H pip install meshx
Run the following in the directory which contains the .msh
file.
meshx plate.msh
cd demo/poisson_problem
meshx plate.msh
This command will give you 2 folders -
- mesh - This folder will contain the data that we will use in the script i.e, the XDMF files for different entities of mesh and the JSON file containing the corresponding tag names and tag values.
- sub_domains - This folder will contain the XDMF files of different subdomains marked. These files can be visualised in Paraview for validating the correctness of the marked subdomain.
python3 main.py
This repository is tested with the Docker image provided here. This Docker image has all the correct version of libraries required for this tool. If you want to use this tool with your Docker image then please install all the different libraries mentioned in the above repository.
Install the repository in editable mode for development. Go to the root folder containing setup.py
and run the following in terminal.
sudo -H pip install -e .