2012-05-16 07:37:55 -05:00
|
|
|
/*
|
|
|
|
Copyright 2012 SINTEF ICT, Applied Mathematics.
|
|
|
|
|
|
|
|
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_WELLSTATE_HEADER_INCLUDED
|
|
|
|
#define OPM_WELLSTATE_HEADER_INCLUDED
|
|
|
|
|
2013-03-18 04:33:34 -05:00
|
|
|
#include <opm/core/wells.h>
|
2012-05-16 07:37:55 -05:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
2012-06-06 06:42:25 -05:00
|
|
|
/// The state of a set of wells.
|
2012-05-16 07:37:55 -05:00
|
|
|
class WellState
|
|
|
|
{
|
|
|
|
public:
|
2012-06-06 06:42:25 -05:00
|
|
|
/// Allocate and initialize if wells is non-null.
|
2013-06-02 14:58:30 -05:00
|
|
|
/// Also tries to give useful initial values to the bhp() and
|
|
|
|
/// wellRates() fields, depending on controls. The
|
|
|
|
/// perfRates() field is filled with zero, and perfPress()
|
|
|
|
/// with -1e100.
|
2012-05-21 09:39:05 -05:00
|
|
|
template <class State>
|
|
|
|
void init(const Wells* wells, const State& state)
|
2012-05-16 07:37:55 -05:00
|
|
|
{
|
|
|
|
if (wells) {
|
2012-05-21 09:39:05 -05:00
|
|
|
const int nw = wells->number_of_wells;
|
2013-06-02 14:58:30 -05:00
|
|
|
const int np = wells->number_of_phases;
|
2012-05-21 09:39:05 -05:00
|
|
|
bhp_.resize(nw);
|
2013-06-02 14:58:30 -05:00
|
|
|
wellrates_.resize(nw * np, 0.0);
|
2012-05-21 09:39:05 -05:00
|
|
|
for (int w = 0; w < nw; ++w) {
|
2012-09-14 02:53:11 -05:00
|
|
|
const WellControls* ctrl = wells->ctrls[w];
|
2013-06-02 14:58:30 -05:00
|
|
|
// Initialize bhp to be target pressure if
|
|
|
|
// bhp-controlled well, otherwise set to a little
|
|
|
|
// above or below (depending on if the well is an
|
|
|
|
// injector or producer) pressure in first perforation
|
|
|
|
// cell.
|
2013-01-18 06:23:37 -06:00
|
|
|
if ((ctrl->current < 0) || // SHUT
|
|
|
|
(ctrl->type[ctrl->current] != BHP)) {
|
2013-06-02 14:58:30 -05:00
|
|
|
const int first_cell = wells->well_cells[wells->well_connpos[w]];
|
2013-05-30 04:03:08 -05:00
|
|
|
const double safety_factor = (wells->type[w] == INJECTOR) ? 1.01 : 0.99;
|
2013-06-02 14:58:30 -05:00
|
|
|
bhp_[w] = safety_factor*state.pressure()[first_cell];
|
|
|
|
} else {
|
2013-01-18 06:23:37 -06:00
|
|
|
bhp_[w] = ctrl->target[ctrl->current];
|
|
|
|
}
|
2013-06-02 14:58:30 -05:00
|
|
|
// Initialize well rates to match controls if type is SURFACE_RATE
|
2013-06-02 15:19:43 -05:00
|
|
|
if ((ctrl->current >= 0) && // open well
|
2013-06-02 16:30:43 -05:00
|
|
|
(ctrl->type[ctrl->current] == SURFACE_RATE)) {
|
2013-06-02 14:58:30 -05:00
|
|
|
const double rate_target = ctrl->target[ctrl->current];
|
|
|
|
for (int p = 0; p < np; ++p) {
|
2013-06-02 16:30:43 -05:00
|
|
|
const double phase_distr = ctrl->distr[np * ctrl->current + p];
|
2013-06-02 14:58:30 -05:00
|
|
|
wellrates_[np*w + p] = rate_target * phase_distr;
|
|
|
|
}
|
|
|
|
}
|
2012-05-21 09:39:05 -05:00
|
|
|
}
|
2013-06-02 14:58:30 -05:00
|
|
|
// The perforation rates and perforation pressures are
|
|
|
|
// not expected to be consistent with bhp_ and wellrates_
|
|
|
|
// after init().
|
2012-10-01 09:39:35 -05:00
|
|
|
perfrates_.resize(wells->well_connpos[nw], 0.0);
|
|
|
|
perfpress_.resize(wells->well_connpos[nw], -1e100);
|
2012-05-16 07:37:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-06 06:42:25 -05:00
|
|
|
/// One bhp pressure per well.
|
2012-05-16 07:37:55 -05:00
|
|
|
std::vector<double>& bhp() { return bhp_; }
|
|
|
|
const std::vector<double>& bhp() const { return bhp_; }
|
|
|
|
|
2013-05-21 16:54:30 -05:00
|
|
|
/// One rate per well and phase.
|
|
|
|
std::vector<double>& wellRates() { return wellrates_; }
|
|
|
|
const std::vector<double>& wellRates() const { return wellrates_; }
|
|
|
|
|
2012-06-06 06:42:25 -05:00
|
|
|
/// One rate per well connection.
|
2012-05-16 07:37:55 -05:00
|
|
|
std::vector<double>& perfRates() { return perfrates_; }
|
|
|
|
const std::vector<double>& perfRates() const { return perfrates_; }
|
|
|
|
|
2012-10-01 09:39:35 -05:00
|
|
|
/// One pressure per well connection.
|
|
|
|
std::vector<double>& perfPress() { return perfpress_; }
|
|
|
|
const std::vector<double>& perfPress() const { return perfpress_; }
|
|
|
|
|
2012-05-16 07:37:55 -05:00
|
|
|
private:
|
|
|
|
std::vector<double> bhp_;
|
2013-05-21 16:54:30 -05:00
|
|
|
std::vector<double> wellrates_;
|
2012-05-16 07:37:55 -05:00
|
|
|
std::vector<double> perfrates_;
|
2012-10-01 09:39:35 -05:00
|
|
|
std::vector<double> perfpress_;
|
2012-05-16 07:37:55 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
|
|
|
|
#endif // OPM_WELLSTATE_HEADER_INCLUDED
|