Skip to content
Snippets Groups Projects
Name Last commit Last update
..
README.md
install.sh
test_dumux.sh

DuMux course useful scripts

The install script is a shell script that will setup DuMux on your computer in the version that is required to complete the current course's exercises.

Installation guide dumux

You can set up dumux using the attached script install.sh. You need to have the following REQUIREMENTS installed:

  • gcc >= 7
  • cmake >= 3.1
  • git
  • pkg-config
  • paraview (to visualize the results)
  • gnuplot (to plot some curves)
  • wget (to download some config files during the installation)

On debian-based system you can use this:

  apt-get install build-essential gfortran pkg-config cmake git paraview wget gnuplot libsuitesparse-dev

Then, you can the execute the script and it will download the dune repositories and dumux and configure all modules with CMake

  wget https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/-/raw/master/scripts/install.sh
  chmod a+x install.sh
  ./install.sh

This will clone the necessary repositories (in a subfolder DUMUX) and build all libaries.

Run the script test_dumux.sh in the newly created dumux folder to test your installation of dumux.

  ./test_dumux.sh

It will compile and run a simple one-phase ground water flow example and visualizes the result using paraview.

  • you can also click here to view and download the install script