2017-06-15 04:34:07 -05:00
|
|
|
/*
|
|
|
|
Copyright 2017 SINTEF ICT, Applied Mathematics.
|
|
|
|
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_WELLINTERFACE_HEADER_INCLUDED
|
|
|
|
#define OPM_WELLINTERFACE_HEADER_INCLUDED
|
|
|
|
|
2017-06-20 03:54:33 -05:00
|
|
|
#include <opm/common/OpmLog/OpmLog.hpp>
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Well.hpp>
|
|
|
|
#include <opm/core/wells.h>
|
|
|
|
#include <opm/core/well_controls.h>
|
|
|
|
#include <opm/core/props/BlackoilPhases.hpp>
|
|
|
|
|
|
|
|
#include <opm/autodiff/VFPProperties.hpp>
|
|
|
|
#include <opm/autodiff/VFPInjProperties.hpp>
|
|
|
|
#include <opm/autodiff/VFPProdProperties.hpp>
|
|
|
|
#include <opm/autodiff/WellHelpers.hpp>
|
|
|
|
#include <opm/autodiff/WellStateFullyImplicitBlackoilDense.hpp>
|
2017-06-22 08:37:54 -05:00
|
|
|
#include <opm/autodiff/BlackoilModelParameters.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:
|
|
|
|
|
|
|
|
using WellState = WellStateFullyImplicitBlackoilDense;
|
|
|
|
|
2017-06-26 07:35:43 -05:00
|
|
|
typedef BlackoilModelParameters ModelParameters;
|
2017-06-19 08:05:15 -05:00
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, Simulator) Simulator;
|
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
|
|
|
typedef typename GET_PROP_TYPE(TypeTag, Indices) BlackoilIndices;
|
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;
|
2017-06-19 08:05:15 -05:00
|
|
|
|
|
|
|
static const int solventCompIdx = 3; //TODO get this from ebos
|
2017-06-19 09:46:06 -05:00
|
|
|
static const bool has_solvent = GET_PROP_VALUE(TypeTag, EnableSolvent);
|
2017-06-19 08:05:15 -05:00
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
/// Constructor
|
2017-06-15 10:19:49 -05:00
|
|
|
WellInterface(const Well* well, const int time_step, const Wells* wells);
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
/// Well name.
|
|
|
|
const std::string& name() const;
|
|
|
|
|
|
|
|
/// The index of the well in Wells struct
|
|
|
|
// It is used to locate the inforation in Wells and also WellState for now.
|
|
|
|
int indexOfWell() const;
|
|
|
|
|
|
|
|
/// Well type, INJECTOR or PRODUCER.
|
|
|
|
WellType wellType() const;
|
|
|
|
|
|
|
|
/// number of phases
|
|
|
|
int numberOfPhases() const;
|
|
|
|
|
|
|
|
/// Component fractions for each phase for the well
|
|
|
|
const std::vector<double>& compFrac() const;
|
|
|
|
|
|
|
|
/// Well controls
|
|
|
|
// TODO: later to see whether we need to return const.
|
|
|
|
WellControls* wellControls() const;
|
|
|
|
|
|
|
|
/// Number of the perforations
|
|
|
|
int numberOfPerforations() const;
|
|
|
|
|
|
|
|
/// Well productivity index for each perforation.
|
|
|
|
const std::vector<double>& wellIndex() const;
|
|
|
|
|
|
|
|
/// Depth of perforations
|
|
|
|
const std::vector<double>& perfDepth() const;
|
|
|
|
|
|
|
|
/// Indices of the grid cells/blocks that perforations are completed within.
|
|
|
|
const std::vector<int>& wellCells() const;
|
|
|
|
|
|
|
|
// TODO: the following function should be able to be removed by refactoring the well class
|
|
|
|
// It is probably only needed for StandardWell
|
|
|
|
/// the densities of the fluid in each perforation
|
|
|
|
virtual const std::vector<double>& perfDensities() const = 0;
|
|
|
|
virtual std::vector<double>& perfDensities() = 0;
|
|
|
|
|
|
|
|
/// the pressure difference between different perforations
|
|
|
|
virtual const std::vector<double>& perfPressureDiffs() const = 0;
|
|
|
|
virtual std::vector<double>& perfPressureDiffs() = 0;
|
|
|
|
|
2017-06-21 07:07:11 -05:00
|
|
|
// TODO: the parameters need to be optimized/adjusted
|
2017-06-15 04:34:07 -05:00
|
|
|
void init(const PhaseUsage* phase_usage_arg,
|
|
|
|
const std::vector<bool>* active_arg,
|
|
|
|
const VFPProperties* vfp_properties_arg,
|
2017-06-21 07:07:11 -05:00
|
|
|
const double gravity_arg,
|
|
|
|
const int num_cells);
|
2017-06-15 04:34:07 -05:00
|
|
|
|
|
|
|
// TODO: temporary
|
|
|
|
virtual void setWellVariables(const WellState& well_state) = 0;
|
|
|
|
|
|
|
|
const std::vector<bool>& active() const;
|
|
|
|
|
|
|
|
const PhaseUsage& phaseUsage() const;
|
|
|
|
|
2017-06-19 08:05:15 -05:00
|
|
|
int flowPhaseToEbosCompIdx( const int phaseIdx ) const;
|
|
|
|
|
|
|
|
int flowToEbosPvIdx( const int flowPv ) const;
|
|
|
|
|
|
|
|
int flowPhaseToEbosPhaseIdx( const int phaseIdx ) const;
|
|
|
|
|
2017-06-19 09:46:06 -05:00
|
|
|
int numPhases() const;
|
|
|
|
|
|
|
|
int numComponents() const;
|
|
|
|
|
2017-06-21 07:07:11 -05:00
|
|
|
bool allowCrossFlow() const;
|
|
|
|
|
|
|
|
// TODO: for this kind of function, maybe can make a function with parameter perf
|
|
|
|
const std::vector<int>& saturationTableNumber() const;
|
|
|
|
|
2017-06-23 03:58:46 -05:00
|
|
|
const double wsolvent() const;
|
|
|
|
|
2017-06-26 07:35:43 -05:00
|
|
|
virtual bool getWellConvergence(Simulator& ebosSimulator,
|
|
|
|
std::vector<double>& B_avg,
|
|
|
|
const ModelParameters& param) const = 0;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
protected:
|
2017-06-19 09:46:06 -05:00
|
|
|
// TODO: some variables shared by all the wells should be made static
|
2017-06-15 04:34:07 -05:00
|
|
|
// well name
|
|
|
|
std::string name_;
|
|
|
|
|
|
|
|
// the index of well in Wells struct
|
|
|
|
int index_of_well_;
|
|
|
|
|
|
|
|
// well type
|
|
|
|
// INJECTOR or PRODUCER
|
|
|
|
enum WellType well_type_;
|
|
|
|
|
2017-06-21 07:07:11 -05:00
|
|
|
// whether the well allows crossflow
|
|
|
|
bool allow_cf_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
// 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
|
|
|
|
// TODO: later will check whehter to let it stay with pointer
|
|
|
|
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
|
|
|
|
// TODO: it might not be needed if we refactor WellState to be a vector
|
|
|
|
// 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
|
|
|
|
int ref_depth_;
|
|
|
|
|
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
|
|
|
|
std::vector<int> well_cell_;
|
|
|
|
|
2017-06-21 07:07:11 -05:00
|
|
|
// saturation table nubmer for each well perforation
|
|
|
|
std::vector<int> saturation_table_number_;
|
|
|
|
|
2017-06-15 04:34:07 -05:00
|
|
|
const PhaseUsage* phase_usage_;
|
|
|
|
|
|
|
|
const std::vector<bool>* active_;
|
|
|
|
|
|
|
|
const VFPProperties* vfp_properties_;
|
|
|
|
|
|
|
|
double gravity_;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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
|