diff --git a/tutorial/ex2/README.md b/tutorial/ex2/README.md index 8d62349c0c0910ac69bc67ecede3d196d9ff9ff8..83403e9405511b0896b4f993d0d661e5f815e79b 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