6#ifndef DUNE_LOCALFUNCTIONS_WHITNEY_EDGES0_5_INTERPOLATION_HH
7#define DUNE_LOCALFUNCTIONS_WHITNEY_EDGES0_5_INTERPOLATION_HH
29 template<
class Geometry,
class Traits_>
32 typename Traits_::DomainField>
38 static const std::size_t dim = Traits::dimDomainLocal;
43 std::vector<typename Traits::DomainGlobal> edgev;
53 template<
typename VertexOrder>
55 const VertexOrder& vertexOrder) :
58 for(std::size_t i = 0; i < s; ++i) {
59 const std::size_t i0 = refelem.subEntity(i,dim-1,0,dim);
60 const std::size_t i1 = refelem.subEntity(i,dim-1,1,dim);
62 edgev[i] = geo.corner(i1);
63 edgev[i] -= geo.corner(i0);
64 edgev[i] /= edgev[i].two_norm();
66 const typename VertexOrder::iterator& edgeVertexOrder =
67 vertexOrder.begin(dim-1, i);
68 if(edgeVertexOrder[0] > edgeVertexOrder[1])
74 template<
typename F,
typename C>
76 typename Traits::Range y;
78 auto&& f = Impl::makeFunctionWithCallOperator<std::decay_t<
decltype(refelem.position(0,dim-1))>>(ff);
82 for(std::size_t i = 0; i < s; ++i) {
83 y = f(refelem.position(i,dim-1));
85 out[i] = y * edgev[i];
Definition: bdfmcube.hh:18
Common base class for edge elements.
Definition: common.hh:19
RefElem refelem
The reference element for this edge element.
Definition: common.hh:26
std::size_t s
The number of base functions.
Definition: common.hh:34
Interpolation for lowest order edge elements on simplices.
Definition: whitney/edges0.5/interpolation.hh:33
void interpolate(const F &ff, std::vector< C > &out) const
Interpolation of a function.
Definition: whitney/edges0.5/interpolation.hh:75
Traits_ Traits
Definition: whitney/edges0.5/interpolation.hh:35
EdgeS0_5Interpolation(const Geometry &geo, const VertexOrder &vertexOrder)
constructor
Definition: whitney/edges0.5/interpolation.hh:54