/*
Copyright (C) 2019 by Norce
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 .
*/
#define BOOST_TEST_MODULE SaltTableTests
#include
#include
#include
#include
#include
#include
// generic table classes
#include
#include
#include
// keyword specific table classes
#include
#include
#include
#include
#include
#include
#include
#include
using namespace Opm;
inline std::string prefix() {
return boost::unit_test::framework::master_test_suite().argv[1];
}
BOOST_AUTO_TEST_CASE( Brine ) {
const char *deckData =
"TABDIMS\n"
"1 1/\n"
"\n"
"EQLDIMS\n"
"1 /\n"
"\n"
"PVTWSALT\n"
" 1000 0.0/\n"
" 0 1 2 3 4 \n"
" 10 11 12 13 14/\n"
"\n"
"RWGSALT\n"
" 300 0.0 0.00013 \n"
" 70.0 0.00012 \n"
" 140.0 0.00011 /\n"
" 600 0.5 0.00016 \n"
" 70.0 0.00015 \n"
" 140.0 0.00014 /\n"
"/ \n"
"PERMFACT\n"
"0 0 \n"
"0.5 0.5 \n"
"1 1 \n"
"1.5 1.5\n"
"/ \n"
"BDENSITY\n"
" 1000 1050 /\n"
"\n"
"SALTVD\n"
"500 0\n"
"550 50/\n"
"\n"
"SALTPVD\n"
"500 0\n"
"550 0.5/\n"
"\n";
Opm::Parser parser;
auto deck = parser.parseString(deckData);
Opm::TableManager tables(deck);
const auto& PvtwsaltTables = tables.getPvtwSaltTables( );
BOOST_CHECK_EQUAL(1U, PvtwsaltTables.size() );
BOOST_CHECK_EQUAL(2U, PvtwsaltTables[0].size());
const auto& PvtwsaltTable1 = PvtwsaltTables[0];
BOOST_CHECK_EQUAL (PvtwsaltTable1.getSaltConcentrationColumn().size(), 2U);
BOOST_CHECK_CLOSE (PvtwsaltTable1.getSaltConcentrationColumn()[1], 10, 1e-5);
BOOST_CHECK_EQUAL (PvtwsaltTable1.getFormationVolumeFactorColumn().size(), 2U);
BOOST_CHECK_CLOSE (PvtwsaltTable1.getFormationVolumeFactorColumn()[0], 1, 1e-5);
BOOST_CHECK_EQUAL (PvtwsaltTable1.getCompressibilityColumn().size(), 2U);
BOOST_CHECK_CLOSE (PvtwsaltTable1.getCompressibilityColumn()[1], 12/1e5, 1e-5);
BOOST_CHECK_EQUAL (PvtwsaltTable1.getViscosityColumn().size(), 2U);
BOOST_CHECK_CLOSE (PvtwsaltTable1.getViscosityColumn()[1], 13*0.001, 1e-5);
BOOST_CHECK_CLOSE (PvtwsaltTable1.getReferencePressureValue(), 1000*1e5, 1e-5);
const auto& RwgsaltTables = tables.getRwgSaltTables( );
BOOST_CHECK_EQUAL(1U, RwgsaltTables.size() );
BOOST_CHECK_EQUAL(2U, RwgsaltTables[0].size());
const auto& RwgsaltTable1 = RwgsaltTables[0];
const auto& underSaturatedTable = RwgsaltTable1.getUnderSaturatedTable(0);
BOOST_CHECK_EQUAL(underSaturatedTable.numColumns( ) , 2);
BOOST_CHECK_EQUAL(underSaturatedTable.numRows( ) , 3);
{
UnitSystem units(UnitSystem::UnitType::UNIT_TYPE_METRIC );
{
const auto& col = underSaturatedTable.getColumn(0);
BOOST_CHECK_CLOSE(col[0] , units.to_si(UnitSystem::measure::salinity, 0.0), 1e-3);
BOOST_CHECK_CLOSE(col[2] , units.to_si(UnitSystem::measure::salinity, 140.0), 1e-3);
}
{
const auto& col = underSaturatedTable.getColumn(1);
BOOST_CHECK_EQUAL(col[0] , 0.00013);
BOOST_CHECK_EQUAL(col[2] , 0.00011);
}
}
const auto& saturatedTable = RwgsaltTable1.getSaturatedTable();
BOOST_CHECK_EQUAL(saturatedTable.numColumns( ) , 3);
BOOST_CHECK_EQUAL(saturatedTable.numRows( ) , 2);
{
UnitSystem units(UnitSystem::UnitType::UNIT_TYPE_METRIC );
{
const auto& col = saturatedTable.getColumn(0);
BOOST_CHECK_CLOSE(col[0] , units.to_si(UnitSystem::measure::pressure, 300.0), 1e-3);
BOOST_CHECK_CLOSE(col[1] , units.to_si(UnitSystem::measure::pressure, 600.0), 1e-3);
}
{
const auto& col = saturatedTable.getColumn(2);
BOOST_CHECK_EQUAL(col[0] , 0.00013);
BOOST_CHECK_EQUAL(col[1] , 0.00016);
}
}
const auto& BdensityTables = tables.getBrineDensityTables( );
const auto& BdensityTable1 = BdensityTables[0];
BOOST_CHECK_EQUAL(1U, BdensityTables.size() );
BOOST_CHECK_EQUAL (BdensityTable1.getBrineDensityColumn().size(), 2U);
BOOST_CHECK_CLOSE (BdensityTable1.getBrineDensityColumn()[1], 1050, 1e-5);
const Opm::TableContainer& saltvdTables = tables.getSaltvdTables();
const auto& saltvdTable = saltvdTables.getTable(0);
BOOST_CHECK_EQUAL(saltvdTable.getDepthColumn().size(), 2U);
BOOST_CHECK_CLOSE (saltvdTable.getSaltColumn() [1],50, 1e-5);
const Opm::TableContainer& saltpvdTables = tables.getSaltpvdTables();
const auto& saltpvdTable = saltpvdTables.getTable(0);
BOOST_CHECK_EQUAL(saltpvdTable.getDepthColumn().size(), 2U);
BOOST_CHECK_CLOSE(saltpvdTable.getSaltpColumn() [1],0.5, 1e-5);
const Opm::TableContainer& permfactTables = tables.getPermfactTables();
const auto& permfactTable = permfactTables.getTable(0);
BOOST_CHECK_EQUAL(permfactTable.getPorosityChangeColumn().size(), 4U);
BOOST_CHECK_CLOSE(permfactTable.getPermeabilityMultiplierColumn() [3],1.5, 1e-5);
}
BOOST_AUTO_TEST_CASE( Saltsol ) {
const char *deckData =
"TABDIMS\n"
"1 2/\n"
"\n"
"SALTSOL\n"
"8.0 2170.0/\n"
"9.0 2100.0/\n"
"\n"
;
Opm::Parser parser;
auto deck = parser.parseString(deckData);
Opm::TableManager tables(deck);
const Opm::TableContainer& saltsolTables = tables.getSaltsolTables();
const auto& saltsolTable1 = saltsolTables.getTable(0);
BOOST_CHECK_EQUAL(saltsolTable1.getSaltsolColumn().size(), 1U);
BOOST_CHECK_CLOSE(saltsolTable1.getSaltsolColumn() [0], 8.0, 1e-5);
const auto& saltsolTable2 = saltsolTables.getTable(1);
BOOST_CHECK_EQUAL(saltsolTable2.getSaltsolColumn().size(), 1U);
BOOST_CHECK_CLOSE(saltsolTable2.getSaltsolColumn() [0], 9.0, 1e-5);
BOOST_CHECK_CLOSE(saltsolTable2.getSaltdenColumn() [0], 2100.0, 1e-5);
}