2017-08-17 15:49:54 +02:00
|
|
|
/*
|
|
|
|
|
Copyright 2017 SINTEF Digital, Mathematics and Cybernetics.
|
|
|
|
|
Copyright 2017 Statoil ASA.
|
|
|
|
|
|
|
|
|
|
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_MULTISEGMENTWELL_HEADER_INCLUDED
|
|
|
|
|
#define OPM_MULTISEGMENTWELL_HEADER_INCLUDED
|
|
|
|
|
|
2019-05-07 13:06:02 +02:00
|
|
|
#include <opm/simulators/wells/WellInterface.hpp>
|
2021-06-03 15:34:14 +02:00
|
|
|
#include <opm/simulators/wells/MultisegmentWellEval.hpp>
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2021-12-14 08:30:15 +01:00
|
|
|
#include <opm/input/eclipse/EclipseState/Runspec.hpp>
|
2020-11-06 21:13:10 +01:00
|
|
|
|
2017-08-17 15:49:54 +02:00
|
|
|
namespace Opm
|
|
|
|
|
{
|
2021-05-05 11:22:44 +02:00
|
|
|
class DeferredLogger;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
|
|
|
|
template<typename TypeTag>
|
2021-06-03 15:34:14 +02:00
|
|
|
class MultisegmentWell : public WellInterface<TypeTag>
|
2021-06-03 15:34:14 +02:00
|
|
|
, public MultisegmentWellEval<GetPropType<TypeTag, Properties::FluidSystem>,
|
|
|
|
|
GetPropType<TypeTag, Properties::Indices>,
|
|
|
|
|
GetPropType<TypeTag, Properties::Scalar>>
|
2017-08-17 15:49:54 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2021-06-03 15:34:14 +02:00
|
|
|
using Base = WellInterface<TypeTag>;
|
|
|
|
|
using MSWEval = MultisegmentWellEval<GetPropType<TypeTag, Properties::FluidSystem>,
|
|
|
|
|
GetPropType<TypeTag, Properties::Indices>,
|
|
|
|
|
GetPropType<TypeTag, Properties::Scalar>>;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2017-09-01 17:37:51 +02:00
|
|
|
using typename Base::Simulator;
|
2017-09-08 11:09:54 +02:00
|
|
|
using typename Base::IntensiveQuantities;
|
|
|
|
|
using typename Base::FluidSystem;
|
2017-09-01 17:37:51 +02:00
|
|
|
using typename Base::ModelParameters;
|
2017-09-08 14:58:57 +02:00
|
|
|
using typename Base::MaterialLaw;
|
2017-12-04 09:14:08 +01:00
|
|
|
using typename Base::Indices;
|
2017-11-23 08:37:30 +01:00
|
|
|
using typename Base::RateConverterType;
|
2019-10-02 12:48:29 +02:00
|
|
|
using typename Base::SparseMatrixAdapter;
|
2020-10-26 17:33:07 +01:00
|
|
|
using typename Base::FluidState;
|
2017-11-23 08:37:30 +01:00
|
|
|
|
2017-10-13 10:16:44 +02:00
|
|
|
using Base::has_solvent;
|
|
|
|
|
using Base::has_polymer;
|
2017-11-08 13:57:36 +01:00
|
|
|
using Base::Water;
|
|
|
|
|
using Base::Oil;
|
|
|
|
|
using Base::Gas;
|
2017-10-13 10:16:44 +02:00
|
|
|
|
2017-08-17 15:49:54 +02:00
|
|
|
using typename Base::Scalar;
|
|
|
|
|
|
|
|
|
|
/// the matrix and vector types for the reservoir
|
|
|
|
|
using typename Base::BVector;
|
|
|
|
|
using typename Base::Eval;
|
|
|
|
|
|
2022-12-01 09:23:52 +01:00
|
|
|
using typename MSWEval::Equations;
|
2021-06-03 15:34:14 +02:00
|
|
|
using typename MSWEval::EvalWell;
|
|
|
|
|
using typename MSWEval::BVectorWell;
|
|
|
|
|
using MSWEval::GFrac;
|
|
|
|
|
using MSWEval::WFrac;
|
2022-10-13 22:10:26 +02:00
|
|
|
using MSWEval::WQTotal;
|
2021-06-03 15:34:14 +02:00
|
|
|
using MSWEval::SPres;
|
|
|
|
|
using MSWEval::numWellEq;
|
2022-06-10 11:08:24 +02:00
|
|
|
using typename Base::PressureMatrix;
|
|
|
|
|
|
2020-10-09 15:09:28 +02:00
|
|
|
MultisegmentWell(const Well& well,
|
|
|
|
|
const ParallelWellInfo& pw_info,
|
|
|
|
|
const int time_step,
|
2017-11-23 08:37:30 +01:00
|
|
|
const ModelParameters& param,
|
|
|
|
|
const RateConverterType& rate_converter,
|
2017-11-30 16:31:48 +01:00
|
|
|
const int pvtRegionIdx,
|
2019-10-23 09:09:45 +02:00
|
|
|
const int num_components,
|
|
|
|
|
const int num_phases,
|
|
|
|
|
const int index_of_well,
|
|
|
|
|
const std::vector<PerforationData>& perf_data);
|
2017-08-17 15:49:54 +02:00
|
|
|
|
|
|
|
|
virtual void init(const PhaseUsage* phase_usage_arg,
|
|
|
|
|
const std::vector<double>& depth_arg,
|
|
|
|
|
const double gravity_arg,
|
2020-11-27 07:57:55 +01:00
|
|
|
const int num_cells,
|
2022-04-12 08:44:52 +02:00
|
|
|
const std::vector< Scalar >& B_avg,
|
|
|
|
|
const bool changed_to_open_this_step) override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2022-11-09 13:01:30 +01:00
|
|
|
void initPrimaryVariablesEvaluation() override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2018-11-15 10:08:03 +01:00
|
|
|
/// updating the well state based the current control mode
|
2021-06-16 15:47:58 +02:00
|
|
|
virtual void updateWellStateWithTarget(const Simulator& ebos_simulator,
|
2021-06-10 15:09:05 +02:00
|
|
|
const GroupState& group_state,
|
2021-06-16 15:47:58 +02:00
|
|
|
WellState& well_state,
|
|
|
|
|
DeferredLogger& deferred_logger) const override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
|
|
|
|
/// check whether the well equations get converged for this well
|
2021-06-03 15:34:14 +02:00
|
|
|
virtual ConvergenceReport getWellConvergence(const WellState& well_state,
|
|
|
|
|
const std::vector<double>& B_avg,
|
|
|
|
|
DeferredLogger& deferred_logger,
|
|
|
|
|
const bool relax_tolerance = false) const override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
|
|
|
|
/// Ax = Ax - C D^-1 B x
|
2018-08-16 11:51:36 +02:00
|
|
|
virtual void apply(const BVector& x, BVector& Ax) const override;
|
2017-08-17 15:49:54 +02:00
|
|
|
/// r = r - C D^-1 Rw
|
2018-08-16 11:51:36 +02:00
|
|
|
virtual void apply(BVector& r) const override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
|
|
|
|
/// using the solution x to recover the solution xw for wells and applying
|
|
|
|
|
/// xw to update Well State
|
2022-11-09 13:01:30 +01:00
|
|
|
void recoverWellSolutionAndUpdateWellState(const BVector& x,
|
|
|
|
|
WellState& well_state,
|
|
|
|
|
DeferredLogger& deferred_logger) override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
|
|
|
|
/// computing the well potentials for group control
|
|
|
|
|
virtual void computeWellPotentials(const Simulator& ebosSimulator,
|
|
|
|
|
const WellState& well_state,
|
2019-02-03 08:13:11 +01:00
|
|
|
std::vector<double>& well_potentials,
|
2021-05-05 11:22:44 +02:00
|
|
|
DeferredLogger& deferred_logger) override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2022-11-09 13:01:30 +01:00
|
|
|
void updatePrimaryVariables(const WellState& well_state, DeferredLogger& deferred_logger) override;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2021-05-05 11:22:44 +02:00
|
|
|
virtual void solveEqAndUpdateWellState(WellState& well_state, DeferredLogger& deferred_logger) override; // const?
|
2017-08-29 17:26:36 +02:00
|
|
|
|
2017-09-05 11:20:43 +02:00
|
|
|
virtual void calculateExplicitQuantities(const Simulator& ebosSimulator,
|
2019-02-07 14:43:17 +01:00
|
|
|
const WellState& well_state,
|
2021-05-05 11:22:44 +02:00
|
|
|
DeferredLogger& deferred_logger) override; // should be const?
|
2017-09-05 11:09:58 +02:00
|
|
|
|
2020-10-09 13:38:33 +02:00
|
|
|
virtual void updateProductivityIndex(const Simulator& ebosSimulator,
|
|
|
|
|
const WellProdIndexCalculator& wellPICalc,
|
|
|
|
|
WellState& well_state,
|
|
|
|
|
DeferredLogger& deferred_logger) const override;
|
|
|
|
|
|
2019-10-02 12:48:29 +02:00
|
|
|
virtual void addWellContributions(SparseMatrixAdapter& jacobian) const override;
|
2022-11-01 14:42:23 +01:00
|
|
|
|
2022-04-28 09:32:07 +02:00
|
|
|
virtual void addWellPressureEquations(PressureMatrix& mat,
|
|
|
|
|
const BVector& x,
|
|
|
|
|
const int pressureVarIndex,
|
|
|
|
|
const bool use_well_weights,
|
|
|
|
|
const WellState& well_state) const override;
|
2019-08-15 11:29:30 +02:00
|
|
|
|
2020-10-15 14:15:05 +02:00
|
|
|
virtual std::vector<double> computeCurrentWellRates(const Simulator& ebosSimulator,
|
|
|
|
|
DeferredLogger& deferred_logger) const override;
|
|
|
|
|
|
2020-10-26 17:33:07 +01:00
|
|
|
void computeConnLevelProdInd(const FluidState& fs,
|
2020-11-06 21:13:10 +01:00
|
|
|
const std::function<double(const double)>& connPICalc,
|
2021-09-13 09:36:16 +02:00
|
|
|
const std::vector<Scalar>& mobility,
|
2020-10-26 17:33:07 +01:00
|
|
|
double* connPI) const;
|
|
|
|
|
|
|
|
|
|
void computeConnLevelInjInd(const FluidState& fs,
|
2020-11-06 21:13:10 +01:00
|
|
|
const Phase preferred_phase,
|
|
|
|
|
const std::function<double(const double)>& connIICalc,
|
2021-09-13 09:36:16 +02:00
|
|
|
const std::vector<Scalar>& mobility,
|
2020-10-26 17:33:07 +01:00
|
|
|
double* connII,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
2021-05-10 09:41:18 +02:00
|
|
|
|
2022-10-19 12:23:02 +02:00
|
|
|
std::optional<double>
|
|
|
|
|
computeBhpAtThpLimitProdWithAlq(const Simulator& ebos_simulator,
|
|
|
|
|
const SummaryState& summary_state,
|
|
|
|
|
const double alq_value,
|
|
|
|
|
DeferredLogger& deferred_logger) const override;
|
2022-02-07 11:28:35 +01:00
|
|
|
|
2017-08-17 15:49:54 +02:00
|
|
|
protected:
|
|
|
|
|
|
2022-04-06 10:09:21 +02:00
|
|
|
// regularize msw equation
|
|
|
|
|
bool regularize_;
|
|
|
|
|
|
2017-08-17 15:49:54 +02:00
|
|
|
// components of the pressure drop to be included
|
2019-08-28 00:30:12 +02:00
|
|
|
WellSegments::CompPressureDrop compPressureDrop() const;
|
2017-08-17 15:49:54 +02:00
|
|
|
// multi-phase flow model
|
2019-08-28 00:30:12 +02:00
|
|
|
WellSegments::MultiPhaseModel multiphaseModel() const;
|
2017-08-17 15:49:54 +02:00
|
|
|
|
2019-02-12 12:48:51 +01:00
|
|
|
// the intial amount of fluids in each segment under surface condition
|
|
|
|
|
std::vector<std::vector<double> > segment_fluid_initial_;
|
2017-09-05 15:16:04 +02:00
|
|
|
|
2019-11-18 16:33:10 +01:00
|
|
|
mutable int debug_cost_counter_ = 0;
|
|
|
|
|
|
2017-08-29 17:26:36 +02:00
|
|
|
// updating the well_state based on well solution dwells
|
|
|
|
|
void updateWellState(const BVectorWell& dwells,
|
2019-02-07 14:43:17 +01:00
|
|
|
WellState& well_state,
|
2021-05-05 11:22:44 +02:00
|
|
|
DeferredLogger& deferred_logger,
|
2019-03-08 13:50:34 +01:00
|
|
|
const double relaxation_factor=1.0) const;
|
|
|
|
|
|
2017-08-29 17:26:36 +02:00
|
|
|
|
2017-09-05 11:20:43 +02:00
|
|
|
// computing the accumulation term for later use in well mass equations
|
2019-02-12 12:48:51 +01:00
|
|
|
void computeInitialSegmentFluids(const Simulator& ebos_simulator);
|
2017-09-05 15:16:04 +02:00
|
|
|
|
|
|
|
|
// compute the pressure difference between the perforation and cell center
|
|
|
|
|
void computePerfCellPressDiffs(const Simulator& ebosSimulator);
|
|
|
|
|
|
2021-09-13 09:36:16 +02:00
|
|
|
void computePerfRateScalar(const IntensiveQuantities& int_quants,
|
|
|
|
|
const std::vector<Scalar>& mob_perfcells,
|
|
|
|
|
const double Tw,
|
|
|
|
|
const int seg,
|
|
|
|
|
const int perf,
|
|
|
|
|
const Scalar& segment_pressure,
|
|
|
|
|
const bool& allow_cf,
|
|
|
|
|
std::vector<Scalar>& cq_s,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
|
|
|
|
|
|
void computePerfRateEval(const IntensiveQuantities& int_quants,
|
|
|
|
|
const std::vector<EvalWell>& mob_perfcells,
|
|
|
|
|
const double Tw,
|
|
|
|
|
const int seg,
|
|
|
|
|
const int perf,
|
|
|
|
|
const EvalWell& segment_pressure,
|
|
|
|
|
const bool& allow_cf,
|
|
|
|
|
std::vector<EvalWell>& cq_s,
|
|
|
|
|
EvalWell& perf_press,
|
|
|
|
|
double& perf_dis_gas_rate,
|
|
|
|
|
double& perf_vap_oil_rate,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
|
|
|
|
|
|
template<class Value>
|
|
|
|
|
void computePerfRate(const Value& pressure_cell,
|
|
|
|
|
const Value& rs,
|
|
|
|
|
const Value& rv,
|
|
|
|
|
const std::vector<Value>& b_perfcells,
|
|
|
|
|
const std::vector<Value>& mob_perfcells,
|
|
|
|
|
const double Tw,
|
|
|
|
|
const int perf,
|
|
|
|
|
const Value& segment_pressure,
|
|
|
|
|
const Value& segment_density,
|
|
|
|
|
const bool& allow_cf,
|
|
|
|
|
const std::vector<Value>& cmix_s,
|
|
|
|
|
std::vector<Value>& cq_s,
|
|
|
|
|
Value& perf_press,
|
|
|
|
|
double& perf_dis_gas_rate,
|
|
|
|
|
double& perf_vap_oil_rate,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
2017-09-08 11:09:54 +02:00
|
|
|
|
2017-10-03 16:25:51 +02:00
|
|
|
// compute the fluid properties, such as densities, viscosities, and so on, in the segments
|
2017-09-08 11:09:54 +02:00
|
|
|
// They will be treated implicitly, so they need to be of Evaluation type
|
2022-04-01 08:35:31 +02:00
|
|
|
void computeSegmentFluidProperties(const Simulator& ebosSimulator,
|
|
|
|
|
DeferredLogger& deferred_logger);
|
2017-09-08 11:09:54 +02:00
|
|
|
|
2017-09-08 14:58:57 +02:00
|
|
|
// get the mobility for specific perforation
|
2021-09-13 09:36:16 +02:00
|
|
|
void getMobilityEval(const Simulator& ebosSimulator,
|
|
|
|
|
const int perf,
|
|
|
|
|
std::vector<EvalWell>& mob) const;
|
|
|
|
|
|
|
|
|
|
// get the mobility for specific perforation
|
|
|
|
|
void getMobilityScalar(const Simulator& ebosSimulator,
|
|
|
|
|
const int perf,
|
|
|
|
|
std::vector<Scalar>& mob) const;
|
2017-09-11 17:31:42 +02:00
|
|
|
|
2019-11-18 16:33:10 +01:00
|
|
|
void computeWellRatesAtBhpLimit(const Simulator& ebosSimulator,
|
|
|
|
|
std::vector<double>& well_flux,
|
2021-05-05 11:22:44 +02:00
|
|
|
DeferredLogger& deferred_logger) const;
|
2019-11-18 16:33:10 +01:00
|
|
|
|
2022-02-07 11:28:35 +01:00
|
|
|
virtual void computeWellRatesWithBhp(const Simulator& ebosSimulator,
|
|
|
|
|
const double& bhp,
|
2019-11-18 16:33:10 +01:00
|
|
|
std::vector<double>& well_flux,
|
2022-02-07 11:28:35 +01:00
|
|
|
DeferredLogger& deferred_logger) const override;
|
2019-11-18 16:33:10 +01:00
|
|
|
|
2021-09-13 10:58:50 +02:00
|
|
|
void computeWellRatesWithBhpIterations(const Simulator& ebosSimulator,
|
|
|
|
|
const Scalar& bhp,
|
|
|
|
|
std::vector<double>& well_flux,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
|
|
2022-02-07 11:28:35 +01:00
|
|
|
std::vector<double> computeWellPotentialWithTHP(
|
|
|
|
|
const WellState& well_state,
|
|
|
|
|
const Simulator& ebos_simulator,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
2019-04-23 13:30:12 +02:00
|
|
|
|
2021-04-26 09:31:29 +02:00
|
|
|
virtual double getRefDensity() const override;
|
|
|
|
|
|
2020-06-09 23:35:58 +02:00
|
|
|
virtual bool iterateWellEqWithControl(const Simulator& ebosSimulator,
|
|
|
|
|
const double dt,
|
|
|
|
|
const Well::InjectionControls& inj_controls,
|
|
|
|
|
const Well::ProductionControls& prod_controls,
|
|
|
|
|
WellState& well_state,
|
2021-04-22 17:31:21 +02:00
|
|
|
const GroupState& group_state,
|
2021-05-05 11:22:44 +02:00
|
|
|
DeferredLogger& deferred_logger) override;
|
2018-11-30 12:15:51 +01:00
|
|
|
|
2020-01-29 09:13:25 +01:00
|
|
|
virtual void assembleWellEqWithoutIteration(const Simulator& ebosSimulator,
|
2021-04-22 17:31:21 +02:00
|
|
|
const double dt,
|
|
|
|
|
const Well::InjectionControls& inj_controls,
|
|
|
|
|
const Well::ProductionControls& prod_controls,
|
|
|
|
|
WellState& well_state,
|
|
|
|
|
const GroupState& group_state,
|
2021-05-05 11:22:44 +02:00
|
|
|
DeferredLogger& deferred_logger) override;
|
2020-01-29 09:13:25 +01:00
|
|
|
|
2018-11-30 12:15:51 +01:00
|
|
|
virtual void updateWaterThroughput(const double dt, WellState& well_state) const override;
|
2019-02-12 12:48:51 +01:00
|
|
|
|
|
|
|
|
EvalWell getSegmentSurfaceVolume(const Simulator& ebos_simulator, const int seg_idx) const;
|
|
|
|
|
|
2019-11-07 14:01:21 +01:00
|
|
|
// turn on crossflow to avoid singular well equations
|
|
|
|
|
// when the well is banned from cross-flow and the BHP is not properly initialized,
|
|
|
|
|
// we turn on crossflow to avoid singular well equations. It can result in wrong-signed
|
|
|
|
|
// well rates, it can cause problem for THP calculation
|
|
|
|
|
// TODO: looking for better alternative to avoid wrong-signed well rates
|
|
|
|
|
bool openCrossFlowAvoidSingularity(const Simulator& ebos_simulator) const;
|
|
|
|
|
|
|
|
|
|
// for a well, when all drawdown are in the wrong direction, then this well will not
|
|
|
|
|
// be able to produce/inject .
|
|
|
|
|
bool allDrawDownWrongDirection(const Simulator& ebos_simulator) const;
|
|
|
|
|
|
2019-11-24 11:11:50 +01:00
|
|
|
|
2022-02-07 11:28:35 +01:00
|
|
|
|
|
|
|
|
std::optional<double> computeBhpAtThpLimitProd(
|
|
|
|
|
const WellState& well_state,
|
|
|
|
|
const Simulator& ebos_simulator,
|
|
|
|
|
const SummaryState& summary_state,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
2020-02-19 11:02:13 +01:00
|
|
|
|
|
|
|
|
std::optional<double> computeBhpAtThpLimitInj(const Simulator& ebos_simulator,
|
|
|
|
|
const SummaryState& summary_state,
|
|
|
|
|
DeferredLogger& deferred_logger) const;
|
2019-11-18 16:33:10 +01:00
|
|
|
|
|
|
|
|
double maxPerfPress(const Simulator& ebos_simulator) const;
|
2019-11-24 11:11:50 +01:00
|
|
|
|
2020-11-27 07:57:55 +01:00
|
|
|
// check whether the well is operable under BHP limit with current reservoir condition
|
2021-10-01 13:47:53 +02:00
|
|
|
virtual void checkOperabilityUnderBHPLimit(const WellState& well_state, const Simulator& ebos_simulator, DeferredLogger& deferred_logger) override;
|
2020-11-27 07:57:55 +01:00
|
|
|
|
|
|
|
|
// check whether the well is operable under THP limit with current reservoir condition
|
2021-10-01 13:47:53 +02:00
|
|
|
virtual void checkOperabilityUnderTHPLimit(const Simulator& ebos_simulator, const WellState& well_state, DeferredLogger& deferred_logger) override;
|
2020-11-27 07:57:55 +01:00
|
|
|
|
|
|
|
|
// updating the inflow based on the current reservoir condition
|
2021-05-05 11:22:44 +02:00
|
|
|
virtual void updateIPR(const Simulator& ebos_simulator, DeferredLogger& deferred_logger) const override;
|
2017-09-27 18:16:45 +02:00
|
|
|
};
|
2017-09-13 17:10:34 +02:00
|
|
|
|
2017-08-17 15:49:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "MultisegmentWell_impl.hpp"
|
|
|
|
|
|
|
|
|
|
#endif // OPM_MULTISEGMENTWELL_HEADER_INCLUDED
|