Table Output: Revise TOLCRIT Interpretation
This commit switches the previous interpretation of notionally zero relative permeability in Flow's .INIT-file output. We now treat all relative permeability values less than *or equal to* TOLCRIT as zero. This change is for increased ECLIPSE compatibility.
This commit is contained in:
@@ -232,7 +232,7 @@ namespace { namespace SatFunc {
|
||||
std::transform(begin, end, dest,
|
||||
[tolcrit](const double kr) -> double
|
||||
{
|
||||
return (kr < tolcrit) ? 0.0 : kr;
|
||||
return (kr > tolcrit) ? kr : 0.0;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user