Whitespace

This commit is contained in:
Joakim Hove
2021-01-15 09:47:00 +01:00
parent 7fc9d2bb73
commit bee758bc37

View File

@@ -2,43 +2,47 @@
#include <boost/test/unit_test.hpp>
#include <opm/parser/eclipse/Deck/Deck.hpp>
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Action/State.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Well/Well.hpp>
#include <opm/parser/eclipse/Parser/Parser.hpp>
#include <opm/parser/eclipse/Deck/Deck.hpp>
#include <opm/output/eclipse/AggregateWellData.hpp>
#include <opm/output/eclipse/WriteRestartHelpers.hpp>
#include <opm/output/eclipse/InteHEAD.hpp>
#include <opm/output/eclipse/VectorItems/intehead.hpp>
#include <opm/output/eclipse/VectorItems/doubhead.hpp>
#include <opm/output/eclipse/VectorItems/well.hpp>
#include <opm/output/eclipse/DoubHEAD.hpp>
#include <opm/output/eclipse/InteHEAD.hpp>
#include <opm/output/eclipse/VectorItems/doubhead.hpp>
#include <opm/output/eclipse/VectorItems/intehead.hpp>
#include <opm/output/eclipse/VectorItems/well.hpp>
#include <opm/parser/eclipse/Python/Python.hpp>
#include <opm/parser/eclipse/Units/UnitSystem.hpp>
#include <opm/parser/eclipse/Units/Units.hpp>
#include <stdexcept>
#include <utility>
#include <exception>
#include <iostream>
#include <stdexcept>
#include <string>
#include <utility>
#include <vector>
namespace {
namespace
{
Opm::Deck first_sim(std::string fname) {
Opm::Deck
first_sim(std::string fname)
{
return Opm::Parser {}.parseFile(fname);
}
}
} // namespace
Opm::SummaryState sum_state()
Opm::SummaryState
sum_state()
{
auto state = Opm::SummaryState {std::chrono::system_clock::now()};
state.update("FULPR", 460.);
@@ -48,21 +52,20 @@ namespace {
// int main(int argc, char* argv[])
struct SimulationCase
{
struct SimulationCase {
explicit SimulationCase(const Opm::Deck& deck)
: 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;
Opm::EclipseGrid grid;
std::shared_ptr<Opm::Python> python;
Opm::Schedule sched;
};
BOOST_AUTO_TEST_SUITE(LiftGasOptimization)
@@ -86,14 +89,11 @@ BOOST_AUTO_TEST_CASE (liftGasOptimzation_data)
const auto simStep = std::size_t {1};
double secs_elapsed = 3.1536E07;
const auto ih = Opm::RestartIO::Helpers::
createInteHead(es, grid, sched, secs_elapsed,
rptStep, rptStep, simStep);
const auto ih = Opm::RestartIO::Helpers::createInteHead(es, grid, sched, secs_elapsed, rptStep, rptStep, simStep);
// set dummy value for next_step_size
const double next_step_size = 0.1;
const auto dh = Opm::RestartIO::Helpers::createDoubHead(es, sched, simStep,
secs_elapsed, next_step_size);
const auto dh = Opm::RestartIO::Helpers::createDoubHead(es, sched, simStep, secs_elapsed, next_step_size);
auto wellData = Opm::RestartIO::Helpers::AggregateWellData(ih);
wellData.captureDeclaredWellData(sched, es.getUnits(), simStep, action_state, st, ih);
@@ -127,7 +127,6 @@ BOOST_AUTO_TEST_CASE (liftGasOptimzation_data)
BOOST_CHECK_EQUAL(dh[lomini], 37.);
BOOST_CHECK_EQUAL(dh[loincr], 12500);
BOOST_CHECK_EQUAL(dh[lomineg], 5E-3);
}
@@ -167,9 +166,7 @@ BOOST_AUTO_TEST_CASE (liftGasOptimzation_data)
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);
}
}
BOOST_AUTO_TEST_SUITE_END()