![]() |
Mmg
Simplicial remeshers (mesh adaptation, isovalue discretization, lagrangian movement)
|
To call the mmg2d library, you must:
We read mesh and solution files using the MMG2D_loadMesh and MMG2D_loadSol functions. Results are saved using MMG2D_saveMesh and MMG2D_saveSol functions.
The mesh and solution are hard coded.
They are build in MMG5 format using API functions and are recovered by the same way.
We show how to recover the mesh/sol.
Example 1
Command line to link the application with the mmg2d static librarygcc -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 -lmmg2dexport LD_LIBRARY_PATH=$CMAKE_INSTALL_PREFIX/lib:$LD_LIBRARY_PATH