/* Copyright 2015 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 #if HAVE_DYNAMIC_BOOST_TEST #define BOOST_TEST_DYN_LINK #endif #define NVERBOSE // Suppress own messages when throw()in #define BOOST_TEST_MODULE PinchProcessorTest #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace Opm; BOOST_AUTO_TEST_CASE(Processing) { const std::string filename="../tests/testPinch1.DATA"; Opm::Parser parser; Opm::ParseContext parseContext({{ ParseContext::PARSE_RANDOM_SLASH , InputError::IGNORE }}); Opm::Deck deck = parser.parseFile(filename, parseContext); EclipseState eclstate(deck, parseContext); const auto& porv = eclstate.get3DProperties().getDoubleGridProperty("PORV").getData(); const auto& eclgrid = eclstate.getInputGrid(); BOOST_CHECK_EQUAL(eclgrid.getMinpvMode(), MinpvMode::EclSTD); const int nc_initial = eclgrid.getNumActive(); Opm::GridManager gridM(eclgrid, porv); typedef UnstructuredGrid Grid; const Grid& grid = *(gridM.c_grid()); const int* global_cell = Opm::UgGridHelpers::globalCell(grid); const int* cart_dims = Opm::UgGridHelpers::cartDims(grid); const int nc = Opm::UgGridHelpers::numCells(grid); BOOST_CHECK_EQUAL(nc_initial - nc, 2); // two cells are removed Opm::RockFromDeck rock; rock.init(eclstate, nc, global_cell, cart_dims); const double minpv = eclgrid.getMinpvValue(); BOOST_CHECK_EQUAL(minpv, 0.001); const double thickness = eclgrid.getPinchThresholdThickness(); BOOST_CHECK_EQUAL(thickness, 0.001); auto transMode = eclgrid.getPinchOption(); BOOST_CHECK_EQUAL(transMode, PinchMode::ModeEnum::TOPBOT); auto multzMode = eclgrid.getMultzOption(); BOOST_CHECK_EQUAL(multzMode, PinchMode::ModeEnum::TOP); PinchProcessor pinch(minpv, thickness, transMode, multzMode); std::vector actnum(nc_initial, 1); std::vector htrans(Opm::UgGridHelpers::numCellFaces(grid)); Grid* ug = const_cast(& grid); tpfa_htrans_compute(ug, rock.permeability(), htrans.data()); const auto& transMult = eclstate.getTransMult(); std::vector multz(nc, 0.0); for (int i = 0; i < nc; ++i) { multz[i] = transMult.getMultiplier(global_cell[i], Opm::FaceDir::ZPlus); } Opm::NNC nnc(deck); pinch.process(grid, htrans, actnum, multz, porv, nnc); std::vector nncdata = nnc.nncdata(); BOOST_CHECK(nnc.hasNNC()); BOOST_CHECK_EQUAL(nnc.numNNC(), 1); auto nnc1_index = 1 + cart_dims[0] * (0 + cart_dims[1] * 0); auto nnc2_index = 1 + cart_dims[0] * (0 + cart_dims[1] * 3); BOOST_CHECK_EQUAL(nncdata[0].cell1, nnc1_index); BOOST_CHECK_EQUAL(nncdata[0].cell2, nnc2_index); std::cout << "WARNING. The opmfil option is hardcoded i.e. the calculated transmissibility is wrong"; // double factor = Opm::prefix::centi*Opm::unit::Poise // * Opm::unit::cubic(Opm::unit::meter) // / Opm::unit::day // / Opm::unit::barsa; // double trans = unit::convert::to(nncdata[0].trans, factor); //BOOST_CHECK(std::fabs(trans - 4.26350022) < 1e-3); }