mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-28 02:00:59 -06:00
56 lines
2.0 KiB
C++
56 lines
2.0 KiB
C++
|
/*
|
||
|
Copyright 2016 SINTEF ICT, Applied Mathematics.
|
||
|
Copyright 2016 - 2017 Statoil ASA.
|
||
|
Copyright 2017 Dr. Blatt - HPC-Simulation-Software & Services
|
||
|
Copyright 2016 - 2018 IRIS AS
|
||
|
|
||
|
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/>.
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
#include <opm/simulators/wells/BlackoilWellModelRestart.hpp>
|
||
|
|
||
|
#include <opm/simulators/wells/PerforationData.hpp>
|
||
|
#include <opm/simulators/wells/SingleWellState.hpp>
|
||
|
|
||
|
namespace Opm {
|
||
|
|
||
|
void BlackoilWellModelRestart::
|
||
|
loadRestartConnectionData(const std::vector<data::Rates::opt>& phs,
|
||
|
const data::Well& rst_well,
|
||
|
const std::vector<PerforationData>& old_perf_data,
|
||
|
SingleWellState& ws) const
|
||
|
{
|
||
|
auto& perf_data = ws.perf_data;
|
||
|
auto perf_pressure = perf_data.pressure.begin();
|
||
|
auto perf_rates = perf_data.rates.begin();
|
||
|
auto perf_phase_rates = perf_data.phase_rates.begin();
|
||
|
|
||
|
for (const auto& pd : old_perf_data) {
|
||
|
const auto& rst_connection = rst_well.connections[pd.ecl_index];
|
||
|
|
||
|
*perf_pressure = rst_connection.pressure; ++perf_pressure;
|
||
|
*perf_rates = rst_connection.reservoir_rate; ++perf_rates;
|
||
|
|
||
|
for (const auto& phase : phs) {
|
||
|
*perf_phase_rates = rst_connection.rates.get(phase);
|
||
|
++perf_phase_rates;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // namespace Opm
|