This commit is contained in:
goncalvesmachadoc
2023-02-10 16:16:17 +01:00
parent c5d25fa663
commit ca08609810
8 changed files with 733 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
/*
Copyright (C) 2022 Equinor
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 <http://www.gnu.org/licenses/>.
*/
#define BOOST_TEST_MODULE CarfinManagerTests
#include <boost/test/unit_test.hpp>
#include <opm/input/eclipse/EclipseState/Grid/Carfin.hpp>
#include <opm/input/eclipse/EclipseState/Grid/CarfinManager.hpp>
#include <opm/input/eclipse/EclipseState/Grid/GridDims.hpp>
#include <stdexcept>
#include <iostream>
namespace {
Opm::Carfin::IsActive allActive()
{
return [](const std::size_t) { return true; };
}
Opm::Carfin::ActiveIdx identityMapping()
{
return [](const std::size_t i) { return i; };
}
}
BOOST_AUTO_TEST_CASE(TestKeywordCarfin) {
Opm::GridDims gridDims(10,7,6);
// J2 < J1
BOOST_CHECK_THROW( Opm::Carfin(gridDims, allActive(), identityMapping(), "LGR",1,1,4,3,2,2,2,2,2), std::invalid_argument);
// J2 > nyglobal
BOOST_CHECK_THROW( Opm::Carfin(gridDims, allActive(), identityMapping(), "LGR",1,1,3,8,2,2,2,12,2), std::invalid_argument);
//nlgr % (l2-l1+1) != 0
BOOST_CHECK_THROW( Opm::Carfin(gridDims, allActive(), identityMapping(), "LGR",1,1,3,4,2,2,2,5,2), std::invalid_argument);
}
BOOST_AUTO_TEST_CASE(CreateLgr) {
Opm::Carfin lgr(Opm::GridDims{ 4, 3, 2 }, allActive(), identityMapping());
BOOST_CHECK_EQUAL( 24U , lgr.size() );
BOOST_CHECK( lgr.isGlobal() );
BOOST_CHECK_EQUAL( 4U , lgr.getDim(0) );
BOOST_CHECK_EQUAL( 3U , lgr.getDim(1) );
BOOST_CHECK_EQUAL( 2U , lgr.getDim(2) );
BOOST_CHECK_THROW( lgr.getDim(5) , std::invalid_argument);
}
BOOST_AUTO_TEST_CASE(CreateCarfinManager) {
Opm::GridDims gridDims(10,10,10);
Opm::CarfinManager carfinManager(gridDims, allActive(), identityMapping());
Opm::Carfin lgr(gridDims, allActive(), identityMapping());
BOOST_CHECK( lgr.equal( carfinManager.getActiveCarfin()) );
}
BOOST_AUTO_TEST_CASE(TestInputCarfin) {
Opm::GridDims gridDims(10,10,10);
Opm::CarfinManager carfinManager(gridDims, allActive(), identityMapping());
Opm::Carfin inputLgr( gridDims, allActive(), identityMapping(), "LGR", 1,4,1,4,1,4,4,4,4);
Opm::Carfin globalLgr( gridDims, allActive(), identityMapping() );
carfinManager.setInputCarfin("LGR", 1,4,1,4,1,4,4,4,4);
BOOST_CHECK( inputLgr.equal( carfinManager.getActiveCarfin()) );
carfinManager.endSection();
BOOST_CHECK( carfinManager.getActiveCarfin().equal(globalLgr));
}