mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-27 09:40:59 -06:00
398 lines
18 KiB
C++
398 lines
18 KiB
C++
/*
|
|
Copyright 2019 Norce.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef OPM_WELLGROUPHELPERS_HEADER_INCLUDED
|
|
#define OPM_WELLGROUPHELPERS_HEADER_INCLUDED
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Group/Group.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Group/GuideRate.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
|
|
#include <opm/simulators/utils/DeferredLogger.hpp>
|
|
#include <opm/simulators/utils/DeferredLoggingErrorHelpers.hpp>
|
|
#include <opm/simulators/wells/VFPProdProperties.hpp>
|
|
#include <opm/simulators/wells/WellStateFullyImplicitBlackoil.hpp>
|
|
#include <opm/simulators/wells/GroupState.hpp>
|
|
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <map>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <vector>
|
|
|
|
namespace Opm
|
|
{
|
|
|
|
|
|
namespace WellGroupHelpers
|
|
{
|
|
|
|
|
|
|
|
void setCmodeGroup(const Group& group,
|
|
const Schedule& schedule,
|
|
const SummaryState& summaryState,
|
|
const int reportStepIdx,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
GroupState& group_state);
|
|
|
|
void accumulateGroupEfficiencyFactor(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
double& factor);
|
|
|
|
double sumWellPhaseRates(const std::vector<double>& rates,
|
|
const Group& group,
|
|
const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const int reportStepIdx,
|
|
const int phasePos,
|
|
const bool injector);
|
|
|
|
double sumWellRates(const Group& group,
|
|
const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const int reportStepIdx,
|
|
const int phasePos,
|
|
const bool injector);
|
|
|
|
double sumWellResRates(const Group& group,
|
|
const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const int reportStepIdx,
|
|
const int phasePos,
|
|
const bool injector);
|
|
|
|
double sumSolventRates(const Group& group,
|
|
const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const int reportStepIdx,
|
|
const bool injector);
|
|
|
|
void updateGroupTargetReduction(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
const bool isInjector,
|
|
const PhaseUsage& pu,
|
|
const GuideRate& guide_rate,
|
|
const WellStateFullyImplicitBlackoil& wellStateNupcol,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
GroupState& group_state,
|
|
std::vector<double>& groupTargetReduction);
|
|
|
|
template <class Comm>
|
|
void updateGuideRateForProductionGroups(const Group& group,
|
|
const Schedule& schedule,
|
|
const PhaseUsage& pu,
|
|
const int reportStepIdx,
|
|
const double& simTime,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
const GroupState& group_state,
|
|
const Comm& comm,
|
|
GuideRate* guideRate,
|
|
std::vector<double>& pot)
|
|
{
|
|
const int np = pu.num_phases;
|
|
for (const std::string& groupName : group.groups()) {
|
|
std::vector<double> thisPot(np, 0.0);
|
|
const Group& groupTmp = schedule.getGroup(groupName, reportStepIdx);
|
|
|
|
// Note that group effiency factors for groupTmp are applied in updateGuideRateForGroups
|
|
updateGuideRateForProductionGroups(groupTmp, schedule, pu, reportStepIdx, simTime, wellState, group_state, comm, guideRate, thisPot);
|
|
|
|
// accumulate group contribution from sub group unconditionally
|
|
const auto currentGroupControl = group_state.production_control(groupName);
|
|
if (currentGroupControl != Group::ProductionCMode::FLD
|
|
&& currentGroupControl != Group::ProductionCMode::NONE) {
|
|
continue;
|
|
}
|
|
for (int phase = 0; phase < np; phase++) {
|
|
pot[phase] += thisPot[phase];
|
|
}
|
|
|
|
}
|
|
for (const std::string& wellName : group.wells()) {
|
|
const auto& wellTmp = schedule.getWell(wellName, reportStepIdx);
|
|
const auto wefac = wellTmp.getEfficiencyFactor();
|
|
|
|
if (wellTmp.isInjector())
|
|
continue;
|
|
|
|
if (wellTmp.getStatus() == Well::Status::SHUT)
|
|
continue;
|
|
const auto& end = wellState.wellMap().end();
|
|
const auto& it = wellState.wellMap().find(wellName);
|
|
if (it == end) // the well is not found
|
|
continue;
|
|
|
|
int well_index = it->second[0];
|
|
|
|
if (! wellState.wellIsOwned(well_index, wellName) ) // Only sum once
|
|
{
|
|
continue;
|
|
}
|
|
|
|
const auto wellrate_index = well_index * wellState.numPhases();
|
|
// add contribution from wells unconditionally
|
|
for (int phase = 0; phase < np; phase++) {
|
|
pot[phase] += wefac * wellState.wellPotentials()[wellrate_index + phase];
|
|
}
|
|
}
|
|
|
|
// Apply group efficiency factor for this goup
|
|
auto gefac = group.getGroupEfficiencyFactor();
|
|
|
|
for (int phase = 0; phase < np; phase++) {
|
|
pot[phase] *= gefac;
|
|
}
|
|
|
|
double oilPot = 0.0;
|
|
if (pu.phase_used[BlackoilPhases::Liquid])
|
|
oilPot = pot[pu.phase_pos[BlackoilPhases::Liquid]];
|
|
|
|
double gasPot = 0.0;
|
|
if (pu.phase_used[BlackoilPhases::Vapour])
|
|
gasPot = pot[pu.phase_pos[BlackoilPhases::Vapour]];
|
|
|
|
double waterPot = 0.0;
|
|
if (pu.phase_used[BlackoilPhases::Aqua])
|
|
waterPot = pot[pu.phase_pos[BlackoilPhases::Aqua]];
|
|
|
|
oilPot = comm.sum(oilPot);
|
|
gasPot = comm.sum(gasPot);
|
|
waterPot = comm.sum(waterPot);
|
|
guideRate->compute(group.name(), reportStepIdx, simTime, oilPot, gasPot, waterPot);
|
|
}
|
|
|
|
template <class Comm>
|
|
void updateGuideRatesForWells(const Schedule& schedule,
|
|
const PhaseUsage& pu,
|
|
const int reportStepIdx,
|
|
const double& simTime,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const Comm& comm,
|
|
GuideRate* guideRate)
|
|
{
|
|
|
|
const auto& end = wellState.wellMap().end();
|
|
for (const auto& well : schedule.getWells(reportStepIdx)) {
|
|
double oilpot = 0.0;
|
|
double gaspot = 0.0;
|
|
double waterpot = 0.0;
|
|
|
|
const auto& it = wellState.wellMap().find(well.name());
|
|
if (it != end && wellState.wellIsOwned(it->second[0], well.name()))
|
|
{
|
|
// the well is found and owned
|
|
int well_index = it->second[0];
|
|
|
|
const auto wpot = wellState.wellPotentials().data() + well_index * wellState.numPhases();
|
|
if (pu.phase_used[BlackoilPhases::Liquid] > 0)
|
|
oilpot = wpot[pu.phase_pos[BlackoilPhases::Liquid]];
|
|
|
|
if (pu.phase_used[BlackoilPhases::Vapour] > 0)
|
|
gaspot = wpot[pu.phase_pos[BlackoilPhases::Vapour]];
|
|
|
|
if (pu.phase_used[BlackoilPhases::Aqua] > 0)
|
|
waterpot = wpot[pu.phase_pos[BlackoilPhases::Aqua]];
|
|
}
|
|
oilpot = comm.sum(oilpot);
|
|
gaspot = comm.sum(gaspot);
|
|
waterpot = comm.sum(waterpot);
|
|
guideRate->compute(well.name(), reportStepIdx, simTime, oilpot, gaspot, waterpot);
|
|
}
|
|
}
|
|
|
|
void updateGuideRatesForInjectionGroups(const Group& group,
|
|
const Schedule& schedule,
|
|
const SummaryState& summaryState,
|
|
const Opm::PhaseUsage& pu,
|
|
const int reportStepIdx,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const GroupState& group_state,
|
|
GuideRate* guideRate,
|
|
Opm::DeferredLogger& deferred_logger);
|
|
|
|
void updateVREPForGroups(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
const WellStateFullyImplicitBlackoil& wellStateNupcol,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
GroupState& group_state);
|
|
|
|
void updateReservoirRatesInjectionGroups(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
const WellStateFullyImplicitBlackoil& wellStateNupcol,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
GroupState& group_state);
|
|
|
|
void updateWellRates(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
const WellStateFullyImplicitBlackoil& wellStateNupcol,
|
|
WellStateFullyImplicitBlackoil& wellState);
|
|
|
|
void updateGroupProductionRates(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
const WellStateFullyImplicitBlackoil& wellStateNupcol,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
GroupState& group_state);
|
|
|
|
void updateREINForGroups(const Group& group,
|
|
const Schedule& schedule,
|
|
const int reportStepIdx,
|
|
const PhaseUsage& pu,
|
|
const SummaryState& st,
|
|
const WellStateFullyImplicitBlackoil& wellStateNupcol,
|
|
WellStateFullyImplicitBlackoil& wellState,
|
|
GroupState& group_state);
|
|
|
|
std::map<std::string, double>
|
|
computeNetworkPressures(const Opm::Network::ExtNetwork& network,
|
|
const WellStateFullyImplicitBlackoil& well_state,
|
|
const GroupState& group_state,
|
|
const VFPProdProperties& vfp_prod_props,
|
|
const Schedule& schedule,
|
|
const int report_time_step);
|
|
|
|
GuideRate::RateVector
|
|
getWellRateVector(const WellStateFullyImplicitBlackoil& well_state, const PhaseUsage& pu, const std::string& name);
|
|
|
|
GuideRate::RateVector
|
|
getProductionGroupRateVector(const GroupState& group_state, const PhaseUsage& pu, const std::string& group_name);
|
|
|
|
double getGuideRate(const std::string& name,
|
|
const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const GroupState& group_state,
|
|
const int reportStepIdx,
|
|
const GuideRate* guideRate,
|
|
const GuideRateModel::Target target,
|
|
const PhaseUsage& pu);
|
|
|
|
|
|
double getGuideRateInj(const std::string& name,
|
|
const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const GroupState& group_state,
|
|
const int reportStepIdx,
|
|
const GuideRate* guideRate,
|
|
const GuideRateModel::Target target,
|
|
const Phase& injectionPhase,
|
|
const PhaseUsage& pu);
|
|
|
|
int groupControlledWells(const Schedule& schedule,
|
|
const WellStateFullyImplicitBlackoil& well_state,
|
|
const GroupState& group_state,
|
|
const int report_step,
|
|
const std::string& group_name,
|
|
const std::string& always_included_child,
|
|
const bool is_production_group,
|
|
const Phase injection_phase);
|
|
|
|
|
|
class FractionCalculator
|
|
{
|
|
public:
|
|
FractionCalculator(const Schedule& schedule,
|
|
const SummaryState& summary_state,
|
|
const WellStateFullyImplicitBlackoil& well_state,
|
|
const GroupState& group_state,
|
|
const int report_step,
|
|
const GuideRate* guide_rate,
|
|
const GuideRateModel::Target target,
|
|
const PhaseUsage& pu,
|
|
const bool is_producer,
|
|
const Phase injection_phase);
|
|
double fraction(const std::string& name, const std::string& control_group_name, const bool always_include_this);
|
|
double localFraction(const std::string& name, const std::string& always_included_child);
|
|
|
|
private:
|
|
std::string parent(const std::string& name);
|
|
double guideRateSum(const Group& group, const std::string& always_included_child);
|
|
double guideRate(const std::string& name, const std::string& always_included_child);
|
|
int groupControlledWells(const std::string& group_name, const std::string& always_included_child);
|
|
GuideRate::RateVector getGroupRateVector(const std::string& group_name);
|
|
const Schedule& schedule_;
|
|
const SummaryState& summary_state_;
|
|
const WellStateFullyImplicitBlackoil& well_state_;
|
|
const GroupState& group_state_;
|
|
int report_step_;
|
|
const GuideRate* guide_rate_;
|
|
GuideRateModel::Target target_;
|
|
PhaseUsage pu_;
|
|
bool is_producer_;
|
|
Phase injection_phase_;
|
|
};
|
|
|
|
|
|
std::pair<bool, double> checkGroupConstraintsInj(const std::string& name,
|
|
const std::string& parent,
|
|
const Group& group,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const GroupState& group_state,
|
|
const int reportStepIdx,
|
|
const GuideRate* guideRate,
|
|
const double* rates,
|
|
Phase injectionPhase,
|
|
const PhaseUsage& pu,
|
|
const double efficiencyFactor,
|
|
const Schedule& schedule,
|
|
const SummaryState& summaryState,
|
|
const std::vector<double>& resv_coeff,
|
|
DeferredLogger& deferred_logger);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<std::string> groupChainTopBot(const std::string& bottom,
|
|
const std::string& top,
|
|
const Schedule& schedule,
|
|
const int report_step);
|
|
|
|
|
|
|
|
|
|
std::pair<bool, double> checkGroupConstraintsProd(const std::string& name,
|
|
const std::string& parent,
|
|
const Group& group,
|
|
const WellStateFullyImplicitBlackoil& wellState,
|
|
const GroupState& group_state,
|
|
const int reportStepIdx,
|
|
const GuideRate* guideRate,
|
|
const double* rates,
|
|
const PhaseUsage& pu,
|
|
const double efficiencyFactor,
|
|
const Schedule& schedule,
|
|
const SummaryState& summaryState,
|
|
const std::vector<double>& resv_coeff,
|
|
DeferredLogger& deferred_logger);
|
|
|
|
|
|
} // namespace WellGroupHelpers
|
|
|
|
} // namespace Opm
|
|
|
|
#endif
|