// -*- 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::CubeGridVanguard */ #ifndef EWOMS_CUBE_GRID_VANGUARD_HH #define EWOMS_CUBE_GRID_VANGUARD_HH #include #include #include #include #include #include #include namespace Opm { /*! * \brief Provides a simulator vanguad which creates a regular grid made of * quadrilaterals. * * A quadrilateral is a line segment in 1D, a rectangle in 2D and a * cube in 3D. */ template class CubeGridVanguard : public BaseVanguard { 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 simulator vanguad. */ static void registerParameters() { EWOMS_REGISTER_PARAM(TypeTag, unsigned, GridGlobalRefinements, "The number of global refinements of the grid " "executed after it was loaded"); EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeX, "The size of the domain in x direction"); EWOMS_REGISTER_PARAM(TypeTag, unsigned, CellsX, "The number of intervalls in x direction"); if (dimWorld > 1) { EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeY, "The size of the domain in y direction"); EWOMS_REGISTER_PARAM(TypeTag, unsigned, CellsY, "The number of intervalls in y direction"); } if (dimWorld > 2) { EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeZ, "The size of the domain in z direction"); EWOMS_REGISTER_PARAM(TypeTag, unsigned, CellsZ, "The number of intervalls in z direction"); } } /*! * \brief Create the grid */ CubeGridVanguard(Simulator& simulator) : ParentType(simulator) { std::array cellRes; GlobalPosition upperRight(0.0); GlobalPosition lowerLeft(0.0); for (unsigned i = 0; i < dimWorld; ++i) cellRes[i] = 0; upperRight[0] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeX); cellRes[0] = EWOMS_GET_PARAM(TypeTag, unsigned, CellsX); if (dimWorld > 1) { upperRight[1] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeY); cellRes[1] = EWOMS_GET_PARAM(TypeTag, unsigned, CellsY); } if (dimWorld > 2) { upperRight[2] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeZ); cellRes[2] = EWOMS_GET_PARAM(TypeTag, unsigned, CellsZ); } unsigned numRefinements = EWOMS_GET_PARAM(TypeTag, unsigned, GridGlobalRefinements); cubeGrid_ = Dune::StructuredGridFactory::createCubeGrid(lowerLeft, upperRight, cellRes); cubeGrid_->globalRefine(static_cast(numRefinements)); this->finalizeInit_(); } /*! * \brief Returns a reference to the grid. */ Grid& grid() { return *cubeGrid_; } /*! * \brief Returns a reference to the grid. */ const Grid& grid() const { return *cubeGrid_; } protected: GridPointer cubeGrid_; }; } // namespace Opm #endif