mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-28 20:13:49 -06:00
begin the class WellStateMSWell
it will be for each individual MS well. it is kind of the start of the refactoring of the WellState.
This commit is contained in:
parent
359de15f2b
commit
b5323b1b79
@ -252,6 +252,7 @@ list (APPEND PUBLIC_HEADER_FILES
|
||||
opm/autodiff/StandardWell_impl.hpp
|
||||
opm/autodiff/MultisegmentWell.hpp
|
||||
opm/autodiff/MultisegmentWell_impl.hpp
|
||||
opm/autodiff/WellStateMSWell.hpp
|
||||
opm/autodiff/StandardWellsDense.hpp
|
||||
opm/autodiff/StandardWellsSolvent.hpp
|
||||
opm/autodiff/StandardWellsSolvent_impl.hpp
|
||||
|
@ -135,6 +135,12 @@ namespace Opm
|
||||
|
||||
virtual void updatePrimaryVariables(const WellState& well_state) const;
|
||||
|
||||
/// number of segments for this well
|
||||
/// int number_of_segments_;
|
||||
int numberOfSegments() const;
|
||||
|
||||
int numberOfPerforations() const;
|
||||
|
||||
protected:
|
||||
int number_segments_;
|
||||
|
||||
@ -157,9 +163,6 @@ namespace Opm
|
||||
// TODO: trying to use the information from the Well opm-parser as much
|
||||
// as possible, it will possibly be re-implemented later for efficiency reason.
|
||||
|
||||
// number of segments for this well
|
||||
// int number_of_segments_;
|
||||
int numberOfSegments() const;
|
||||
|
||||
// indices of the gird blocks that segments locate at.
|
||||
// TODO: the grid cell related to a segment should be calculated based on the location
|
||||
|
152
opm/autodiff/WellStateMSWell.hpp
Normal file
152
opm/autodiff/WellStateMSWell.hpp
Normal file
@ -0,0 +1,152 @@
|
||||
/*
|
||||
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_WELLSTATEMSWELL_HEADER_INCLUDED
|
||||
#define OPM_WELLSTATEMSWELL_HEADER_INCLUDED
|
||||
|
||||
#include <opm/autodiff/MultisegmentWell.hpp>
|
||||
|
||||
namespace Opm
|
||||
{
|
||||
// TODO: eventually, there should be a base class for WellState
|
||||
// TODO: the copy from old WellState should be trival
|
||||
class WellStateMSWell
|
||||
{
|
||||
public:
|
||||
// TODO: looks like will need ResarvoirState.
|
||||
explicit WellStateMSWell(const std::unique_ptr<MultisegmentWell>& ms_well)
|
||||
: well_name_(ms_well->name())
|
||||
, nseg_(ms_well->numberOfSegments())
|
||||
, nperf_(ms_well->numberOfPerforations())
|
||||
, num_phases_(ms_well->numPhases())
|
||||
, wellrate_(num_phases_)
|
||||
, segphaserate_(nseg_ * num_phases_)
|
||||
, segpress_(nseg_)
|
||||
{
|
||||
const WellControls* ctrl = ms_well->wellControls();
|
||||
current_control_ = well_controls_get_current(ctrl);
|
||||
|
||||
if (!well_controls_well_is_stopped(ctrl)) {
|
||||
// Open Wells
|
||||
// 1. Rates: initialize well rates to match controls if type is SURFACE_RATE. Otherwise, we
|
||||
// cannot set the correct value here, so we aasign a small rate with the correct sign so that any
|
||||
// logic depending on that sign will work as expected.
|
||||
if (well_controls_get_current_type(ctrl) == SURFACE_RATE) {
|
||||
const double rate_target = well_controls_get_current_target(ctrl);
|
||||
const double* distr = well_controls_get_current_distr( ctrl );
|
||||
for (int p = 0; p < num_phases_; ++p) {
|
||||
wellrate_[p] = rate_target * distr[p];
|
||||
}
|
||||
} else {
|
||||
const double small_rate = 1e-14;
|
||||
const double sign = (ms_well->wellType() == INJECTOR) ? 1.0 : -1.0;
|
||||
for (int p = 0; p < np; ++p) {
|
||||
wellrate_[p] = small_rate * sign;
|
||||
}
|
||||
}
|
||||
|
||||
// 2. Bhp:
|
||||
if (well_controls_get_current_type(ctrl) == BHP) {
|
||||
bhp_ = well_controls_get_current_target(ctrl);
|
||||
} else {
|
||||
const int first_cell = ms_well->wellCells()[0];
|
||||
const double safety_factor = (ms_well->wellType() == INJECTOR) ? 1.01 : 0.99;
|
||||
bhp_ = safety_factor* state.pressure()[first_cell];
|
||||
}
|
||||
// 3. Thp:
|
||||
if (well_controls_get_current_type(ctrl) == THP) {
|
||||
thp_ = well_controls_get_current_target(ctrl);
|
||||
} else {
|
||||
thp_ = bhp_;
|
||||
}
|
||||
|
||||
// 4. Perf rates and pressures
|
||||
for (int i = 0; i < nperf_; ++i) {
|
||||
for (int p = 0; p < num_phases_; ++p) {
|
||||
perfphaserates_ [np * i + p] = wellrate_[p] / double(nperf_);
|
||||
}
|
||||
const double safety_factor = (ms_well->wellType() == INJECTOR) ? 1.01 : 0.99;
|
||||
const int cell_index = ms_well->wellCells()[i];
|
||||
perfpress_[i] = safety_factor * state.pressure()[cell_index];
|
||||
}
|
||||
|
||||
// 5. Segment pressures and rates
|
||||
// top segment
|
||||
segpress_[0] = bhp_;
|
||||
for (int i = 1; i < nseg_; ++i) {
|
||||
// the first perforation of the segment
|
||||
const int first_perforation = ms_well-> [0];
|
||||
segpress_[i] = perfpress_[first_perforation];
|
||||
}
|
||||
// segment rates
|
||||
for (int i = 1; i < nseg_; ++i) {
|
||||
// basically summ up the perforations
|
||||
}
|
||||
} else {
|
||||
// Stopped well
|
||||
// 1. WellRates: 0
|
||||
// 2. Bhp: assign bhp equal to bhp control, if applicable, otherwise
|
||||
// assign equal to first perforation cell pressure.
|
||||
if (well_controls_get_current_type(ctrl) == BHP) {
|
||||
bhp_[w] = well_controls_get_current_target(ctrl);
|
||||
} else {
|
||||
const int first_cell = ms_well->wellCells()[0];
|
||||
bhp_[w] = state.pressure()[first_cell];
|
||||
}
|
||||
// 3. Thp: assign thp equal to thp control, if applicable,
|
||||
// otherwise assign equal to bhp value.
|
||||
if (well_controls_get_current_type(ctrl) == THP) {
|
||||
thp()[w] = well_controls_get_current_target( ctrl );
|
||||
} else {
|
||||
thp()[w] = bhp()[w];
|
||||
}
|
||||
// 4. Perforation pressures and phase rates
|
||||
// 5. Segment pressures and phase rates
|
||||
}
|
||||
}
|
||||
private:
|
||||
// well name is the id of the well
|
||||
const std::string& well_name_;
|
||||
// number of segments
|
||||
const int nseg_;
|
||||
// number of perforations
|
||||
const int nperf_;
|
||||
// number of phases
|
||||
const int num_phases_;
|
||||
// bhp
|
||||
double bhp_;
|
||||
// thp
|
||||
double thp_;
|
||||
// well rates
|
||||
std::vector<double> wellrate_;
|
||||
// segment phase rates
|
||||
std::vector<double> segphaserate_;
|
||||
// segment pressure
|
||||
std::vector<double> segpress_;
|
||||
// perforation phase rates // TODO: it can go to the base class, since STDWells also have that
|
||||
std::vector<double> perfphaserates_;
|
||||
// current control
|
||||
int current_control_;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user