diff --git a/dumux/material/components/brine.hh b/dumux/material/components/brine.hh index 675a34224b20792115a7b3140f571bb100402be3..492cee03f5a75e14620e21cf34114e4e088e970f 100644 --- a/dumux/material/components/brine.hh +++ b/dumux/material/components/brine.hh @@ -123,7 +123,7 @@ public: Scalar pi = 0; using std::log; if (ThisType::salinity() < 0.26) // here we have hard coded the solubility limit for NaCl - pi = (R * temperature * log(1- ThisType::salinity())); // simplified version of Eq 2.29 in Vishal Jambhekar's Promo + pi = (R * temperature * log(1- ThisType::salinity())); // simplified version of Eq 2.29 in Vishal Jambhekar's dissertation (http://dx.doi.org/10.18419/opus-8979) else pi = (R * temperature * log(0.74)); using std::exp;