Use explicit rates as fallback for small FLO

This commit is contained in:
Stein Krogstad 2023-05-21 19:54:52 +02:00
parent 5212d20a96
commit ab98e477c4

View File

@ -161,7 +161,7 @@ EvalWell VFPProdProperties::bhp(const int table_id,
EvalWell flo = detail::getFlo(table, aqua, liquid, vapour);
EvalWell wfr = detail::getWFR(table, aqua, liquid, vapour);
EvalWell gfr = detail::getGFR(table, aqua, liquid, vapour);
if (use_expvfp) {
if (use_expvfp || -flo.value() < table.getFloAxis().front()) {
wfr = explicit_wfr;
gfr = explicit_gfr;
}