/* Copyright 2015 IRIS 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 namespace Opm { NNC::NNC(Opm::DeckConstPtr deck, EclipseGridConstPtr eclipseGrid) { const std::vector& nncs = deck->getKeywordList(); for (size_t idx_nnc = 0; idx_nncsize(); for (size_t i = 0; i ijk1; ijk1[0] = static_cast(nnc->getRecord(i)->getItem(0)->getInt(0)-1); ijk1[1] = static_cast(nnc->getRecord(i)->getItem(1)->getInt(0)-1); ijk1[2] = static_cast(nnc->getRecord(i)->getItem(2)->getInt(0)-1); size_t global_index1 = eclipseGrid->getGlobalIndex(ijk1[0],ijk1[1],ijk1[2]); std::array ijk2; ijk2[0] = static_cast(nnc->getRecord(i)->getItem(3)->getInt(0)-1); ijk2[1] = static_cast(nnc->getRecord(i)->getItem(4)->getInt(0)-1); ijk2[2] = static_cast(nnc->getRecord(i)->getItem(5)->getInt(0)-1); size_t global_index2 = eclipseGrid->getGlobalIndex(ijk2[0],ijk2[1],ijk2[2]); const double trans = nnc->getRecord(i)->getItem(6)->getSIDouble(0); addNNC(global_index1,global_index2,trans); } } } void NNC::addNNC(const size_t NNC1, const size_t NNC2, const double trans) { m_nnc1.push_back(NNC1); m_nnc2.push_back(NNC2); m_trans.push_back(trans); } size_t NNC::numNNC() const { return(m_nnc1.size()); } bool NNC::hasNNC() const { return m_nnc1.size()>0; } } // namespace Opm