// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- // vi: set et ts=4 sw=4 sts=4: /* 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 2 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 . Consult the COPYING file in the top-level source directory of this module for the precise wording of the license and the list of copyright holders. */ /*! * \file * \copydoc Opm::SimplexGridVanguard */ #ifndef EWOMS_SIMPLEX_GRID_VANGUARD_HH #define EWOMS_SIMPLEX_GRID_VANGUARD_HH #include #include #include #include #include #include namespace Opm { /*! * \brief Provides a simulator vanguard which a creates regular grid made of simplices. */ template class SimplexGridVanguard { using ParentType = BaseVanguard; using Scalar = GetPropType; using Simulator = GetPropType; using Grid = GetPropType; using GridPointer = std::unique_ptr; using CoordScalar = typename Grid::ctype; enum { dimWorld = Grid::dimensionworld }; using GlobalPosition = Dune::FieldVector; public: /*! * \brief Register all run-time parameters for the grid manager. */ static void registerParameters() { Parameters::registerParam ("The number of global refinements of the grid " "executed after it was loaded"); Parameters::registerParam ("The size of the domain in x direction"); Parameters::registerParam ("The number of intervalls in x direction"); if (dimWorld > 1) { Parameters::registerParam ("The size of the domain in y direction"); Parameters::registerParam ("The number of intervalls in y direction"); } if (dimWorld > 2) { Parameters::registerParam ("The size of the domain in z direction"); Parameters::registerParam ("The number of intervalls in z direction"); } } /*! * \brief Create the Grid */ SimplexGridVanguard(Simulator& simulator) : ParentType(simulator) { Dune::array cellRes; GlobalPosition upperRight; GlobalPosition lowerLeft; lowerLeft[0] = 0.0; upperRight[0] = Parameters::get(); cellRes[0] = Parameters::get(); if (dimWorld > 1) { lowerLeft[1] = 0.0; upperRight[1] = Parameters::get(); cellRes[1] = Parameters::get(); } if (dimWorld > 2) { lowerLeft[2] = 0.0; upperRight[2] = Parameters::get(); cellRes[2] = Parameters::get(); } simplexGrid_ = Dune::StructuredGridFactory::createSimplexGrid(lowerLeft, upperRight, cellRes); unsigned numRefinments = Parameters::get(); simplexGrid_->globalRefine(numRefinments); this->finalizeInit_(); } /*! * \brief Returns a reference to the grid. */ Grid& grid() { return simplexGrid_; } /*! * \brief Returns a reference to the grid. */ const Grid& grid() const { return *simplexGrid_; } private: GridPointer simplexGrid_; }; } // namespace Opm #endif