/usr/include/dune/localfunctions/monom.hh is in libdune-localfunctions-dev 2.2.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_MONOMLOCALFINITEELEMENT_HH
#define DUNE_MONOMLOCALFINITEELEMENT_HH
#include <cassert>
#include <cstddef>
#include <cstdlib>
#include <vector>
#include <dune/common/deprecated.hh>
#include <dune/common/shared_ptr.hh>
#include <dune/common/static_assert.hh>
#include <dune/geometry/type.hh>
#include "common/localfiniteelementtraits.hh"
#include "common/localtoglobaladaptors.hh"
#include "monom/monomlocalbasis.hh"
#include "monom/monomlocalcoefficients.hh"
#include "monom/monomlocalinterpolation.hh"
namespace Dune
{
/** Monom basis for discontinuous Galerkin
\tparam D Type used for coordinates
\tparam R Type used for shape function values
\tparam d Dimension of the element
\tparam p Order of the basis
\tparam diffOrder Maximum differentiation order to report in the traits.
*/
template<class D, class R, int d, int p, int diffOrder = p>
class MonomLocalFiniteElement
{
enum { static_size = MonomImp::Size<d,p>::val };
public:
/** Traits class
*/
typedef LocalFiniteElementTraits<
MonomLocalBasis<D,R,d,p, diffOrder>,
MonomLocalCoefficients<static_size>,
MonomLocalInterpolation<MonomLocalBasis<D,R,d,p, diffOrder>,static_size>
> Traits;
/** \todo Please doc me !
*/
MonomLocalFiniteElement (GeometryType::BasicType basicType) DUNE_DEPRECATED
: basis(), interpolation(basicType, basis), gt(basicType,d)
{}
//! Construct a MonomLocalFiniteElement
MonomLocalFiniteElement (const GeometryType >_)
: basis(), interpolation(gt_, basis), gt(gt_)
{}
/** \todo Please doc me !
*/
const typename Traits::LocalBasisType& localBasis () const
{
return basis;
}
/** \todo Please doc me !
*/
const typename Traits::LocalCoefficientsType& localCoefficients () const
{
return coefficients;
}
/** \todo Please doc me !
*/
const typename Traits::LocalInterpolationType& localInterpolation () const
{
return interpolation;
}
/** \todo Please doc me !
*/
GeometryType type () const
{
return gt;
}
private:
MonomLocalBasis<D,R,d,p, diffOrder> basis;
MonomLocalCoefficients<static_size> coefficients;
MonomLocalInterpolation<MonomLocalBasis<D,R,d,p, diffOrder>,static_size> interpolation;
GeometryType gt;
};
//! Factory for global-valued MonomFiniteElement objects
/**
* Constructs MonomFiniteElement objects given a geometry.
*
* \tparam Geometry Geometry for the local to global transformation.
* \tparam RF Field type of the range.
* \tparam p Order of the basis.
*
* \implements FiniteElementFactoryInterface
*
* \note There is no real MonomFiniteElement, only the FiniteElement typedef
* inside this class.
*/
template<class Geometry, class RF, std::size_t p>
class MonomFiniteElementFactory {
typedef typename Geometry::ctype DF;
static const std::size_t dim = Geometry::mydimension;
typedef MonomLocalFiniteElement<DF, RF, dim, p> LocalFE;
std::vector<shared_ptr<const LocalFE> > localFEs;
void init(const GeometryType >) {
std::size_t index = gt.id() >> 1;
if(localFEs.size() <= index)
localFEs.resize(index+1);
localFEs[index].reset(new LocalFE(gt));
}
public:
typedef ScalarLocalToGlobalFiniteElementAdaptor<LocalFE, Geometry>
FiniteElement;
//! construct a MonomFiniteElementFactory from a list of GeometryType's
/**
* \param begin Begin of a range of geometry types.
* \param end End of a range of geometry types.
*/
template<class ForwardIterator>
MonomFiniteElementFactory(const ForwardIterator &begin,
const ForwardIterator &end)
{
for(ForwardIterator it = begin; it != end; ++it)
init(*it);
}
//! construct a MonomFiniteElementFactory from a single GeometryType
/**
* \param gt GeometryType to construct elements with
*/
MonomFiniteElementFactory(const GeometryType >)
{ init(gt); }
//! construct a MonomFiniteElementFactory for all applicable GeometryType's
/**
* \note This constructor only works for dimensions up to and including 3.
*/
MonomFiniteElementFactory() {
dune_static_assert(dim <= 3, "MonomFiniteElementFactory knows the "
"available geometry types only up to dimension 3");
GeometryType gt;
switch(dim) {
case 0:
gt.makeVertex(); init(gt);
break;
case 1:
gt.makeLine(); init(gt);
break;
case 2:
gt.makeTriangle(); init(gt);
gt.makeQuadrilateral(); init(gt);
break;
case 3:
gt.makeTetrahedron(); init(gt);
gt.makePyramid(); init(gt);
gt.makePrism(); init(gt);
gt.makeHexahedron(); init(gt);
break;
default:
// this should never happen -- it should be caught by the static
// assert above.
std::abort();
};
}
//! construct a global-valued MonomFiniteElement
/**
* \param geometry The geometry object to use for adaption.
*
* \note The returned object stores the reference to the geometry passed
* here as well as references to internal data of this factory. Any
* use of the returned value after the geometry reference or the
* factory object was become invalid results in undefined behaviour.
* The exception is that the destructor of the returned value may
* still be called.
*/
const FiniteElement make(const Geometry& geometry) {
std::size_t index = geometry.type().id() >> 1;
assert(localFEs.size() > index && localFEs[index]);
return FiniteElement(*localFEs[index], geometry);
}
};
}
#endif // DUNE_MONOMLOCALFINITEELEMENT_HH
|