mfem

C++ library for finite element method simulations and analysis

brewmacoslinux
Try with needOr install directly
Source

About

Free, lightweight, scalable C++ library for FEM

Commands

mfem

Examples

Compile a finite element program using MFEM library headers and linking$ g++ -I$(brew --prefix mfem)/include myprogram.cpp -L$(brew --prefix mfem)/lib -lmfem -o myprogram
Access MFEM example files and documentation from installation$ ls $(brew --prefix mfem)/share/mfem/examples/
Include MFEM in CMake project configuration$ cmake -DMFEM_DIR=$(brew --prefix mfem) ..