![]() |
Mmg
Simplicial remeshers (mesh adaptation, isovalue discretization, lagrangian movement)
|
To call the mmg3d library, you must:
We read mesh and solution files using the MMG3D_loadMesh and MMG3D_loadSol functions. Results are saved using MMG3D_saveMesh and MMG3D_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 by writting it in a file.
Example 1
Command line to link the application with the mmg3d static library (we supposed here that the scotch library is installed in the **_$SCOTCH_PATH_** directory):
gfortran -I$CMAKE_INSTALL_PREFIX/include main.c -L$CMAKE_INSTALL_PREFIX/lib -L$SCOTCH_PATH -lmmg3d -lscotch -lscotcherr -lm
Example 2
Command line to link the application with the mmg3d shared library:
gfortran -I$CMAKE_INSTALL_PREFIX/include main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmg3dexport LD_LIBRARY_PATH=$CMAKE_INSTALL_PREFIX/lib:$LD_LIBRARY_PATH