Skip to content
Snippets Groups Projects
Commit 84a40d4f authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[tutorial][ex3] update readme

parent afb32561
No related branches found
No related tags found
1 merge request!600[WIP][components][plotproperties] Add a source file to plot properties of some components
...@@ -126,19 +126,25 @@ Implement an incompressible component into the file `myincompressiblecomponent.h ...@@ -126,19 +126,25 @@ Implement an incompressible component into the file `myincompressiblecomponent.h
In order to do so, have a look at the file `dumux/material/components/component.hh` to see how the interfaces are defined and overload them accordingly. In order to do so, have a look at the file `dumux/material/components/component.hh` to see how the interfaces are defined and overload them accordingly.
Execute the program by changing to the build-directory In order to execute the program, change to the build-directory
```bash ```bash
cd build-cmake/tutorial/ex3 cd build-cmake/tutorial/ex3
``` ```
and by compiling the executable for part a Uncomment the line for the corresponding executable in the `CMakeLists.txt` file:
```cmake
dune_add_test(NAME ex3_a SOURCES ex3_a.cc)
```
Now you can compile and execute the program by typing
```bash ```bash
make ex3_a make ex3_a
``` ```
and by typing and
```bash ```bash
./ex3_a ex3_a.input ./ex3_a ex3_a.input
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment