mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-24 10:10:18 -06:00
712a7c8131
Includes: - SubDomain struct, - simple partitioning utilities for testing, - some matrix and vector manipulation functions, - tests for the above.
60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
/*
|
|
Copyright 2021 SINTEF Digital, Mathematics and Cybernetics.
|
|
|
|
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/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#define BOOST_TEST_MODULE OPM_test_aspinPartition
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <opm/simulators/flow/partitionCells.hpp>
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(FileBased)
|
|
{
|
|
auto [part, num_part] = Opm::partitionCellsFromFile("test10.partition", 10);
|
|
BOOST_CHECK_EQUAL(num_part, 3);
|
|
std::vector<int> expected = { 0, 0, 1, 1, 2, 2, 1, 1, 0, 0 };
|
|
BOOST_CHECK_EQUAL_COLLECTIONS(expected.begin(), expected.end(), part.begin(), part.end());
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(FileBasedWrongNumberOfCells)
|
|
{
|
|
auto func = []() { auto [part, num_part] = Opm::partitionCellsFromFile("test10.partition", 11); };
|
|
BOOST_CHECK_THROW(func(), std::runtime_error);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(Simple1)
|
|
{
|
|
auto [part, num_part] = Opm::partitionCellsSimple(10, 3);
|
|
BOOST_CHECK_EQUAL(num_part, 3);
|
|
std::vector<int> expected = { 0, 0, 0, 0, 1, 1, 1, 2, 2, 2 };
|
|
BOOST_CHECK_EQUAL_COLLECTIONS(expected.begin(), expected.end(), part.begin(), part.end());
|
|
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(Simple2)
|
|
{
|
|
auto [part, num_part] = Opm::partitionCellsSimple(10, 7);
|
|
BOOST_CHECK_EQUAL(num_part, 7);
|
|
std::vector<int> expected = { 0, 0, 1, 1, 2, 2, 3, 4, 5, 6 };
|
|
BOOST_CHECK_EQUAL_COLLECTIONS(expected.begin(), expected.end(), part.begin(), part.end());
|
|
|
|
}
|
|
|