opm-common/tests/test_LGOData.cpp

177 lines
5.8 KiB
C++
Raw Normal View History

#define BOOST_TEST_MODULE UDQ_Data
#include <boost/test/unit_test.hpp>
#include <opm/input/eclipse/Deck/Deck.hpp>
#include <opm/input/eclipse/EclipseState/EclipseState.hpp>
#include <opm/input/eclipse/Schedule/Action/State.hpp>
#include <opm/input/eclipse/Schedule/Schedule.hpp>
#include <opm/input/eclipse/Schedule/SummaryState.hpp>
#include <opm/input/eclipse/Schedule/Well/Well.hpp>
#include <opm/input/eclipse/Schedule/Well/WellTestState.hpp>
#include <opm/input/eclipse/Parser/Parser.hpp>
#include <opm/input/eclipse/EclipseState/TracerConfig.hpp>
#include <opm/output/eclipse/AggregateWellData.hpp>
#include <opm/output/eclipse/WriteRestartHelpers.hpp>
2021-01-15 02:47:00 -06:00
#include <opm/output/eclipse/DoubHEAD.hpp>
#include <opm/output/eclipse/InteHEAD.hpp>
#include <opm/output/eclipse/VectorItems/doubhead.hpp>
2021-01-15 02:47:00 -06:00
#include <opm/output/eclipse/VectorItems/intehead.hpp>
#include <opm/output/eclipse/VectorItems/well.hpp>
#include <opm/input/eclipse/Python/Python.hpp>
#include <opm/input/eclipse/Units/UnitSystem.hpp>
#include <opm/input/eclipse/Units/Units.hpp>
2021-02-28 10:04:35 -06:00
#include <opm/common/utility/TimeService.hpp>
#include <exception>
#include <iostream>
2021-01-15 02:47:00 -06:00
#include <stdexcept>
#include <string>
2021-01-15 02:47:00 -06:00
#include <utility>
#include <vector>
2021-01-15 02:47:00 -06:00
namespace
{
Opm::Deck
first_sim(std::string fname)
{
return Opm::Parser {}.parseFile(fname);
}
2021-01-15 02:47:00 -06:00
} // namespace
2021-01-15 02:47:00 -06:00
Opm::SummaryState
sum_state()
{
2021-02-28 10:04:35 -06:00
auto state = Opm::SummaryState {Opm::TimeService::now()};
2021-01-15 02:47:00 -06:00
state.update("FULPR", 460.);
2021-01-15 02:47:00 -06:00
return state;
}
2021-01-15 02:47:00 -06:00
// int main(int argc, char* argv[])
struct SimulationCase {
explicit SimulationCase(const Opm::Deck& deck)
2021-01-15 02:47:00 -06:00
: es {deck}
, grid {deck}
, python {std::make_shared<Opm::Python>()}
, sched {deck, es, python}
{
}
// Order requirement: 'es' must be declared/initialised before 'sched'.
Opm::EclipseState es;
2021-01-15 02:47:00 -06:00
Opm::EclipseGrid grid;
std::shared_ptr<Opm::Python> python;
2021-01-15 02:47:00 -06:00
Opm::Schedule sched;
};
2021-01-15 02:47:00 -06:00
2020-11-25 03:53:02 -06:00
BOOST_AUTO_TEST_SUITE(LiftGasOptimization)
2020-11-25 03:53:02 -06:00
// test lift gas optimisation data
2021-01-15 02:47:00 -06:00
BOOST_AUTO_TEST_CASE(liftGasOptimzation_data)
{
2021-01-15 02:47:00 -06:00
const auto simCase = SimulationCase {first_sim("2_WLIFT_MODEL5_NOINC.DATA")};
Opm::EclipseState es = simCase.es;
Opm::SummaryState st = sum_state();
2021-01-15 02:47:00 -06:00
Opm::Schedule sched = simCase.sched;
Opm::EclipseGrid grid = simCase.grid;
// const auto& ioConfig = es.getIOConfig();
Opm::Action::State action_state;
// Report Step 1: 2020-01-01
2021-01-15 02:47:00 -06:00
const auto rptStep = std::size_t {2};
const auto simStep = std::size_t {1};
double secs_elapsed = 3.1536E07;
2021-01-15 02:47:00 -06:00
const auto ih = Opm::RestartIO::Helpers::createInteHead(es, grid, sched, secs_elapsed, rptStep, rptStep, simStep);
2021-01-15 02:47:00 -06:00
// set dummy value for next_step_size
const double next_step_size = 0.1;
const auto dh = Opm::RestartIO::Helpers::createDoubHead(es, sched, simStep, simStep+1, secs_elapsed, next_step_size);
auto wellData = Opm::RestartIO::Helpers::AggregateWellData(ih);
2021-11-19 05:33:14 -06:00
wellData.captureDeclaredWellData(sched, Opm::TracerConfig{}, simStep, action_state, {}, st, ih);
// intehead data
auto eachnc = Opm::RestartIO::Helpers::VectorItems::intehead::EACHNCITS;
auto niwelz = Opm::RestartIO::Helpers::VectorItems::intehead::NIWELZ;
auto nswelz = Opm::RestartIO::Helpers::VectorItems::intehead::NSWELZ;
// doubhead data
auto lomini = Opm::RestartIO::Helpers::VectorItems::doubhead::LOminInt;
auto loincr = Opm::RestartIO::Helpers::VectorItems::doubhead::LOincrsz;
auto lomineg = Opm::RestartIO::Helpers::VectorItems::doubhead::LOminEcGrad;
// iwel data
auto liftopt = static_cast<std::size_t>(Opm::RestartIO::Helpers::VectorItems::IWell::index::LiftOpt);
// swel data
auto lomaxrate = static_cast<std::size_t>(Opm::RestartIO::Helpers::VectorItems::SWell::index::LOmaxRate);
auto lominrate = static_cast<std::size_t>(Opm::RestartIO::Helpers::VectorItems::SWell::index::LOminRate);
auto loweightfac = static_cast<std::size_t>(Opm::RestartIO::Helpers::VectorItems::SWell::index::LOweightFac);
{
/*
Check of InteHEAD and DoubHEAD data for LIFTOPT variables
*/
2021-01-15 02:47:00 -06:00
BOOST_CHECK_EQUAL(ih[eachnc], 2);
BOOST_CHECK_EQUAL(dh[lomini], 37.);
BOOST_CHECK_EQUAL(dh[loincr], 12500);
BOOST_CHECK_EQUAL(dh[lomineg], 5E-3);
}
2021-01-15 02:47:00 -06:00
{
// IWEL
2021-01-15 02:47:00 -06:00
const auto& iWel = wellData.getIWell();
2021-01-15 02:47:00 -06:00
auto start = 0 * static_cast<std::size_t>(ih[niwelz]);
BOOST_CHECK_EQUAL(iWel[start + liftopt], 1);
start = 1 * static_cast<std::size_t>(ih[niwelz]);
BOOST_CHECK_EQUAL(iWel[start + liftopt], 0);
}
2021-01-15 02:47:00 -06:00
{
// SWEL
const auto& sWel = wellData.getSWell();
2021-01-15 02:47:00 -06:00
auto start = 0 * static_cast<std::size_t>(ih[nswelz]);
BOOST_CHECK_CLOSE(sWel[start + lomaxrate], 150000.f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + lominrate], -1.0f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + loweightfac], 1.01f, 1.0e-7f);
start = 1 * static_cast<std::size_t>(ih[nswelz]);
BOOST_CHECK_CLOSE(sWel[start + lomaxrate], 150000.f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + lominrate], 0.0f, 1.0e-7f); // default value since item 2 for this well is 'NO'
BOOST_CHECK_CLOSE(sWel[start + loweightfac], 1.0f, 1.0e-7f); // default value since item 2 for this well is 'NO'
start = 2 * static_cast<std::size_t>(ih[nswelz]);
BOOST_CHECK_CLOSE(sWel[start + lomaxrate], 150000.f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + lominrate], 3.0f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + loweightfac], 1.21f, 1.0e-7f);
start = 3 * static_cast<std::size_t>(ih[nswelz]);
BOOST_CHECK_CLOSE(sWel[start + lomaxrate], 150000.f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + lominrate], 0.f, 1.0e-7f);
BOOST_CHECK_CLOSE(sWel[start + loweightfac], 1.01f, 1.0e-7f);
}
}
2021-01-15 02:47:00 -06:00
BOOST_AUTO_TEST_SUITE_END()