2017-06-15 04:34:07 -05:00
|
|
|
/*
|
2017-08-03 09:45:59 -05:00
|
|
|
Copyright 2017 SINTEF Digital, Mathematics and Cybernetics.
|
2017-06-15 04:34:07 -05:00
|
|
|
Copyright 2017 Statoil ASA.
|
2017-11-23 01:37:30 -06:00
|
|
|
Copyright 2017 IRIS
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
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_WELLINTERFACE_HEADER_INCLUDED
|
|
|
|
#define OPM_WELLINTERFACE_HEADER_INCLUDED
|
|
|
|
|
2017-06-20 03:54:33 -05:00
|
|
|
#include <opm/common/OpmLog/OpmLog.hpp>
|
2018-02-14 15:21:13 -06:00
|
|
|
#include <opm/common/ErrorMacros.hpp>
|
|
|
|
#include <opm/common/Exceptions.hpp>
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Well.hpp>
|
2018-06-06 08:17:59 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/WellTestState.hpp>
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
#include <opm/core/wells.h>
|
|
|
|
#include <opm/core/well_controls.h>
|
|
|
|
#include <opm/core/props/BlackoilPhases.hpp>
|
2017-08-22 10:14:52 -05:00
|
|
|
#include <opm/core/wells/WellsManager.hpp>
|
2018-06-06 08:17:59 -05:00
|
|
|
#include <opm/core/simulator/SimulatorReport.hpp>
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
#include <opm/autodiff/VFPProperties.hpp>
|
|
|
|
#include <opm/autodiff/WellHelpers.hpp>
|
2017-10-06 03:59:42 -05:00
|
|
|
#include <opm/autodiff/WellStateFullyImplicitBlackoil.hpp>
|
2018-06-21 05:14:17 -05:00
|
|
|
#include <opm/autodiff/BlackoilModelParametersEbos.hpp>
|
2017-11-23 01:37:30 -06:00
|
|
|
#include <opm/autodiff/RateConverter.hpp>
|
2017-06-15 04:34:07 -05:00
|
|
|
|
2018-10-25 04:57:47 -05:00
|
|
|
#include <opm/simulators/timestepping/ConvergenceReport.hpp>
|
2017-06-27 09:04:04 -05:00
|
|
|
#include <opm/simulators/WellSwitchingLogger.hpp>
|
|
|
|
|
2017-07-21 07:21:17 -05:00
|
|
|
#include<dune/common/fmatrix.hh>
|
|
|
|
#include<dune/istl/bcrsmatrix.hh>
|
|
|
|
#include<dune/istl/matrixmatrix.hh>
|
|
|
|
|
|
|
|
#include <opm/material/densead/Math.hpp>
|
|
|
|
#include <opm/material/densead/Evaluation.hpp>
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2017-06-19 07:49:49 -05:00
|
|
|
template<typename TypeTag>
|
2017-06-15 04:34:07 -05:00
|
|
|
class WellInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2017-10-06 03:59:42 -05:00
|
|
|
using WellState = WellStateFullyImplicitBlackoil;
|
2017-06-15 04:34:07 -05:00
|
|
|
|
2018-06-21 05:14:17 -05:00
|
|
|
typedef BlackoilModelParametersEbos<TypeTag> ModelParameters;
|
2017-11-08 06:57:36 -06:00
|
|
|
|
|
|
|
static const int Water = BlackoilPhases::Aqua;
|
|
|
|
static const int Oil = BlackoilPhases::Liquid;
|
|
|
|
static const int Gas = BlackoilPhases::Vapour;
|
|
|
|
|
2017-07-31 09:42:26 -05:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid;
|
2017-06-19 08:05:15 -05:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, Simulator) Simulator;
|
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
2017-12-04 02:14:08 -06:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices;
|
2017-06-19 09:46:06 -05:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, IntensiveQuantities) IntensiveQuantities;
|
2017-06-21 07:07:11 -05:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw) MaterialLaw;
|
2018-11-12 05:40:11 -06:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, SparseMatrixAdapter) SparseMatrixAdapter;
|
2018-08-16 04:51:36 -05:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, RateVector) RateVector;
|
2017-06-19 08:05:15 -05:00
|
|
|
|
2017-12-04 02:14:08 -06:00
|
|
|
static const int numEq = Indices::numEq;
|
2017-07-21 07:21:17 -05:00
|
|
|
typedef double Scalar;
|
|
|
|
|
|
|
|
typedef Dune::FieldVector<Scalar, numEq > VectorBlockType;
|
|
|
|
typedef Dune::FieldMatrix<Scalar, numEq, numEq > MatrixBlockType;
|
2018-11-12 05:40:11 -06:00
|
|
|
typedef typename SparseMatrixAdapter::IstlMatrix Mat;
|
2017-07-21 07:21:17 -05:00
|
|
|
typedef Dune::BlockVector<VectorBlockType> BVector;
|
|
|
|
typedef DenseAd::Evaluation<double, /*size=*/numEq> Eval;
|
|
|
|
|
2017-07-31 08:04:25 -05:00
|
|
|
typedef Ewoms::BlackOilPolymerModule<TypeTag> PolymerModule;
|
|
|
|
|
2017-06-19 09:46:06 -05:00
|
|
|
static const bool has_solvent = GET_PROP_VALUE(TypeTag, EnableSolvent);
|
2017-07-25 05:10:13 -05:00
|
|
|
static const bool has_polymer = GET_PROP_VALUE(TypeTag, EnablePolymer);
|
2018-03-26 03:50:33 -05:00
|
|
|
static const bool has_energy = GET_PROP_VALUE(TypeTag, EnableEnergy);
|
2017-12-04 02:14:08 -06:00
|
|
|
static const int contiSolventEqIdx = Indices::contiSolventEqIdx;
|
|
|
|
static const int contiPolymerEqIdx = Indices::contiPolymerEqIdx;
|
2017-11-23 01:37:30 -06:00
|
|
|
|
|
|
|
// For the conversion between the surface volume rate and resrevoir voidage rate
|
|
|
|
using RateConverterType = RateConverter::
|
|
|
|
SurfaceToReservoirVoidage<FluidSystem, std::vector<int> >;
|
2017-06-19 08:05:15 -05:00
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
/// Constructor
|
2017-11-23 01:37:30 -06:00
|
|
|
WellInterface(const Well* well, const int time_step, const Wells* wells,
|
|
|
|
const ModelParameters& param,
|
|
|
|
const RateConverterType& rate_converter,
|
2017-11-30 09:31:48 -06:00
|
|
|
const int pvtRegionIdx,
|
|
|
|
const int num_components);
|
2017-06-15 04:34:07 -05:00
|
|
|
|
2017-08-22 02:43:26 -05:00
|
|
|
/// Virutal destructor
|
|
|
|
virtual ~WellInterface() {}
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
/// Well name.
|
|
|
|
const std::string& name() const;
|
|
|
|
|
2018-06-06 08:17:59 -05:00
|
|
|
/// Index of well in the wells struct and wellState
|
|
|
|
const int indexOfWell() const;
|
|
|
|
|
2017-10-02 07:18:33 -05:00
|
|
|
/// Well cells.
|
2018-08-16 04:51:36 -05:00
|
|
|
const std::vector<int>& cells() const {return well_cells_; }
|
2017-10-02 07:18:33 -05:00
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
/// Well type, INJECTOR or PRODUCER.
|
|
|
|
WellType wellType() const;
|
|
|
|
|
|
|
|
/// Well controls
|
|
|
|
WellControls* wellControls() const;
|
|
|
|
|
2018-11-13 03:45:02 -06:00
|
|
|
void setVFPProperties(const VFPProperties<VFPInjProperties,VFPProdProperties>* vfp_properties_arg);
|
2017-08-07 07:50:03 -05:00
|
|
|
|
2017-06-28 08:20:25 -05:00
|
|
|
virtual void init(const PhaseUsage* phase_usage_arg,
|
2017-08-01 09:11:55 -05:00
|
|
|
const std::vector<double>& depth_arg,
|
2017-06-28 08:20:25 -05:00
|
|
|
const double gravity_arg,
|
|
|
|
const int num_cells);
|
2017-06-15 04:34:07 -05:00
|
|
|
|
2017-08-21 08:41:25 -05:00
|
|
|
virtual void initPrimaryVariablesEvaluation() const = 0;
|
2017-06-15 04:34:07 -05:00
|
|
|
|
2018-10-25 04:57:47 -05:00
|
|
|
virtual ConvergenceReport getWellConvergence(const std::vector<double>& B_avg) const = 0;
|
2017-06-26 07:35:43 -05:00
|
|
|
|
2017-10-16 09:46:28 -05:00
|
|
|
virtual void solveEqAndUpdateWellState(WellState& well_state) = 0;
|
2017-06-26 09:01:45 -05:00
|
|
|
|
2018-08-16 04:51:36 -05:00
|
|
|
virtual void assembleWellEq(const Simulator& ebosSimulator,
|
2017-06-27 05:17:36 -05:00
|
|
|
const double dt,
|
2018-08-16 04:51:36 -05:00
|
|
|
WellState& well_state) = 0;
|
2017-06-27 05:17:36 -05:00
|
|
|
|
2018-06-28 06:47:10 -05:00
|
|
|
void updateWellTestState(const WellState& well_state,
|
|
|
|
const double& simulationTime,
|
2018-10-29 08:01:41 -05:00
|
|
|
const bool& writeMessageToOPMLog,
|
2018-08-16 04:51:36 -05:00
|
|
|
WellTestState& wellTestState
|
|
|
|
) const;
|
2017-06-28 04:15:04 -05:00
|
|
|
|
2017-08-03 10:30:47 -05:00
|
|
|
void setWellEfficiencyFactor(const double efficiency_factor);
|
2017-06-28 04:15:04 -05:00
|
|
|
|
2018-08-16 04:51:36 -05:00
|
|
|
void computeRepRadiusPerfLength(const Grid& grid, const std::vector<int>& cartesian_to_compressed);
|
2017-06-29 06:52:31 -05:00
|
|
|
|
2017-08-22 07:49:30 -05:00
|
|
|
/// using the solution x to recover the solution xw for wells and applying
|
|
|
|
/// xw to update Well State
|
2017-10-16 09:46:28 -05:00
|
|
|
virtual void recoverWellSolutionAndUpdateWellState(const BVector& x,
|
2017-08-21 07:16:24 -05:00
|
|
|
WellState& well_state) const = 0;
|
2017-06-29 06:52:31 -05:00
|
|
|
|
2017-08-22 07:49:30 -05:00
|
|
|
/// Ax = Ax - C D^-1 B x
|
2017-07-21 07:21:17 -05:00
|
|
|
virtual void apply(const BVector& x, BVector& Ax) const = 0;
|
|
|
|
|
2017-08-22 07:49:30 -05:00
|
|
|
/// r = r - C D^-1 Rw
|
2017-07-21 07:21:17 -05:00
|
|
|
virtual void apply(BVector& r) const = 0;
|
|
|
|
|
2017-09-05 04:09:58 -05:00
|
|
|
// TODO: before we decide to put more information under mutable, this function is not const
|
2017-07-24 08:09:44 -05:00
|
|
|
virtual void computeWellPotentials(const Simulator& ebosSimulator,
|
|
|
|
const WellState& well_state,
|
2017-09-05 04:09:58 -05:00
|
|
|
std::vector<double>& well_potentials) = 0;
|
2017-07-24 07:48:57 -05:00
|
|
|
|
2018-11-15 03:08:03 -06:00
|
|
|
virtual void updateWellStateWithTarget(/* const */ Simulator& ebos_simulator,
|
|
|
|
WellState& well_state) /* const */ = 0;
|
2017-07-31 09:42:26 -05:00
|
|
|
|
2018-11-15 03:08:03 -06:00
|
|
|
void updateWellControl(/* const */ Simulator& ebos_simulator,
|
|
|
|
WellState& well_state,
|
|
|
|
wellhelpers::WellSwitchingLogger& logger) /* const */;
|
2017-07-31 09:42:26 -05:00
|
|
|
|
2017-08-21 08:41:25 -05:00
|
|
|
virtual void updatePrimaryVariables(const WellState& well_state) const = 0;
|
2017-08-07 10:49:35 -05:00
|
|
|
|
2017-09-05 04:20:43 -05:00
|
|
|
virtual void calculateExplicitQuantities(const Simulator& ebosSimulator,
|
2017-11-30 10:14:29 -06:00
|
|
|
const WellState& well_state) = 0; // should be const?
|
2017-09-05 04:09:58 -05:00
|
|
|
|
2018-02-26 05:23:20 -06:00
|
|
|
/// \brief Wether the Jacobian will also have well contributions in it.
|
|
|
|
virtual bool jacobianContainsWellContributions() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-15 07:46:43 -05:00
|
|
|
|
2018-02-14 06:34:35 -06:00
|
|
|
// updating the voidage rates in well_state when requested
|
|
|
|
void calculateReservoirRates(WellState& well_state) const;
|
|
|
|
|
2018-03-05 09:39:25 -06:00
|
|
|
// Add well contributions to matrix
|
|
|
|
virtual void addWellContributions(Mat&) const
|
|
|
|
{}
|
2018-06-06 08:17:59 -05:00
|
|
|
|
2018-11-15 07:37:01 -06:00
|
|
|
void addCellRates(RateVector& rates, int cellIdx) const;
|
2018-08-16 04:51:36 -05:00
|
|
|
|
|
|
|
template <class EvalWell>
|
|
|
|
Eval restrictEval(const EvalWell& in) const
|
|
|
|
{
|
|
|
|
Eval out = 0.0;
|
|
|
|
out.setValue(in.value());
|
|
|
|
for(int eqIdx = 0; eqIdx < numEq;++eqIdx) {
|
|
|
|
out.setDerivative(eqIdx, in.derivative(eqIdx));
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2018-07-03 08:13:30 -05:00
|
|
|
void closeCompletions(WellTestState& wellTestState);
|
2018-06-06 08:17:59 -05:00
|
|
|
|
2018-06-29 02:12:14 -05:00
|
|
|
const Well* wellEcl() const;
|
2018-06-06 08:17:59 -05:00
|
|
|
|
2018-10-31 08:56:56 -05:00
|
|
|
// TODO: theoretically, it should be a const function
|
|
|
|
// Simulator is not const is because that assembleWellEq is non-const Simulator
|
|
|
|
void wellTesting(Simulator& simulator, const std::vector<double>& B_avg,
|
|
|
|
const double simulation_time, const int report_step, const bool terminal_output,
|
|
|
|
const WellTestConfig::Reason testing_reason, const WellState& well_state,
|
|
|
|
WellTestState& welltest_state);
|
2018-06-06 08:17:59 -05:00
|
|
|
|
2018-11-15 07:37:01 -06:00
|
|
|
void updatePerforatedCell(std::vector<bool>& is_cell_perforated);
|
|
|
|
|
2018-11-17 16:39:09 -06:00
|
|
|
virtual void checkWellOperability(const Simulator& ebos_simulator) = 0;
|
2018-11-15 07:37:01 -06:00
|
|
|
|
2018-11-17 16:14:51 -06:00
|
|
|
// whether the well is operable
|
|
|
|
bool isOperable() const;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
protected:
|
2017-07-25 05:10:13 -05:00
|
|
|
|
2018-06-28 06:47:10 -05:00
|
|
|
// to indicate a invalid completion
|
2018-07-02 04:06:51 -05:00
|
|
|
static const int INVALIDCOMPLETION = INT_MAX;
|
2017-07-25 09:41:25 -05:00
|
|
|
|
2017-07-25 05:10:13 -05:00
|
|
|
const Well* well_ecl_;
|
|
|
|
|
|
|
|
const int current_step_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
// the index of well in Wells struct
|
|
|
|
int index_of_well_;
|
|
|
|
|
2017-10-16 09:46:28 -05:00
|
|
|
// simulation parameters
|
|
|
|
const ModelParameters& param_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
// well type
|
|
|
|
// INJECTOR or PRODUCER
|
|
|
|
enum WellType well_type_;
|
|
|
|
|
|
|
|
// number of phases
|
|
|
|
int number_of_phases_;
|
|
|
|
|
|
|
|
// component fractions for each well
|
|
|
|
// typically, it should apply to injection wells
|
|
|
|
std::vector<double> comp_frac_;
|
|
|
|
|
|
|
|
// controls for this well
|
|
|
|
struct WellControls* well_controls_;
|
|
|
|
|
|
|
|
// number of the perforations for this well
|
|
|
|
int number_of_perforations_;
|
|
|
|
|
2017-06-23 07:55:56 -05:00
|
|
|
// record the index of the first perforation
|
|
|
|
// of states of individual well.
|
|
|
|
int first_perf_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
// well index for each perforation
|
|
|
|
std::vector<double> well_index_;
|
|
|
|
|
|
|
|
// depth for each perforation
|
|
|
|
std::vector<double> perf_depth_;
|
|
|
|
|
2017-06-23 09:32:43 -05:00
|
|
|
// reference depth for the BHP
|
2017-07-19 04:51:19 -05:00
|
|
|
double ref_depth_;
|
2017-06-23 09:32:43 -05:00
|
|
|
|
2017-06-21 07:07:11 -05:00
|
|
|
double well_efficiency_factor_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
// cell index for each well perforation
|
2017-08-04 06:07:16 -05:00
|
|
|
std::vector<int> well_cells_;
|
2017-06-15 04:34:07 -05:00
|
|
|
|
2017-06-21 07:07:11 -05:00
|
|
|
// saturation table nubmer for each well perforation
|
|
|
|
std::vector<int> saturation_table_number_;
|
|
|
|
|
2017-07-31 09:42:26 -05:00
|
|
|
// representative radius of the perforations, used in shear calculation
|
|
|
|
std::vector<double> perf_rep_radius_;
|
|
|
|
|
|
|
|
// length of the perforations, use in shear calculation
|
|
|
|
std::vector<double> perf_length_;
|
|
|
|
|
|
|
|
// well bore diameter
|
|
|
|
std::vector<double> bore_diameters_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
const PhaseUsage* phase_usage_;
|
|
|
|
|
2017-08-21 04:26:21 -05:00
|
|
|
bool getAllowCrossFlow() const;
|
|
|
|
|
2018-11-13 03:45:02 -06:00
|
|
|
const VFPProperties<VFPInjProperties,VFPProdProperties>* vfp_properties_;
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
double gravity_;
|
2017-07-24 07:48:57 -05:00
|
|
|
|
2017-11-23 01:37:30 -06:00
|
|
|
// For the conversion between the surface volume rate and resrevoir voidage rate
|
|
|
|
const RateConverterType& rateConverter_;
|
|
|
|
|
|
|
|
// The pvt region of the well. We assume
|
|
|
|
// We assume a well to not penetrate more than one pvt region.
|
2017-11-23 04:15:50 -06:00
|
|
|
const int pvtRegionIdx_;
|
2017-11-23 01:37:30 -06:00
|
|
|
|
2017-11-30 09:31:48 -06:00
|
|
|
const int num_components_;
|
|
|
|
|
2018-11-15 07:37:01 -06:00
|
|
|
std::vector<RateVector> connectionRates_;
|
|
|
|
|
2017-08-21 04:26:21 -05:00
|
|
|
const PhaseUsage& phaseUsage() const;
|
|
|
|
|
|
|
|
int flowPhaseToEbosCompIdx( const int phaseIdx ) const;
|
|
|
|
|
2017-12-04 02:14:08 -06:00
|
|
|
int ebosCompIdxToFlowCompIdx( const unsigned compIdx ) const;
|
2017-08-21 04:26:21 -05:00
|
|
|
|
|
|
|
double wsolvent() const;
|
|
|
|
|
|
|
|
double wpolymer() const;
|
|
|
|
|
|
|
|
bool checkRateEconLimits(const WellEconProductionLimits& econ_production_limits,
|
|
|
|
const WellState& well_state) const;
|
|
|
|
|
2018-11-14 16:24:10 -06:00
|
|
|
bool underPredictionMode() const;
|
|
|
|
|
2017-07-24 07:48:57 -05:00
|
|
|
bool wellHasTHPConstraints() const;
|
|
|
|
|
2018-11-15 01:57:47 -06:00
|
|
|
double getTHPConstraint() const;
|
|
|
|
|
|
|
|
int getTHPControlIndex() const;
|
|
|
|
|
2017-08-03 10:30:47 -05:00
|
|
|
// Component fractions for each phase for the well
|
|
|
|
const std::vector<double>& compFrac() const;
|
|
|
|
|
2017-07-24 07:48:57 -05:00
|
|
|
double mostStrictBhpFromBhpLimits() const;
|
2017-07-26 08:31:44 -05:00
|
|
|
|
|
|
|
// a tuple type for ratio limit check.
|
2018-06-28 06:47:10 -05:00
|
|
|
// first value indicates whether ratio limit is violated, when the ratio limit is not violated, the following two
|
2017-07-26 08:31:44 -05:00
|
|
|
// values should not be used.
|
2018-06-28 06:47:10 -05:00
|
|
|
// second value indicates the index of the worst-offending completion.
|
|
|
|
// the last value indicates the extent of the violation for the worst-offending completion, which is defined by
|
2017-07-26 08:31:44 -05:00
|
|
|
// the ratio of the actual value to the value of the violated limit.
|
2018-06-28 06:47:10 -05:00
|
|
|
using RatioCheckTuple = std::tuple<bool, int, double>;
|
2017-07-26 08:31:44 -05:00
|
|
|
|
|
|
|
RatioCheckTuple checkMaxWaterCutLimit(const WellEconProductionLimits& econ_production_limits,
|
|
|
|
const WellState& well_state) const;
|
|
|
|
|
|
|
|
RatioCheckTuple checkRatioEconLimits(const WellEconProductionLimits& econ_production_limits,
|
|
|
|
const WellState& well_state) const;
|
|
|
|
|
2017-11-23 01:37:30 -06:00
|
|
|
double scalingFactor(const int comp_idx) const;
|
|
|
|
|
2018-11-13 04:19:53 -06:00
|
|
|
// whether a well is specified with a non-zero and valid VFP table number
|
|
|
|
bool isVFPActive() const;
|
|
|
|
|
2018-11-15 05:55:30 -06:00
|
|
|
struct OperabilityStatus;
|
|
|
|
|
|
|
|
OperabilityStatus operability_status_;
|
|
|
|
|
2018-10-31 09:32:50 -05:00
|
|
|
void wellTestingEconomic(Simulator& simulator, const std::vector<double>& B_avg,
|
|
|
|
const double simulation_time, const int report_step, const bool terminal_output,
|
|
|
|
const WellState& well_state, WellTestState& welltest_state);
|
|
|
|
|
|
|
|
void updateWellTestStateEconomic(const WellState& well_state,
|
|
|
|
const double simulation_time,
|
|
|
|
const bool write_message_to_opmlog,
|
|
|
|
WellTestState& well_test_state) const;
|
|
|
|
|
2018-11-17 16:30:27 -06:00
|
|
|
void updateWellTestStatePhysical(const WellState& well_state,
|
|
|
|
const double simulation_time,
|
|
|
|
const bool write_message_to_opmlog,
|
|
|
|
WellTestState& well_test_state) const;
|
|
|
|
|
2018-10-31 09:32:50 -05:00
|
|
|
void solveWellForTesting(Simulator& ebosSimulator, WellState& well_state, const std::vector<double>& B_avg, bool terminal_output);
|
2018-06-06 08:17:59 -05:00
|
|
|
|
2018-11-02 09:21:58 -05:00
|
|
|
void scaleProductivityIndex(const int perfIdx, double& productivity_index) const;
|
|
|
|
|
2018-11-15 07:37:01 -06:00
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
};
|
|
|
|
|
2018-11-15 05:55:30 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// definition of the struct OperabilityStatus
|
|
|
|
template<typename TypeTag>
|
|
|
|
struct
|
|
|
|
WellInterface<TypeTag>::
|
|
|
|
OperabilityStatus {
|
|
|
|
bool isOperable() const {
|
|
|
|
if (!operable_under_only_bhp_limit) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2018-11-18 08:08:17 -06:00
|
|
|
return existing_drawdown_correct_direction &&
|
|
|
|
(isOperableUnderBHPLimit() || isOperableUnderTHPLimit());
|
2018-11-15 05:55:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isOperableUnderBHPLimit() const {
|
2018-11-18 08:08:17 -06:00
|
|
|
return operable_under_only_bhp_limit && obey_thp_limit_under_bhp_limit;
|
2018-11-15 05:55:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isOperableUnderTHPLimit() const {
|
2018-11-20 06:49:11 -06:00
|
|
|
return can_obtain_bhp_with_thp_limit && obey_bhp_limit_with_thp_limit;
|
2018-11-15 05:55:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void reset() {
|
|
|
|
operable_under_only_bhp_limit = true;
|
2018-11-18 08:08:17 -06:00
|
|
|
obey_thp_limit_under_bhp_limit = true;
|
2018-11-20 06:49:11 -06:00
|
|
|
can_obtain_bhp_with_thp_limit = true;
|
2018-11-18 08:08:17 -06:00
|
|
|
obey_bhp_limit_with_thp_limit = true;
|
2018-11-17 16:14:51 -06:00
|
|
|
// TODO: the following one might need to be treated differently
|
2018-11-18 08:08:17 -06:00
|
|
|
existing_drawdown_correct_direction = true;
|
2018-11-15 05:55:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// whether the well can be operated under bhp limit
|
|
|
|
// without considering other limits.
|
|
|
|
// if it is false, then the well is not operable for sure.
|
|
|
|
bool operable_under_only_bhp_limit = true;
|
2018-11-18 08:08:17 -06:00
|
|
|
// if the well can be operated under bhp limit, will it obey(not violate)
|
2018-11-15 05:55:30 -06:00
|
|
|
// the thp limit when operated under bhp limit
|
2018-11-18 08:08:17 -06:00
|
|
|
bool obey_thp_limit_under_bhp_limit = true;
|
2018-11-15 05:55:30 -06:00
|
|
|
// whether the well operate under the thp limit only
|
2018-11-20 06:49:11 -06:00
|
|
|
bool can_obtain_bhp_with_thp_limit = true;
|
2018-11-18 08:08:17 -06:00
|
|
|
// whether the well obey bhp limit when operated under thp limit
|
|
|
|
bool obey_bhp_limit_with_thp_limit = true;
|
|
|
|
|
|
|
|
// there is some drawdown with correct sign/direction
|
|
|
|
// if all the drawdown are with wrong sign/direction, it means producer can not produce
|
|
|
|
// and injector can not inject.
|
2018-11-20 06:49:11 -06:00
|
|
|
// TODO: even there exist some drawdown with correct direction, it is still possible that
|
|
|
|
// producer can not produce and injector can not inject if the crossflow is allowed, since
|
|
|
|
// the well rate is the sum of the rates from all the perofrations
|
2018-11-18 08:08:17 -06:00
|
|
|
bool existing_drawdown_correct_direction = true;
|
2018-11-15 05:55:30 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-06-19 07:49:49 -05:00
|
|
|
#include "WellInterface_impl.hpp"
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
#endif // OPM_WELLINTERFACE_HEADER_INCLUDED
|