![]() |
Mmg
Simplicial remeshers (mesh adaptation, isovalue discretization, lagrangian movement)
|
We read the mesh and displacement in files and then, we compute the volume displacement.
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):
gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmg3d main.c -L$CMAKE_INSTALL_PREFIX/lib -L$SCOTCH_PATH -L$SUSCELAS_PATH -lmmg3d -lElas -lscotch -lscotcherr -lm
Example 2
Command line to link the application with the mmg3d shared library:
gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmg3d main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmg3dexport LD_LIBRARY_PATH=$CMAKE_INSTALL_PREFIX/lib:$LD_LIBRARY_PATH