From ba2cf97abf9ab85e010a2d330371084934ae53bf Mon Sep 17 00:00:00 2001 From: Simon Scholz <simon.scholz@iws.uni-stuttgart.de> Date: Thu, 12 Oct 2017 16:04:50 +0200 Subject: [PATCH] fix task 3 with correct function --- tutorial/ex2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/ex2/README.md b/tutorial/ex2/README.md index 8d62349c0c..83403e9405 100644 --- a/tutorial/ex2/README.md +++ b/tutorial/ex2/README.md @@ -61,7 +61,7 @@ DuMuX uses the term _material law_ to describe the law used to compute The file `mymateriallaw.hh` contains a custom implementation of such a material law. -* Implement the method `Scalar pc(Scalar sw)` by implementing your own capillary pressure relationship, e.g. a simple linear relationship $`p_C(S_w) = 1\cdot 10^5 \cdot (1-S_w) + p_e`$. +* Implement the method `Scalar pc(const Params ¶ms, Scalar swe)` by implementing your own capillary pressure relationship, e.g. a simple linear relationship $`p_C(S_w) = 1\cdot 10^5 \cdot (1-S_w) + p_e`$. Note: `MyMaterialLaw` uses the `BrooksCoreyParams` class as parameter input. You can get the entry pressure that is set in the spatial params as follows -- GitLab