The LIbrary for Mesh Operations and Numerics (limon) is a Python API to handle mesh/solution I/O for SU2 and GMF formats, basic mesh refinement operations, and various operations on metric tensor fields.
Important
limon is currently only supported for Linux.
-
Initialize the submodules:
git submodule update --init --recursive -
Create the
condaenvironment fromenvironment.yml:conda env create -f environment.yml -
Load the environment:
conda activate limon -
From the top-level directory of the repo, install the package:
pip install .Optional: to be able to run the tests, install with optional dependencies:
pip install ".[test]"