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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_RAVIARTTHOMASBASIS_HH
#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_RAVIARTTHOMASBASIS_HH
#include <array>
#include <dune/common/exceptions.hh>
#include <dune/localfunctions/raviartthomas.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas0cube2d.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas0cube3d.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas02d.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas1cube2d.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas1cube3d.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas12d.hh>
#include <dune/localfunctions/raviartthomas/raviartthomas2cube2d.hh>
#include <dune/typetree/leafnode.hh>
#include <dune/functions/functionspacebases/nodes.hh>
#include <dune/functions/functionspacebases/defaultglobalbasis.hh>
#include <dune/functions/functionspacebases/flatmultiindex.hh>
namespace Dune {
namespace Functions {
namespace Impl {
template<int dim, GeometryType::BasicType basic_type, typename D, typename R, std::size_t k>
struct RaviartThomasLocalInfo
{
static_assert((AlwaysFalse<D>::value),"The requested type of Raviart-Thomas element is not implemented, sorry!");
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<2,GeometryType::simplex,D,R,0>
{
using FiniteElement = RT02DLocalFiniteElement<D,R>;
static const std::size_t Variants = 8;
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<2,GeometryType::simplex,D,R,1>
{
using FiniteElement = RT12DLocalFiniteElement<D,R>;
static const std::size_t Variants = 8;
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<2,GeometryType::cube,D,R,0>
{
using FiniteElement = RT0Cube2DLocalFiniteElement<D,R>;
static const std::size_t Variants = 16;
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<2,GeometryType::cube,D,R,1>
{
using FiniteElement = RT1Cube2DLocalFiniteElement<D,R>;
static const std::size_t Variants = 16;
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<2,GeometryType::cube,D,R,2>
{
using FiniteElement = RT2Cube2DLocalFiniteElement<D,R>;
static const std::size_t Variants = 16;
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<3,GeometryType::cube,D,R,0>
{
using FiniteElement = RT0Cube3DLocalFiniteElement<D,R>;
static const std::size_t Variants = 64;
};
template<typename D, typename R>
struct RaviartThomasLocalInfo<3,GeometryType::cube,D,R,1>
{
using FiniteElement = RT1Cube3DLocalFiniteElement<D,R>;
static const std::size_t Variants = 64;
};
template<typename GV, int dim, GeometryType::BasicType basic_type, typename D, typename R, std::size_t k>
class RaviartThomasLocalFiniteElementMap
{
static const std::size_t Variants = RaviartThomasLocalInfo<dim, basic_type, D, R, k>::Variants;
public:
using FiniteElement = typename RaviartThomasLocalInfo<dim, basic_type, D, R, k>::FiniteElement;
RaviartThomasLocalFiniteElementMap(const GV& gv)
: gv_(gv), is_(&(gv_.indexSet())), orient_(gv.size(0))
{
// create all variants
for (size_t i = 0; i < Variants; i++)
variant_[i] = FiniteElement(i);
// compute orientation for all elements
// loop once over the grid
for(const auto& cell : elements(gv))
{
unsigned int myId = is_->index(cell);
orient_[myId] = 0;
for (const auto& intersection : intersections(gv,cell))
{
if (intersection.neighbor() && (is_->index(intersection.outside()) > myId))
orient_[myId] |= (1 << intersection.indexInInside());
}
}
}
//! \brief get local basis functions for entity
template<class EntityType>
const FiniteElement& find(const EntityType& e) const
{
return variant_[orient_[is_->index(e)]];
}
private:
GV gv_;
std::array<FiniteElement,Variants> variant_;
const typename GV::IndexSet* is_;
std::vector<unsigned char> orient_;
};
} // namespace Impl
// *****************************************************************************
// This is the reusable part of the basis. It contains
//
// RaviartThomasPreBasis
// RaviartThomasNodeIndexSet
// RaviartThomasNode
//
// The pre-basis allows to create the others and is the owner of possible shared
// state. These three components do _not_ depend on the global basis or index
// set and can be used without a global basis.
// *****************************************************************************
template<typename GV, int k, typename ST, typename TP, GeometryType::BasicType basic_type>
class RaviartThomasNode;
template<typename GV, int k, class MI, class TP, class ST, GeometryType::BasicType basic_type>
class RaviartThomasNodeIndexSet;
template<typename GV, int k, class MI, class ST, GeometryType::BasicType basic_type>
class RaviartThomasPreBasis;
template<typename GV, int k, class MI, class ST, GeometryType::BasicType basic_type>
class RaviartThomasPreBasis
{
static const int dim = GV::dimension;
using FiniteElementMap = typename Impl::RaviartThomasLocalFiniteElementMap<GV, dim, basic_type, typename GV::ctype, double, k>;
private:
template<typename, int, class, class, class, GeometryType::BasicType>
friend class RaviartThomasNodeIndexSet;
public:
/** \brief The grid view that the FE space is defined on */
using GridView = GV;
using size_type = ST;
// Precompute the number of dofs per entity type depending on the entity's codimension and the grid's type (only valid for cube and simplex grids)
// for 3D only for cubes k=0,1
// Note: dofsPerElement = dofsPerFace * dim for cubes, k=0,1
const static int dofsPerFace = dim == 2 ? k+1 : 3*k+1;
const static int dofsPerElement = dim == 2 ? (basic_type == GeometryType::cube ? k*(k+1)*dim : k*dim) : k*(k+1)*(k+1)*dim;
const std::vector<int> dofsPerCodim {dofsPerElement, dofsPerFace};
template<class TP>
using Node = RaviartThomasNode<GV, k, size_type, TP, basic_type>;
template<class TP>
using IndexSet = RaviartThomasNodeIndexSet<GV, k, MI, TP, ST, basic_type>;
/** \brief Type used for global numbering of the basis vectors */
using MultiIndex = MI;
using SizePrefix = Dune::ReservedVector<size_type, 1>;
/** \brief Constructor for a given grid view object */
RaviartThomasPreBasis(const GridView& gv) :
gridView_(gv),
finiteElementMap_(gv)
{ }
void initializeIndices()
{
codimOffset_.resize(2);
codimOffset_[0] = 0;
codimOffset_[1] = codimOffset_[0] + dofsPerCodim[0] * gridView_.size(0);
}
/** \brief Obtain the grid view that the basis is defined on
*/
const GridView& gridView() const
{
return gridView_;
}
/* \brief Update the stored grid view, to be called if the grid has changed */
void update (const GridView& gv)
{
gridView_ = gv;
}
template<class TP>
Node<TP> node(const TP& tp) const
{
return Node<TP>{tp, &finiteElementMap_};
}
template<class TP>
IndexSet<TP> indexSet() const
{
return IndexSet<TP>{*this};
}
size_type size() const
{
return dofsPerCodim[0] * gridView_.size(0) + dofsPerCodim[1] * gridView_.size(1);
}
//! Return number possible values for next position in multi index
size_type size(const SizePrefix prefix) const
{
assert(prefix.size() == 0 || prefix.size() == 1);
return (prefix.size() == 0) ? size() : 0;
}
/** \todo This method has been added to the interface without prior discussion. */
size_type dimension() const
{
return size();
}
size_type maxNodeSize() const
{
return StaticPower<(k+1),GV::dimension>::power;
}
protected:
const GridView gridView_;
std::vector<size_t> codimOffset_;
FiniteElementMap finiteElementMap_;
};
template<typename GV, int k, typename ST, typename TP, GeometryType::BasicType basic_type>
class RaviartThomasNode :
public LeafBasisNode<ST, TP>
{
static const int dim = GV::dimension;
static const int maxSize = StaticPower<(k+1),GV::dimension>::power;
using Base = LeafBasisNode<ST,TP>;
public:
using size_type = ST;
using TreePath = TP;
using Element = typename GV::template Codim<0>::Entity;
using FiniteElementMap = typename Impl::RaviartThomasLocalFiniteElementMap<GV, dim, basic_type, typename GV::ctype, double, k>;
using FiniteElement = typename FiniteElementMap::FiniteElement;
RaviartThomasNode(const TreePath& treePath, const FiniteElementMap* finiteElementMap) :
Base(treePath),
finiteElement_(nullptr),
element_(nullptr),
finiteElementMap_(finiteElementMap)
{ }
//! Return current element, throw if unbound
const Element& element() const
{
return *element_;
}
/** \brief Return the LocalFiniteElement for the element we are bound to
*
* The LocalFiniteElement implements the corresponding interfaces of the dune-localfunctions module
*/
const FiniteElement& finiteElement() const
{
return *finiteElement_;
}
//! Bind to element.
void bind(const Element& e)
{
element_ = &e;
finiteElement_ = &(finiteElementMap_->find(*element_));
this->setSize(finiteElement_->size());
}
protected:
const FiniteElement* finiteElement_;
const Element* element_;
const FiniteElementMap* finiteElementMap_;
};
template<typename GV, int k, class MI, class TP, class ST, GeometryType::BasicType basic_type>
class RaviartThomasNodeIndexSet
{
enum {dim = GV::dimension};
public:
using size_type = ST;
/** \brief Type used for global numbering of the basis vectors */
using MultiIndex = MI;
using PreBasis = RaviartThomasPreBasis<GV, k, MI, ST, basic_type>;
using Node = typename PreBasis::template Node<TP>;
RaviartThomasNodeIndexSet(const PreBasis& preBasis) :
preBasis_(&preBasis)
{}
/** \brief Bind the view to a grid element
*
* Having to bind the view to an element before being able to actually access any of its data members
* offers to centralize some expensive setup code in the 'bind' method, which can save a lot of run-time.
*/
void bind(const Node& node)
{
node_ = &node;
}
/** \brief Unbind the view
*/
void unbind()
{
node_ = nullptr;
}
/** \brief Size of subtree rooted in this node (element-local)
*/
size_type size() const
{
return node_->finiteElement().size();
}
/**
* \brief Maps from subtree index set [0..size-1] to a globally unique multi index in global basis
*
* This assume dim \in \lbrace 2, 3 \rbrace.
*/
template<typename It>
It indices(It it) const
{
const auto& gridIndexSet = preBasis_->gridView().indexSet();
const auto& element = node_->element();
// throw if Element is not of predefined type
if (not(basic_type==GeometryType::BasicType::cube and element.type().isCube()) and
not(basic_type==GeometryType::BasicType::simplex and element.type().isSimplex())) DUNE_THROW(Dune::NotImplemented, "RaviartThomasNodalBasis only implemented for cube and simplex elements.");
for(std::size_t i=0, end=size(); i<end; ++i, ++it)
{
Dune::LocalKey localKey = node_->finiteElement().localCoefficients().localKey(i);
// The dimension of the entity that the current dof is related to
size_t subentity = localKey.subEntity();
size_t codim = localKey.codim();
if (not(codim==0 or codim==1)) DUNE_THROW(Dune::NotImplemented, "Grid contains elements not supported for the RaviartThomasBasis");
*it = { preBasis_->codimOffset_[codim] +
preBasis_->dofsPerCodim[codim] * gridIndexSet.subIndex(element, subentity, codim) + localKey.index() };
}
return it;
}
protected:
const PreBasis* preBasis_;
const Node* node_;
};
namespace BasisBuilder {
namespace Imp {
template<std::size_t k, GeometryType::BasicType basic_type, class size_type=std::size_t>
class RaviartThomasPreBasisFactory
{
public:
static const std::size_t requiredMultiIndexSize=1;
template<class MultiIndex, class GridView>
auto makePreBasis(const GridView& gridView) const
{
return RaviartThomasPreBasis<GridView, k, MultiIndex, size_type, basic_type>(gridView);
}
};
} // end namespace BasisBuilder::Imp
/**
* \brief Create a pre-basis factory that can create a Raviart-Thomas pre-basis
*
* \ingroup FunctionSpaceBasesImplementations
*
* \tparam k Order of the Raviart-Thomas element
* \tparam basic_type Basic geometry type
*/
template<std::size_t k, GeometryType::BasicType basic_type, class size_type=std::size_t>
auto rt()
{
return Imp::RaviartThomasPreBasisFactory<k, basic_type, size_type>();
}
} // end namespace BasisBuilder
// *****************************************************************************
// This is the actual global basis implementation based on the reusable parts.
// *****************************************************************************
/** \brief Nodal basis of a scalar k-th-order Raviart Thomas finite element space
*
* TODO
*
* \tparam GV The GridView that the space is defined on
* \tparam k The order of the basis
*/
template<typename GV, int k, GeometryType::BasicType basic_type, class ST = std::size_t>
using RaviartThomasNodalBasis = DefaultGlobalBasis<RaviartThomasPreBasis<GV, k, FlatMultiIndex<ST>, ST, basic_type> >;
} // end namespace Functions
} // end namespace Dune
#endif // DUNE_FUNCTIONS_FUNCTIONSPACEBASES_RAVIARTTHOMASBASIS_HH
|