N2 is injected in an aquifer previously saturated with water with an injection rate of $`0.001~kg/m*s`$.
The aquifer is situated 2700 m below see level and the domain size is 60 m x 40 m. It consists of two layers, a moderately permeable one ($`\Omega 1`$) and a lower permeable one ($`\Omega 2`$).
`<TYPE>`,`<GROUPNAME>`,`<PARAMNAME>` by what is appropriate for your case:
*`<TYPE>` is the type of the parameter to read
...
...
@@ -81,16 +88,21 @@ Again, you don't need to recompile the program.
### 5. Setting up a new executable (for a non-isothermal simulation)
* Set up a new cc file called `exercise1_2pni.cc` by copying and renaming `exercise1_2p.cc`
```bash
cp exercise1_2p.cc exercise1_2pni.cc
```
* In `exercise1_2pni.cc`, include the header `injection2pniproblem.hh` instead of the isothermal problem file `injection2pproblem.hh`.
* Add a new executable in `CMakeLists.txt` by adding the lines
```cmake
dune_add_test(NAME injection2pniproblem
SOURCES injection2pniproblem.cc)
```
* Test that everything compiles without error
```bash
make # should rerun cmake
make injection2pniproblem # builds new executable
...
...
@@ -99,15 +111,17 @@ make injection2pniproblem # builds new executable
### 6. Setting up a non-isothermal __2pni__ test problem
* Open the file `injection2pniproblem.hh`. It is a copy of the `injection2pproblem.hh` with some useful comments on how to implement a non-isothermal model. Look for comments containing
```c++
// TODO: dumux-course-task
```
* The following set-up should be realized:
__Boundary conditions:__ Dirichlet conditions for the temperature with a temperature gradient of 0.03 K/m and a starting temperature of 283 K.
__Initial conditions:__ The same temperature gradient as in the boundary conditions with an additional lens (with position: 20 < x < 30, 5 < y < 35), which has an initial temperature of 380 K.
The non-isothermal model requires additional spatial parameters like the thermal conductivity. They are already implemented in `injection2pspatialparams.hh`, you just need to _uncomment_ them.