mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fix GPMAINT for groups without control
If GPMAINT is used the group does not need a valid control object
This commit is contained in:
parent
c5be1226d7
commit
ceb8d996aa
@ -95,29 +95,35 @@ RateType TargetCalculator::calcModeRateFromRates(const RateType* rates) const
|
||||
}
|
||||
}
|
||||
|
||||
double TargetCalculator::groupTarget(const Group::ProductionControls ctrl) const
|
||||
double TargetCalculator::groupTarget(const std::optional<Group::ProductionControls>& ctrl, Opm::DeferredLogger& deferred_logger) const
|
||||
{
|
||||
if (!ctrl && !use_gpmaint_) {
|
||||
OPM_DEFLOG_THROW(std::logic_error,
|
||||
"Production group " + this->group_name_
|
||||
+ "must either have a valid control or use GPMAINT",
|
||||
deferred_logger);
|
||||
}
|
||||
switch (cmode_) {
|
||||
case Group::ProductionCMode::ORAT:
|
||||
return ctrl.oil_target;
|
||||
return ctrl->oil_target;
|
||||
case Group::ProductionCMode::WRAT:
|
||||
return ctrl.water_target;
|
||||
return ctrl->water_target;
|
||||
case Group::ProductionCMode::GRAT:
|
||||
{
|
||||
// gas target may have been adjusted by GCONSALE
|
||||
if ( group_grat_target_from_sales_ > 0)
|
||||
return group_grat_target_from_sales_;
|
||||
|
||||
return ctrl.gas_target;
|
||||
return ctrl->gas_target;
|
||||
}
|
||||
case Group::ProductionCMode::LRAT:
|
||||
return ctrl.liquid_target;
|
||||
return ctrl->liquid_target;
|
||||
case Group::ProductionCMode::RESV:
|
||||
{
|
||||
if(use_gpmaint_)
|
||||
if(use_gpmaint_ && this->group_state_.has_gpmaint_target(this->group_name_))
|
||||
return this->group_state_.gpmaint_target(this->group_name_);
|
||||
|
||||
return ctrl.resv_target;
|
||||
return ctrl->resv_target;
|
||||
}
|
||||
default:
|
||||
// Should never be here.
|
||||
@ -192,34 +198,40 @@ InjectionTargetCalculator::InjectionTargetCalculator(const Group::InjectionCMode
|
||||
}
|
||||
|
||||
|
||||
double InjectionTargetCalculator::groupTarget(const Group::InjectionControls& ctrl, Opm::DeferredLogger& deferred_logger) const
|
||||
double InjectionTargetCalculator::groupTarget(const std::optional<Group::InjectionControls>& ctrl, Opm::DeferredLogger& deferred_logger) const
|
||||
{
|
||||
if (!ctrl && !use_gpmaint_) {
|
||||
OPM_DEFLOG_THROW(std::logic_error,
|
||||
"Injection group " + this->group_name_
|
||||
+ "must either have a valid control or use GPMAINT",
|
||||
deferred_logger);
|
||||
}
|
||||
switch (cmode_) {
|
||||
case Group::InjectionCMode::RATE:
|
||||
if(use_gpmaint_ && this->group_state_.has_gpmaint_target(this->group_name_))
|
||||
return this->group_state_.gpmaint_target(this->group_name_);
|
||||
|
||||
return ctrl.surface_max_rate;
|
||||
return ctrl->surface_max_rate;
|
||||
case Group::InjectionCMode::RESV:
|
||||
if(use_gpmaint_ && this->group_state_.has_gpmaint_target(this->group_name_))
|
||||
return this->group_state_.gpmaint_target(this->group_name_) / resv_coeff_[pos_];
|
||||
|
||||
return ctrl.resv_max_rate / resv_coeff_[pos_];
|
||||
return ctrl->resv_max_rate / resv_coeff_[pos_];
|
||||
case Group::InjectionCMode::REIN: {
|
||||
double production_rate = this->group_state_.injection_rein_rates(ctrl.reinj_group)[pos_];
|
||||
return ctrl.target_reinj_fraction * production_rate;
|
||||
double production_rate = this->group_state_.injection_rein_rates(ctrl->reinj_group)[pos_];
|
||||
return ctrl->target_reinj_fraction * production_rate;
|
||||
}
|
||||
case Group::InjectionCMode::VREP: {
|
||||
const std::vector<double>& group_injection_reductions = this->group_state_.injection_reduction_rates(this->group_name_);
|
||||
double voidage_rate = group_state_.injection_vrep_rate(ctrl.voidage_group) * ctrl.target_void_fraction;
|
||||
double voidage_rate = group_state_.injection_vrep_rate(ctrl->voidage_group) * ctrl->target_void_fraction;
|
||||
double inj_reduction = 0.0;
|
||||
if (ctrl.phase != Phase::WATER)
|
||||
if (ctrl->phase != Phase::WATER)
|
||||
inj_reduction += group_injection_reductions[pu_.phase_pos[BlackoilPhases::Aqua]]
|
||||
* resv_coeff_[pu_.phase_pos[BlackoilPhases::Aqua]];
|
||||
if (ctrl.phase != Phase::OIL)
|
||||
if (ctrl->phase != Phase::OIL)
|
||||
inj_reduction += group_injection_reductions[pu_.phase_pos[BlackoilPhases::Liquid]]
|
||||
* resv_coeff_[pu_.phase_pos[BlackoilPhases::Liquid]];
|
||||
if (ctrl.phase != Phase::GAS)
|
||||
if (ctrl->phase != Phase::GAS)
|
||||
inj_reduction += group_injection_reductions[pu_.phase_pos[BlackoilPhases::Vapour]]
|
||||
* resv_coeff_[pu_.phase_pos[BlackoilPhases::Vapour]];
|
||||
voidage_rate -= inj_reduction;
|
||||
|
@ -59,7 +59,7 @@ namespace WellGroupHelpers
|
||||
template <typename RateType>
|
||||
RateType calcModeRateFromRates(const RateType* rates) const;
|
||||
|
||||
double groupTarget(const Group::ProductionControls ctrl) const;
|
||||
double groupTarget(const std::optional<Group::ProductionControls>& ctrl, Opm::DeferredLogger& deferred_logger) const;
|
||||
|
||||
GuideRateModel::Target guideTargetMode() const;
|
||||
|
||||
@ -94,7 +94,7 @@ namespace WellGroupHelpers
|
||||
return rates[pos_];
|
||||
}
|
||||
|
||||
double groupTarget(const Group::InjectionControls& ctrl, Opm::DeferredLogger& deferred_logger) const;
|
||||
double groupTarget(const std::optional<Group::InjectionControls>& ctrl, Opm::DeferredLogger& deferred_logger) const;
|
||||
|
||||
GuideRateModel::Target guideTargetMode() const;
|
||||
|
||||
|
@ -164,7 +164,8 @@ assembleControlEqProd(const WellState& well_state,
|
||||
bhp, active_rates,
|
||||
rCoeff,
|
||||
efficiencyFactor,
|
||||
control_eq);
|
||||
control_eq,
|
||||
deferred_logger);
|
||||
break;
|
||||
}
|
||||
case Well::ProducerCMode::CMODE_UNDEFINED: {
|
||||
|
@ -154,8 +154,11 @@ getGroupInjectionControl(const Group& group,
|
||||
return tcalc.calcModeRateFromRates(groupTargetReductions);
|
||||
};
|
||||
|
||||
const double orig_target = tcalc.groupTarget(group.injectionControls(injectionPhase,
|
||||
summaryState),
|
||||
std::optional<Group::InjectionControls> ctrl;
|
||||
if (!group.has_gpmaint_control(injectionPhase, currentGroupControl))
|
||||
ctrl = group.injectionControls(injectionPhase, summaryState);
|
||||
|
||||
const double orig_target = tcalc.groupTarget(ctrl,
|
||||
deferred_logger);
|
||||
const auto chain = WellGroupHelpers::groupChainTopBot(well_.name(), group.name(),
|
||||
schedule, well_.currentStep());
|
||||
@ -213,7 +216,6 @@ getGroupInjectionTargetRate(const Group& group,
|
||||
// Should not be here.
|
||||
assert(false);
|
||||
}
|
||||
|
||||
auto currentGroupControl = group_state.injection_control(group.name(), injectionPhase);
|
||||
if (currentGroupControl == Group::InjectionCMode::FLD ||
|
||||
currentGroupControl == Group::InjectionCMode::NONE) {
|
||||
@ -273,7 +275,12 @@ getGroupInjectionTargetRate(const Group& group,
|
||||
return tcalc.calcModeRateFromRates(groupTargetReductions);
|
||||
};
|
||||
|
||||
const double orig_target = tcalc.groupTarget(group.injectionControls(injectionPhase, summaryState), deferred_logger);
|
||||
std::optional<Group::InjectionControls> ctrl;
|
||||
if (!group.has_gpmaint_control(injectionPhase, currentGroupControl))
|
||||
ctrl = group.injectionControls(injectionPhase, summaryState);
|
||||
|
||||
const double orig_target = tcalc.groupTarget(ctrl, deferred_logger);
|
||||
|
||||
const auto chain = WellGroupHelpers::groupChainTopBot(well_.name(), group.name(), schedule, well_.currentStep());
|
||||
// Because 'name' is the last of the elements, and not an ancestor, we subtract one below.
|
||||
const size_t num_ancestors = chain.size() - 1;
|
||||
@ -300,7 +307,8 @@ void WellGroupControls::getGroupProductionControl(const Group& group,
|
||||
const std::vector<EvalWell>& rates,
|
||||
const RateConvFunc& rateConverter,
|
||||
double efficiencyFactor,
|
||||
EvalWell& control_eq) const
|
||||
EvalWell& control_eq,
|
||||
DeferredLogger& deferred_logger) const
|
||||
{
|
||||
const Group::ProductionCMode& currentGroupControl = group_state.production_control(group.name());
|
||||
if (currentGroupControl == Group::ProductionCMode::FLD ||
|
||||
@ -324,7 +332,7 @@ void WellGroupControls::getGroupProductionControl(const Group& group,
|
||||
getGroupProductionControl(parent, well_state, group_state,
|
||||
schedule, summaryState, bhp,
|
||||
rates, rateConverter,
|
||||
efficiencyFactor, control_eq);
|
||||
efficiencyFactor, control_eq, deferred_logger);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -371,7 +379,11 @@ void WellGroupControls::getGroupProductionControl(const Group& group,
|
||||
return tcalc.calcModeRateFromRates(groupTargetReductions);
|
||||
};
|
||||
|
||||
const double orig_target = tcalc.groupTarget(group.productionControls(summaryState));
|
||||
std::optional<Group::ProductionControls> ctrl;
|
||||
if (!group.has_gpmaint_control(currentGroupControl))
|
||||
ctrl = group.productionControls(summaryState);
|
||||
|
||||
const double orig_target = tcalc.groupTarget(ctrl, deferred_logger);
|
||||
const auto chain = WellGroupHelpers::groupChainTopBot(well_.name(), group.name(),
|
||||
schedule, well_.currentStep());
|
||||
// Because 'name' is the last of the elements, and not an ancestor, we subtract one below.
|
||||
@ -399,7 +411,8 @@ getGroupProductionTargetRate(const Group& group,
|
||||
const Schedule& schedule,
|
||||
const SummaryState& summaryState,
|
||||
const RateConvFunc& rateConverter,
|
||||
double efficiencyFactor) const
|
||||
double efficiencyFactor,
|
||||
DeferredLogger& deferred_logger) const
|
||||
{
|
||||
const Group::ProductionCMode& currentGroupControl = group_state.production_control(group.name());
|
||||
if (currentGroupControl == Group::ProductionCMode::FLD ||
|
||||
@ -412,7 +425,8 @@ getGroupProductionTargetRate(const Group& group,
|
||||
efficiencyFactor *= group.getGroupEfficiencyFactor();
|
||||
return getGroupProductionTargetRate(parent, well_state, group_state,
|
||||
schedule, summaryState,
|
||||
rateConverter, efficiencyFactor);
|
||||
rateConverter, efficiencyFactor,
|
||||
deferred_logger);
|
||||
}
|
||||
}
|
||||
|
||||
@ -451,7 +465,11 @@ getGroupProductionTargetRate(const Group& group,
|
||||
return tcalc.calcModeRateFromRates(groupTargetReductions);
|
||||
};
|
||||
|
||||
const double orig_target = tcalc.groupTarget(group.productionControls(summaryState));
|
||||
std::optional<Group::ProductionControls> ctrl;
|
||||
if (!group.has_gpmaint_control(currentGroupControl))
|
||||
ctrl = group.productionControls(summaryState);
|
||||
|
||||
const double orig_target = tcalc.groupTarget(ctrl, deferred_logger);
|
||||
const auto chain = WellGroupHelpers::groupChainTopBot(well_.name(), group.name(),
|
||||
schedule, well_.currentStep());
|
||||
// Because 'name' is the last of the elements, and not an ancestor, we subtract one below.
|
||||
@ -505,7 +523,8 @@ getGroupProductionControl<__VA_ARGS__>(const Group&, \
|
||||
const std::vector<__VA_ARGS__>&, \
|
||||
const RateConvFunc& rateConverter, \
|
||||
double efficiencyFactor, \
|
||||
__VA_ARGS__& control_eq) const;
|
||||
__VA_ARGS__& control_eq, \
|
||||
DeferredLogger& deferred_logger) const; \
|
||||
|
||||
INSTANCE(DenseAd::Evaluation<double,3,0u>)
|
||||
INSTANCE(DenseAd::Evaluation<double,4,0u>)
|
||||
|
@ -84,7 +84,8 @@ public:
|
||||
const std::vector<EvalWell>& rates,
|
||||
const RateConvFunc& rateConverter,
|
||||
double efficiencyFactor,
|
||||
EvalWell& control_eq) const;
|
||||
EvalWell& control_eq,
|
||||
DeferredLogger& deferred_logger) const;
|
||||
|
||||
double getGroupProductionTargetRate(const Group& group,
|
||||
const WellState& well_state,
|
||||
@ -92,7 +93,8 @@ public:
|
||||
const Schedule& schedule,
|
||||
const SummaryState& summaryState,
|
||||
const RateConvFunc& rateConverter,
|
||||
double efficiencyFactor) const;
|
||||
double efficiencyFactor,
|
||||
DeferredLogger& deferred_logger) const;
|
||||
|
||||
private:
|
||||
const WellInterfaceGeneric& well_; //!< Reference to well interface
|
||||
|
@ -742,7 +742,6 @@ namespace WellGroupHelpers
|
||||
default:
|
||||
throw std::invalid_argument("Invalid Flow target type in GPMAINT");
|
||||
}
|
||||
|
||||
auto& gpmaint_state = group_state.gpmaint(group.name());
|
||||
double rate = gpm->rate(gpmaint_state, current_rate, error, dt);
|
||||
group_state.update_gpmaint_target(group.name(), std::max(0.0, sign * rate));
|
||||
@ -1266,7 +1265,12 @@ namespace WellGroupHelpers
|
||||
const std::vector<double>& groupSurfaceRates = group_state.production_rates(group_name);
|
||||
return tcalc.calcModeRateFromRates(groupSurfaceRates);
|
||||
};
|
||||
const double orig_target = tcalc.groupTarget(group.productionControls(summaryState));
|
||||
|
||||
std::optional<Group::ProductionControls> ctrl;
|
||||
if (!group.has_gpmaint_control(currentGroupControl))
|
||||
ctrl = group.productionControls(summaryState);
|
||||
|
||||
const double orig_target = tcalc.groupTarget(ctrl, deferred_logger);
|
||||
// Assume we have a chain of groups as follows: BOTTOM -> MIDDLE -> TOP.
|
||||
// Then ...
|
||||
// TODO finish explanation.
|
||||
@ -1408,7 +1412,12 @@ namespace WellGroupHelpers
|
||||
return tcalc.calcModeRateFromRates(groupSurfaceRates);
|
||||
};
|
||||
|
||||
const double orig_target = tcalc.groupTarget(group.injectionControls(injectionPhase, summaryState), deferred_logger);
|
||||
std::optional<Group::InjectionControls> ctrl;
|
||||
if (!group.has_gpmaint_control(injectionPhase, currentGroupControl))
|
||||
ctrl = group.injectionControls(injectionPhase, summaryState);
|
||||
|
||||
|
||||
const double orig_target = tcalc.groupTarget(ctrl, deferred_logger);
|
||||
// Assume we have a chain of groups as follows: BOTTOM -> MIDDLE -> TOP.
|
||||
// Then ...
|
||||
// TODO finish explanation.
|
||||
|
@ -189,7 +189,8 @@ getGroupProductionTargetRate(const Group& group,
|
||||
const GroupState& group_state,
|
||||
const Schedule& schedule,
|
||||
const SummaryState& summaryState,
|
||||
double efficiencyFactor) const
|
||||
double efficiencyFactor,
|
||||
DeferredLogger& deferred_logger) const
|
||||
{
|
||||
auto rCoeff = [this](const int id, const int region, std::vector<double>& coeff)
|
||||
{
|
||||
@ -199,7 +200,8 @@ getGroupProductionTargetRate(const Group& group,
|
||||
return WellGroupControls(*this).getGroupProductionTargetRate(group, well_state,
|
||||
group_state, schedule,
|
||||
summaryState,
|
||||
rCoeff, efficiencyFactor);
|
||||
rCoeff, efficiencyFactor,
|
||||
deferred_logger);
|
||||
}
|
||||
|
||||
template class WellInterfaceFluidSystem<BlackOilFluidSystem<double,BlackOilDefaultIndexTraits>>;
|
||||
|
@ -109,7 +109,8 @@ protected:
|
||||
const GroupState& group_state,
|
||||
const Schedule& schedule,
|
||||
const SummaryState& summaryState,
|
||||
double efficiencyFactor) const;
|
||||
double efficiencyFactor,
|
||||
DeferredLogger& deferred_logger) const;
|
||||
|
||||
// For the conversion between the surface volume rate and reservoir voidage rate
|
||||
const RateConverterType& rateConverter_;
|
||||
|
@ -1049,7 +1049,8 @@ namespace Opm
|
||||
group_state,
|
||||
schedule,
|
||||
summaryState,
|
||||
efficiencyFactor);
|
||||
efficiencyFactor,
|
||||
deferred_logger);
|
||||
|
||||
// we don't want to scale with zero and get zero rates.
|
||||
if (scale > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user