Bugfix in RsSatAtContact: use min(), not max().

Also modified test to match output.
This commit is contained in:
Atgeirr Flø Rasmussen
2014-02-27 14:57:38 +01:00
parent 1c9675605c
commit d13bf03e1f
2 changed files with 4 additions and 4 deletions

View File

@@ -300,7 +300,7 @@ namespace Opm
operator()(const double /* depth */,
const double press) const
{
return std::max(satRs(press), rs_sat_contact_);
return std::min(satRs(press), rs_sat_contact_);
}
private: