/*
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
#define BOOST_TEST_MODULE EclipseGridTests
#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.size());
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(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);
}