diff --git a/README.md b/README.md index e13295bab16279b20f8bc09215bd15cd8b1b9f9a..11e5f094b921dc58080e4d823fc3701a2a9f4d5c 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,11 @@ -# DuMuX-preCICE coupling +# DuMuX-preCICE adapter This repository provides a [DuMuX](https://dumux.org/)-specific adapter to couple to other codes using [preCICE](https://www.precice.org/). You can find the source code of this adapter [on the IWS GitLab](https://git.iws.uni-stuttgart.de/dumux-appl/dumux-precice). -## Prerequisites - -- DuMuX **newer** than 3.2 - - Builds using the current `master` branch of DuMuX might fail. -- preCICE >=2.0.0 - - The adapter is build via the DUNE build system that is based on CMake. Thus, the CMake [link instructions for preCICE](https://precice.org/installation-linking.html#cmake) apply. - ## Structure of the repository +Note that this repository is a [DUNE module](https://www.dune-project.org/) and thus some parts of the repository structure are given by the typical DUNE module layout. + - `cmake/`: Contains CMake modules for building the adapter. Under normal circumstances you do not need - `examples/`: Contains examples on how to couple different domains. Some of the examples are taken from DuMuX or are slightly adapted from DuMuX test cases or tutorials. Please check the `README.md` file in this directory and corresponding subdirectories to find further explanations of the examples. Additional examples can be found in the `test/` directory. - `doc/`: Additional documentation. @@ -18,21 +13,73 @@ This repository provides a [DuMuX](https://dumux.org/)-specific adapter to coupl - `scripts/`: Contains useful scripts to run simulations and for checking the code's formatting. - `test/`: Contains test cases and reference solutions (`reference-solutions/`). Test cases as divided into `monolithic/` and `partitioned` (=preCICE) test cases. The directory also contains several DUNE configuration files (`.opts` files) for configuring the project. -## Running tests +## Installation + +The DuMuX-preCICE adapter is a DUNE module named `dumux-precice` which can be build using the [DUNE build system](https://www.dune-project.org/doc/installation/). The DUNE build system is build on top of CMake and comes with various tools that make installation and management of DUNE modules easier. Therefore, it is recommended to install `dumux-precice` using `dunecontrol`. Please check out the [DUNE installation instructions](https://www.dune-project.org/doc/installation/) to get an overview over the `dunecontrol` tools and how DUNE modules work. + +### Prerequisites + +- DuMuX **newer** than 3.2 + + - Builds using the current `master` branch of DuMuX might fail. + - If you run into trouble with a new DuMuX release, please open an issue in the repository and add the error message that you receive. + +- preCICE >=2.0.0 + + - The adapter is build via the DUNE build system that is based on CMake. Thus, the CMake [link instructions for preCICE](https://precice.org/installation-linking.html#cmake) apply. + +- `wget` or `git` to download the DuMuX-preCICE adapter. +- Optional: [`dune-subgrid`](https://www.dune-project.org/modules/dune-subgrid/) allows for modified grid geometries. + +The DuMuX-preCICE adapter should build fine if DuMuX, preCICE and their dependencies are installed. + +### Detailed installation steps + +1. Install [DuMuX](https://dumux.org/) and the needed dependencies. The easiest way is to follow [DuMuX's installation instructions](https://dumux.org/installation/). The DuMuX project provides a script that installs and DuMuX and the DUNE modules required by DuMuX. This means, after installing DuMuX via the provided script you should be good to go to use the DuMuX-preCICE adapter. -1. Configure the DUNE module + After the installation you should have a root directory that contains the base DUNE modules, i.e. a number of directories named like `dune-common`, `dune-geometry` etc., and a directory called `dumux`. + + - Note that extended features of DuMuX or the DuMuX-preCICE adapter may need additional DUNE modules. + +2. Download the DuMuX-preCICE adapter to the same directory as the DUNE modules and the `dumux` folder. At the moment there are no adapter releases, besides an outdated `v0.1` release, such the best way is to checkout the `develop` branch of the adapter. + + ```text + git clone -b develop https://git.iws.uni-stuttgart.de/dumux-appl/dumux-precice.git + ``` + + You can also try to clone the repository via SSH: + + ```text + git clone -b develop git@git.iws.uni-stuttgart.de:dumux-appl/dumux-precice.git + ``` + +3. Verify that the `dumux-precice` folder is in the same directory as the DUNE module folders and the `dumux` folder. + +4. Build and configure the adapter using `dunecontrol`. While being in the directory mentioned in the previous step via calling + + ```text + dunecontrol --only=dumux-precice all + ``` + + After the build and configure step a new directory `build-cmake` was created inside the `dumux-precice` directory. + + You can configure the build and configuration process using advanced options by manipulating CMake variables. `dunecontrol` allows to pass an options file for that ```bash dunecontrol --opts=OPTSFILE.opts --only=dumux-precice all ``` - You may use one of the `opts`-file provided by the adapter that resides in `test/`, e.g., + There is an `opts`-file provided by the adapter that resides in `test/`. You can use it as ```bash dunecontrol --opts=dumux-precice/test/cmake-test.opts --only=dumux-precice all ``` -2. Build all test. For this navigate in the `build-cmake/` directory and build the `build_tests` target. + This provided `cmake-test.opts` file turns off some system-dependent optimizations such that the tests create comparable results on different computers. + + For more ways do manipulate/adapt the build and configuration step, please consult the `dunecontrol` documentation. + +5. Optional, but recommended: Build all tests to verify the installation. For this navigate in the `build-cmake/` directory and build the `build_tests` target. ```bash cd dumux-precice/build-cmake @@ -41,12 +88,16 @@ This repository provides a [DuMuX](https://dumux.org/)-specific adapter to coupl You may speed up the build process by using more than one build job, e.g., use `make -j4` in order to build with for processes at the same time. -3. Run the tests from the `build-cmake` directory + Afterwards you can run the tests from the `build-cmake` directory using ```bash ctest ``` + If any tests fails, you should verify if something went wrong with the installation. + +There are advanced ways of managing DUNE modules, e.g. using the environment variable `DUNE_CONTROL_PATH`, that are beyond the scope of this short documentation. You can find more information in the [DUNE FAQ](https://www.dune-project.org/doc/installation/#faq). + ## Documentation ### User documentation @@ -66,11 +117,11 @@ This generates a HTML documentation which you can view in a browser of your choi ## Publications -### How to cite this code? +### How to cite this code There is no publication related to this code available yet. ### Publications using dumux-precice - Jaust A., Weishaupt K., Mehl M., Flemisch B. (2020) Partitioned Coupling Schemes for Free-Flow and Porous-Media Applications with Sharp Interfaces. In: Klöfkorn R., Keilegavlen E., Radu F., Fuhrmann J. (eds) Finite Volumes for Complex Applications IX - Methods, Theoretical Aspects, Examples. FVCA 2020. Springer Proceedings in Mathematics & Statistics, vol 323. Springer, Cham. <https://doi.org/10.1007/978-3-030-43651-3_57> - - Code can be found at: https://git.iws.uni-stuttgart.de/dumux-pub/jaust2020a + - Code can be found at: <https://git.iws.uni-stuttgart.de/dumux-pub/jaust2020a>