![]() |
Mmg
Simplicial remeshers (mesh adaptation, isovalue discretization, lagrangian movement)
|
To call the mmgs library, you must:
We read mesh and solution files using the MMGS_loadMesh and MMGS_loadSol functions. Results are saved using MMGS_saveMesh and MMGS_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 mmgs static library (we supposed here that the scotch library is installed in the **_$SCOTCH_PATH_** directory):
gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmgs main.c -L$CMAKE_INSTALL_PREFIX/lib -L$SCOTCH_PATH -lmmgs -lscotch -lscotcherr -lm
Example 2
Command line to link the application with the mmgs shared library:
gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmgs main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmgsexport LD_LIBRARY_PATH=$CMAKE_INSTALL_PREFIX/lib:$LD_LIBRARY_PATH