Mmg
Simplicial remeshers (mesh adaptation, isovalue discretization, lagrangian movement)
Input and output for multiple solutions (we do not call any mmg library here)

I/ Implementation

  1. Read a mesh and a solution file with multiple solutions at MMG5 format (using the MMG2D_loadMesh and MMG2D_loadAllSols functions).
  2. Use the Mmg setters to set this solutions in another solution structure.
  3. Use the Mmg getters to get the solutions in another new solution structure.
  4. Save this last solution structure and the multiple solutions stored using the MMG2D_saveAllSols function.

II/ Compilation

  1. Build and install the mmg2d shared and static library. We suppose in the following that you have installed the mmg2d library in the **_$CMAKE_INSTALL_PREFIX_** directory (see the installation section of the setup guide);
  2. compile the main.c file specifying:
    • the mmg2d include directory with the -I option;
    • the mmg2d library location with the -L option;
    • the mmg2d library name with the -l option;
    • with the shared library, you must add the ***_$CMAKE_INSTALL_PREFIX_** directory to your LD_LIBRARY_PATH.

‍Example 1
Command line to link the application with the mmg2d static library

gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmg2d main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmg2d -lm

‍Example 2
Command line to link the application with the mmg2d shared library:

gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmg2d main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmg2d
export LD_LIBRARY_PATH=$CMAKE_INSTALL_PREFIX/lib:$LD_LIBRARY_PATH