1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
#ifndef DUNE_GEOMETRY_REFINEMENT_BASE_CC
#define DUNE_GEOMETRY_REFINEMENT_BASE_CC
/*!
* \file
*
* \brief This file contains the parts independent of a particular
* \ref Refinement implementation.
*/
#include <dune/geometry/type.hh>
namespace Dune
{
/*!
* \addtogroup Refinement Refinement
* \{
*/
/*!
* \brief This namespace contains the implementation of \ref
* Refinement.
*/
namespace RefinementImp
{
// /////////////////////////////////
//
// Declaration of RefinementImp::Traits
//
#ifdef DOXYGEN
// This is just for Doxygen
/*!
* \brief Mapping from \a geometryType, \a CoordType and \a coerceTo
* to a particular \ref Refinement implementation.
*
* \tparam topologyId The topology id of the element to refine
* \tparam CoordType The C++ type of the coordinates
* \tparam coerceToId The topologyId of the subelements
* \tparam dimension The dimension of the refinement.
* \tparam Dummy Dummy parameter which can be used for SFINAE, should
* always be void.
*
* Each \ref Refinement implementation has to define one or more
* specialisations of this struct to declare what it implements.
* Template class Refinement uses this struct to know which
* implementation it should inherit from. Since non-type template
* arguments of specializations may not involve template parameters, it is
* often impossible to specify the specialization for all cases directly.
* As the workaround, the template parameter \a Dummy can be used for
* SFINAE with \a enable_if.
*
* Each specialisation should contain a single member typedef Imp,
* e.g.:
* \code
* template<class CoordType>
* struct Traits<sphereTopologyId, CoordType, Impl::CubeToplogy<2>::id, 2>
* {
* typedef SquaringTheCircle::Refinement Imp;
* };
* \endcode
*/
template<unsigned topologyId, class CoordType,
unsigned coerceToId, int dimension, class Dummy = void>
struct Traits
{
//! The implementation this specialisation maps to
typedef SquaringTheCircle::Refinement Imp;
};
#else // !DOXYGEN
// Doxygen won't see this
template<unsigned topologyId, class CoordType,
unsigned coerceToId, int dimension, class = void>
struct Traits;
#endif // !DOXYGEN
} // namespace RefinementImp
/*!
* \brief Holds the number of refined intervals per axis needed for virtual and static refinement.
*
* To create an object of this class, call either refinementIntervals() or refinementLevels(). The first on will just
* pass its input to the constructor, the latter one will pass 2^{input} to the constructor to be consistent with the
* meaning of levels in a grid context.
*/
class RefinementIntervals{
int intervals_=1;
public:
explicit RefinementIntervals(int i) : intervals_(i) {}
int intervals() const { return intervals_; }
};
/*!
* \brief Creates a RefinementIntervals object
*
* \param intervals Number of refined intervals per axis
*/
inline RefinementIntervals refinementIntervals(int intervals)
{
return RefinementIntervals{intervals};
}
/*!
* \brief Creates a RefinementIntervals object
*
* \param levels Number of refinement levels, translates to \f$2^{levels}\f$ intervals per axis
*/
inline RefinementIntervals refinementLevels(int levels)
{
return RefinementIntervals{1<<levels};
}
// ///////////////
//
// Static Refinement
//
/*!
* \brief Wrap each \ref Refinement implementation to get a
* consistent interface
*
* \tparam topologyId The topology id of the element to refine
* \tparam CoordType The C++ type of the coordinates
* \tparam coerceToId The topology id of the subelements
* \tparam dimension The dimension of the refinement.
*/
template<unsigned topologyId, class CoordType,
unsigned coerceToId, int dimension_>
class StaticRefinement
: public RefinementImp::Traits<topologyId, CoordType,
coerceToId, dimension_ >::Imp
{
public:
#ifdef DOXYGEN
/*!
* \brief The Codim struct inherited from the \ref Refinement implementation
*
* \tparam codimension There is a different struct Codim for each codimension
*/
template<int codimension>
struct Codim
{
/*!
* \brief The SubEntityIterator for each codim
*
* This is \em some sort of type, not necessarily a typedef
*/
typedef SubEntityIterator;
};
//! The VertexIterator of the Refinement
typedef Codim<dimension>::SubEntityIterator VertexIterator;
//! The ElementIterator of the Refinement
typedef Codim<0>::SubEntityIterator ElementIterator;
/*!
* \brief The CoordVector of the Refinement
*
* This is always a typedef to a FieldVector
*/
typedef CoordVector;
/*!
* \brief The IndexVector of the Refinement
*
* This is always a typedef to a FieldVector
*/
typedef IndexVector;
#endif
typedef typename RefinementImp::Traits< topologyId, CoordType, coerceToId, dimension_>::Imp RefinementImp;
using RefinementImp::dimension;
using RefinementImp::Codim;
using typename RefinementImp::VertexIterator;
using typename RefinementImp::CoordVector;
using typename RefinementImp::ElementIterator;
using typename RefinementImp::IndexVector;
/*!
* \brief Get the number of Vertices
*
* \param tag RefinementIntervals object returned by either refinementIntervals() or refinementLevels()
*/
static int nVertices(Dune::RefinementIntervals tag)
{
return RefinementImp::nVertices(tag.intervals());
}
/*!
* \brief Get a VertexIterator
*
* \param tag RefinementIntervals object returned by either refinementIntervals() or refinementLevels()
*/
static VertexIterator vBegin(Dune::RefinementIntervals tag)
{
return RefinementImp::vBegin(tag.intervals());
}
/*!
* \brief Get a VertexIterator
*
* \param tag RefinementIntervals object returned by either refinementIntervals() or refinementLevels()
*/
static VertexIterator vEnd(Dune::RefinementIntervals tag)
{
return RefinementImp::vEnd(tag.intervals());
}
/*!
* \brief Get the number of Elements
*
* \param tag RefinementIntervals object returned by either refinementIntervals() or refinementLevels()
*/
static int nElements(Dune::RefinementIntervals tag)
{
return RefinementImp::nElements(tag.intervals());
}
/*!
* \brief Get an ElementIterator
*
* \param tag RefinementIntervals object returned by either refinementIntervals() or refinementLevels()
*/
static ElementIterator eBegin(Dune::RefinementIntervals tag)
{
return RefinementImp::eBegin(tag.intervals());
}
/*!
* \brief Get an ElementIterator
*
* \param tag RefinementIntervals object returned by either refinementIntervals() or refinementLevels()
*/
static ElementIterator eEnd(Dune::RefinementIntervals tag)
{
return RefinementImp::eEnd(tag.intervals());
}
};
/*! \} */
} // namespace Dune
#endif // DUNE_GEOMETRY_REFINEMENT_BASE_CC
|