This module contains Advection-Diffusion-Reaction application built using the IFEM library.
- Install IFEM from https://github.com/OPM/IFEM
This is done by first navigating to the folder in which you want IFEM installed and typing
mkdir Apps
cd Apps
git clone https://github.com/OPM/IFEM-AdvectionDiffusion
To compile, first navigate to the root catalogue <App root>.
cd <App root>mkdir Debugcd Debugcmake -DCMAKE_BUILD_TYPE=Debug ..make
this will compile the AdvectionDiffusion application.
The binaries can be found in the 'bin' subfolder.
Change all instances of Debug with Release to drop debug-symbols,
but get faster running code.
IFEM is using cmake test system. To compile run all regression- and unit-tests, navigate to your build
folder (i.e. <App root>/Debug) and type
make check