Merge pull request #4549 from totto82/resv_undersat

fix RESV for undersaturated wells
This commit is contained in:
Bård Skaflestad
2023-03-29 10:35:33 +02:00
committed by GitHub
14 changed files with 111 additions and 39 deletions

View File

@@ -1859,9 +1859,10 @@ namespace Opm {
BlackoilWellModel<TypeTag>::
calcRates(const int fipnum,
const int pvtreg,
const std::vector<double>& production_rates,
std::vector<double>& resv_coeff)
{
rateConverter_->calcCoeff(fipnum, pvtreg, resv_coeff);
rateConverter_->calcCoeff(fipnum, pvtreg, production_rates, resv_coeff);
}
template<typename TypeTag>