/* Copyright 2014 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 . */ #include #include #include #include #define BOOST_TEST_MODULE EclipseGridTests #include #include #include #include #include #include #include #include #include // forward declarations to avoid some pedantic warnings Opm::DeckKeywordConstPtr createSATNUMKeyword( ); Opm::DeckKeywordConstPtr createTABDIMSKeyword( ); BOOST_AUTO_TEST_CASE(Empty) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("SATNUM" , 77, "1"); Opm::GridProperty gridProperty( 5 , 5 , 4 , keywordInfo); const std::vector& data = gridProperty.getData(); BOOST_CHECK_EQUAL( 100U , data.size()); BOOST_CHECK_EQUAL( 100U , gridProperty.getCartesianSize()); BOOST_CHECK_EQUAL( 5U , gridProperty.getNX()); BOOST_CHECK_EQUAL( 5U , gridProperty.getNY()); BOOST_CHECK_EQUAL( 4U , gridProperty.getNZ()); for (size_t k=0; k < 4; k++) { for (size_t j=0; j < 5; j++) { for (size_t i=0; i < 5; i++) { size_t g = i + j*5 + k*25; BOOST_CHECK_EQUAL( 77 , data[g] ); BOOST_CHECK_EQUAL( 77 , gridProperty.iget( g )); BOOST_CHECK_EQUAL( 77 , gridProperty.iget( i,j,k )); } } } } BOOST_AUTO_TEST_CASE(HasNAN) { double nan = std::numeric_limits::quiet_NaN(); typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("PORO" , nan , "1"); Opm::GridProperty poro( 2 , 2 , 1 , keywordInfo); BOOST_CHECK( poro.containsNaN() ); poro.iset(0,0.15); poro.iset(1,0.15); poro.iset(2,0.15); BOOST_CHECK( poro.containsNaN() ); poro.iset(3,0.15); BOOST_CHECK( !poro.containsNaN() ); } BOOST_AUTO_TEST_CASE(EmptyDefault) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("SATNUM" , 0, "1"); Opm::GridProperty gridProperty( /*nx=*/10, /*ny=*/10, /*nz=*/1 , keywordInfo); const std::vector& data = gridProperty.getData(); BOOST_CHECK_EQUAL( 100U , data.size()); for (size_t i=0; i < data.size(); i++) BOOST_CHECK_EQUAL( 0 , data[i] ); } Opm::DeckKeywordConstPtr createSATNUMKeyword( ) { const char *deckData = "SATNUM \n" " 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 / \n" "\n"; Opm::ParserPtr parser(new Opm::Parser()); Opm::DeckPtr deck = parser->parseString(deckData); return deck->getKeyword("SATNUM"); } Opm::DeckKeywordConstPtr createTABDIMSKeyword( ) { const char *deckData = "TABDIMS\n" " 0 1 2 3 4 5 / \n" "\n"; Opm::ParserPtr parser(new Opm::Parser()); Opm::DeckPtr deck = parser->parseString(deckData); return deck->getKeyword("TABDIMS"); } BOOST_AUTO_TEST_CASE(SetFromDeckKeyword_notData_Throws) { Opm::DeckKeywordConstPtr tabdimsKw = createTABDIMSKeyword(); typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("TABDIMS" , 100, "1"); Opm::GridProperty gridProperty( 6 ,1,1 , keywordInfo); BOOST_CHECK_THROW( gridProperty.loadFromDeckKeyword( tabdimsKw ) , std::invalid_argument ); } BOOST_AUTO_TEST_CASE(SetFromDeckKeyword_wrong_size_throws) { Opm::DeckKeywordConstPtr satnumKw = createSATNUMKeyword(); typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("SATNUM" , 66, "1"); Opm::GridProperty gridProperty( 15 ,1,1, keywordInfo); BOOST_CHECK_THROW( gridProperty.loadFromDeckKeyword( satnumKw ) , std::invalid_argument ); } BOOST_AUTO_TEST_CASE(SetFromDeckKeyword) { Opm::DeckKeywordConstPtr satnumKw = createSATNUMKeyword(); typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("SATNUM" , 99, "1"); Opm::GridProperty gridProperty( 4 , 4 , 2 , keywordInfo); gridProperty.loadFromDeckKeyword( satnumKw ); const std::vector& data = gridProperty.getData(); for (size_t k=0; k < 2; k++) { for (size_t j=0; j < 4; j++) { for (size_t i=0; i < 4; i++) { size_t g = i + j*4 + k*16; BOOST_CHECK_EQUAL( g , data[g] ); BOOST_CHECK_EQUAL( g , gridProperty.iget(g) ); BOOST_CHECK_EQUAL( g , gridProperty.iget(i,j,k) ); } } } } BOOST_AUTO_TEST_CASE(copy) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo1("P1" , 0, "1"); SupportedKeywordInfo keywordInfo2("P2" , 9, "1"); Opm::GridProperty prop1( 4 , 4 , 2 , keywordInfo1); Opm::GridProperty prop2( 4 , 4 , 2 , keywordInfo2); Opm::Box global(4,4,2); std::shared_ptr layer0 = std::make_shared(global , 0,3,0,3,0,0); prop2.copyFrom(prop1 , layer0); for (size_t j=0; j < 4; j++) { for (size_t i=0; i < 4; i++) { BOOST_CHECK_EQUAL( prop2.iget(i,j,0) , 0 ); BOOST_CHECK_EQUAL( prop2.iget(i,j,1) , 9 ); } } } BOOST_AUTO_TEST_CASE(SCALE) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo1("P1" , 1, "1"); SupportedKeywordInfo keywordInfo2("P2" , 9, "1"); Opm::GridProperty prop1( 4 , 4 , 2 , keywordInfo1); Opm::GridProperty prop2( 4 , 4 , 2 , keywordInfo2); std::shared_ptr global = std::make_shared(4,4,2); std::shared_ptr layer0 = std::make_shared(*global , 0,3,0,3,0,0); prop2.copyFrom(prop1 , layer0); prop2.scale( 2 , global ); prop2.scale( 2 , layer0 ); for (size_t j=0; j < 4; j++) { for (size_t i=0; i < 4; i++) { BOOST_CHECK_EQUAL( prop2.iget(i,j,0) , 4 ); BOOST_CHECK_EQUAL( prop2.iget(i,j,1) , 18 ); } } } BOOST_AUTO_TEST_CASE(SET) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("P1" , 1, "1"); Opm::GridProperty prop( 4 , 4 , 2 , keywordInfo); std::shared_ptr global = std::make_shared(4,4,2); std::shared_ptr layer0 = std::make_shared(*global , 0,3,0,3,0,0); prop.setScalar( 2 , global ); prop.setScalar( 4 , layer0 ); for (size_t j=0; j < 4; j++) { for (size_t i=0; i < 4; i++) { BOOST_CHECK_EQUAL( prop.iget(i,j,0) , 4 ); BOOST_CHECK_EQUAL( prop.iget(i,j,1) , 2 ); } } } BOOST_AUTO_TEST_CASE(ADD) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo1("P1" , 1, "1"); SupportedKeywordInfo keywordInfo2("P2" , 9, "1"); Opm::GridProperty prop1( 4 , 4 , 2 , keywordInfo1); Opm::GridProperty prop2( 4 , 4 , 2 , keywordInfo2); std::shared_ptr global = std::make_shared(4,4,2); std::shared_ptr layer0 = std::make_shared(*global , 0,3,0,3,0,0); prop2.copyFrom(prop1 , layer0); prop2.add( 2 , global ); prop2.add( 2 , layer0 ); for (size_t j=0; j < 4; j++) { for (size_t i=0; i < 4; i++) { BOOST_CHECK_EQUAL( prop2.iget(i,j,0) , 5 ); BOOST_CHECK_EQUAL( prop2.iget(i,j,1) , 11 ); } } } BOOST_AUTO_TEST_CASE(GridPropertyInitializers) { const char *deckString = "RUNSPEC\n" "\n" "TABDIMS\n" "3 /\n" "\n" "METRIC\n" "\n" "DIMENS\n" "3 3 3 /\n" "\n" "GRID\n" "\n" "DXV\n" "1 1 1 /\n" "\n" "DYV\n" "1 1 1 /\n" "\n" "DZV\n" "1 1 1 /\n" "\n" "TOPS\n" "9*100 /\n" "\n" "PROPS\n" "\n" "SWOF\n" // table 1 // S_w k_r,w k_r,o p_c,ow " 0.1 0 1.0 2.0\n" " 0.15 0 0.9 1.0\n" " 0.2 0.01 0.5 0.5\n" " 0.93 0.91 0.0 0.0\n" "/\n" // table 2 // S_w k_r,w k_r,o p_c,ow " 0.05 0.01 1.0 2.0\n" " 0.10 0.02 0.9 1.0\n" " 0.15 0.03 0.5 0.5\n" " 0.852 1.00 0.0 0.0\n" "/\n" // table 3 // S_w k_r,w k_r,o p_c,ow " 0.00 0.01 0.9 2.0\n" " 0.05 0.02 0.8 1.0\n" " 0.10 0.03 0.5 0.5\n" " 0.801 1.00 0.0 0.0\n" "/\n" "\n" "SGOF\n" // table 1 // S_g k_r,g k_r,o p_c,og " 0.00 0.01 0.9 2.0\n" " 0.05 0.02 0.8 1.0\n" " 0.10 0.03 0.5 0.5\n" " 0.80 1.00 0.0 0.0\n" "/\n" // table 2 // S_g k_r,g k_r,o p_c,og " 0.05 0.01 1.0 2\n" " 0.10 0.02 0.9 1\n" " 0.15 0.03 0.5 0.5\n" " 0.85 1.00 0.0 0\n" "/\n" // table 3 // S_g k_r,g k_r,o p_c,og " 0.1 0 1.0 2\n" " 0.15 0 0.9 1\n" " 0.2 0.01 0.5 0.5\n" " 0.9 0.91 0.0 0\n" "/\n" "\n" "SWU\n" "* /\n" "\n" "ISGU\n" "* /\n" "\n" "SGCR\n" "* /\n" "\n" "ISGCR\n" "* /\n" "\n" "REGIONS\n" "\n" "SATNUM\n" "9*1 9*2 9*3 /\n" "\n" "IMBNUM\n" "9*3 9*2 9*1 /\n" "\n" "SOLUTION\n" "\n" "SCHEDULE\n"; Opm::ParserPtr parser(new Opm::Parser); auto deck = parser->parseString(deckString); auto eclipseState = std::make_shared(deck); BOOST_CHECK(eclipseState->hasIntGridProperty("SATNUM")); BOOST_CHECK(eclipseState->hasIntGridProperty("IMBNUM")); BOOST_CHECK(eclipseState->hasDoubleGridProperty("SWU")); BOOST_CHECK(eclipseState->hasDoubleGridProperty("ISGU")); BOOST_CHECK(eclipseState->hasDoubleGridProperty("SGCR")); BOOST_CHECK(eclipseState->hasDoubleGridProperty("ISGCR")); const auto& swuPropData = eclipseState->getDoubleGridProperty("SWU")->getData(); BOOST_CHECK_EQUAL(swuPropData[0 * 3*3], 0.93); BOOST_CHECK_EQUAL(swuPropData[1 * 3*3], 0.852); BOOST_CHECK_EQUAL(swuPropData[2 * 3*3], 0.801); const auto& sguPropData = eclipseState->getDoubleGridProperty("ISGU")->getData(); BOOST_CHECK_EQUAL(sguPropData[0 * 3*3], 0.9); BOOST_CHECK_EQUAL(sguPropData[1 * 3*3], 0.85); BOOST_CHECK_EQUAL(sguPropData[2 * 3*3], 0.80); } template class TestPostProcessorMul : public Opm::GridPropertyBasePostProcessor { public: TestPostProcessorMul(ValueType factor) { m_factor = factor; } void apply(std::vector& values) const { for (size_t g = 0; g < values.size(); g++) values[g] *= m_factor; }; private: ValueType m_factor; }; static Opm::DeckPtr createDeck() { const char *deckData = "RUNSPEC\n" "\n" "DIMENS\n" " 10 10 10 /\n" "GRID\n" "DX\n" "1000*0.25 /\n" "DYV\n" "10*0.25 /\n" "DZ\n" "1000*0.25 /\n" "TOPS\n" "100*0.25 /\n" "MULTPV \n" "1000*0.10 / \n" "PORO \n" "1000*0.10 / \n" "EDIT\n" "\n"; Opm::ParserPtr parser(new Opm::Parser()); return parser->parseString(deckData) ; } BOOST_AUTO_TEST_CASE(GridPropertyPostProcessors) { std::shared_ptr > testPostP = std::make_shared >(2.0); typedef Opm::GridPropertySupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo kwInfo1("MULTPV" , 1.0 , "1"); SupportedKeywordInfo kwInfo2("PORO" , 1.0 , testPostP , "1"); std::shared_ptr > supportedKeywords(new std::vector{ kwInfo1 , kwInfo2 }); Opm::DeckPtr deck = createDeck(); std::shared_ptr grid = std::make_shared(deck); Opm::GridProperties properties(grid, supportedKeywords); { auto poro = properties.getKeyword("PORO"); auto multpv = properties.getKeyword("MULTPV"); poro->loadFromDeckKeyword( deck->getKeyword("PORO" , 0)); multpv->loadFromDeckKeyword( deck->getKeyword("MULTPV" , 0)); if (poro->postProcessorRunRequired()) poro->runPostProcessor(); if (multpv->postProcessorRunRequired()) multpv->runPostProcessor(); for (size_t g = 0; g < 1000; g++) { BOOST_CHECK_EQUAL( multpv->iget(g) , 0.10 ); BOOST_CHECK_EQUAL( poro->iget(g) , 0.20 ); } if (poro->postProcessorRunRequired()) poro->runPostProcessor(); if (multpv->postProcessorRunRequired()) multpv->runPostProcessor(); for (size_t g = 0; g < 1000; g++) { BOOST_CHECK_EQUAL( multpv->iget(g) , 0.10 ); BOOST_CHECK_EQUAL( poro->iget(g) , 0.20 ); } } BOOST_CHECK( !kwInfo1.hasPostProcessor() ); BOOST_CHECK( kwInfo2.hasPostProcessor() ); } BOOST_AUTO_TEST_CASE(multiply) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo("P" , 10 , "1"); Opm::GridProperty p1( 5 , 5 , 4 , keywordInfo); Opm::GridProperty p2( 5 , 5 , 5 , keywordInfo); Opm::GridProperty p3( 5 , 5 , 4 , keywordInfo); BOOST_CHECK_THROW( p1.multiplyWith(p2) , std::invalid_argument ); p1.multiplyWith(p3); for (size_t g = 0; g < p1.getCartesianSize(); g++) BOOST_CHECK_EQUAL( 100 , p1.iget(g)); } BOOST_AUTO_TEST_CASE(mask_test) { typedef Opm::GridProperty::SupportedKeywordInfo SupportedKeywordInfo; SupportedKeywordInfo keywordInfo1("P" , 10 , "1"); SupportedKeywordInfo keywordInfo2("P" , 20 , "1"); Opm::GridProperty p1( 5 , 5 , 4 , keywordInfo1); Opm::GridProperty p2( 5 , 5 , 4 , keywordInfo2); std::vector mask; p1.initMask(10 , mask); p2.maskedSet( 10 , mask); for (size_t g = 0; g < p1.getCartesianSize(); g++) BOOST_CHECK_EQUAL( p1.iget(g) , p2.iget(g)); } BOOST_AUTO_TEST_CASE(kw_test) { Opm::GridProperty::SupportedKeywordInfo keywordInfo1("P" , 10 , "1"); Opm::GridProperty::SupportedKeywordInfo keywordInfo2("P" , 20 , "1"); Opm::GridProperty p1( 5 , 5 , 4 , keywordInfo1); Opm::GridProperty p2( 5 , 5 , 4 , keywordInfo2); ERT::EclKW kw1 = p1.getEclKW(); ERT::EclKW kw2 = p2.getEclKW(); for (size_t g = 0; g < kw1.size(); g++) BOOST_CHECK_EQUAL( p1.iget(g) , kw1[g]); for (size_t g = 0; g < kw2.size(); g++) BOOST_CHECK_EQUAL( p2.iget(g) , kw2[g]); }