mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Allow up to factor 3 extrapolation in VFP.
This commit is contained in:
parent
c21428419a
commit
f55c9647b7
@ -258,6 +258,10 @@ inline InterpData findInterpData(const double& value_in, const std::vector<doubl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (retval.factor_ > 3.0) {
|
||||||
|
retval.factor_ = 3.0;
|
||||||
|
}
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user