///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2015- Statoil ASA // Copyright (C) 2015- Ceetron Solutions AS // // ResInsight 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. // // ResInsight 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 at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cvfObject.h" #include "cvfVector3.h" #include class RigMainGrid; class RigFemPart; //================================================================================================== /// //================================================================================================== class RigCaseToCaseCellMapper : public cvf::Object { public: RigCaseToCaseCellMapper( RigMainGrid* masterEclGrid, RigFemPart* dependentFemPart ); RigCaseToCaseCellMapper( RigMainGrid* masterEclGrid, RigMainGrid* dependentEclGrid ); RigCaseToCaseCellMapper( RigFemPart* masterFemPart, RigMainGrid* dependentEclGrid ); RigCaseToCaseCellMapper( RigFemPart* masterFemPart, RigFemPart* dependentFemPart ); const int* masterCaseCellIndices( int dependentCaseReservoirCellIndex, int* masterCaseCellIndexCount ) const; const RigMainGrid* masterGrid() const { return m_masterGrid; } const RigMainGrid* dependentGrid() const { return m_dependentGrid; } const RigFemPart* masterFemPart() const { return m_masterFemPart; } const RigFemPart* dependentFemPart() const { return m_dependentFemPart; } private: void addMapping( int depCaseCellIdx, int masterCaseMatchingCell ); void calculateEclToGeomCellMapping( RigMainGrid* masterEclGrid, RigFemPart* dependentFemPart, bool eclipseIsMaster ); std::vector m_masterCellOrIntervalIndex; std::vector> m_masterCellIndexSeries; RigMainGrid* m_masterGrid; RigMainGrid* m_dependentGrid; RigFemPart* m_masterFemPart; RigFemPart* m_dependentFemPart; };