mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-27 19:50:16 -06:00
Bugfix in RsSatAtContact: use min(), not max().
Also modified test to match output.
This commit is contained in:
parent
6ccc8d7bf8
commit
ad285d452c
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user