changed: put calculation of vaporized and dissolved water volume ratio in separate method

This commit is contained in:
Arne Morten Kvarving
2023-05-05 14:22:56 +02:00
parent 516320699e
commit fdfd181629
2 changed files with 48 additions and 20 deletions

View File

@@ -479,6 +479,15 @@ namespace Opm
PerforationRates& perf_rates,
const Value& rvw,
const Value& rsw) const;
template<class Value>
void disOilVapWatVolumeRatio(Value& volumeRatio,
const Value& rvw,
const Value& rsw,
const Value& pressure,
const std::vector<Value>& cmix_s,
const std::vector<Value>& b_perfcells_dense,
DeferredLogger& deferred_logger) const;
};
}