- The calculation of well connection transmissibility CF and effective permeability is calculated. - The Connection objects are immutable; should never be updated. - The properties of the Connection class are just plain properties, have removed getter methods and the use of Value<double>.
73 lines
2.7 KiB
C++
73 lines
2.7 KiB
C++
/*
|
|
Copyright 2016 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/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#define BOOST_TEST_MODULE serialize_SCON_TEST
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <opm/parser/eclipse/Parser/Parser.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
|
|
#include <ert/ecl_well/well_const.h> // containts SCON_CF_INDEX
|
|
#include <opm/output/eclipse/WriteRestartHelpers.hpp>
|
|
|
|
BOOST_AUTO_TEST_CASE( serialize_scon_test )
|
|
{
|
|
const Opm::Deck deck(Opm::Parser{}.parseFile("FIRST_SIM.DATA"));
|
|
Opm::UnitSystem units(Opm::UnitSystem::UnitType::UNIT_TYPE_METRIC); // Unit system used in deck FIRST_SIM.DATA.
|
|
const Opm::EclipseState state(deck);
|
|
const Opm::Schedule schedule(deck, state);
|
|
const Opm::TimeMap timemap(deck);
|
|
|
|
|
|
for (size_t tstep = 0; tstep != timemap.numTimesteps(); ++tstep) {
|
|
|
|
const size_t ncwmax = schedule.getMaxNumConnectionsForWells(tstep);
|
|
|
|
const int SCONZ = 40; // normally obtained from InteHead
|
|
const auto wells = schedule.getWells(tstep);
|
|
|
|
const std::vector<double> scondata =
|
|
Opm::RestartIO::Helpers::serialize_SCON(tstep,
|
|
ncwmax,
|
|
SCONZ,
|
|
wells,
|
|
units);
|
|
size_t w_offset = 0;
|
|
for (const auto w : wells) {
|
|
|
|
size_t c_offset = 0;
|
|
for (const auto c : w->getConnections(tstep)) {
|
|
|
|
const size_t offset = w_offset + c_offset;
|
|
const double expected_cf = units.from_si(Opm::UnitSystem::measure::transmissibility, c.CF());
|
|
const double expected_kh = units.from_si(Opm::UnitSystem::measure::effective_Kh, c.Kh());
|
|
BOOST_CHECK_EQUAL(scondata[offset + SCON_CF_INDEX],
|
|
expected_cf);
|
|
BOOST_CHECK_EQUAL(scondata[offset + SCON_KH_INDEX],
|
|
expected_kh);
|
|
|
|
c_offset += SCONZ;
|
|
}
|
|
w_offset += (SCONZ * ncwmax);
|
|
}
|
|
}
|
|
};
|
|
|