4#ifndef DUNE_LOCALFUNCTIONS_SERENDIPITYLOCALINTERPOLATION_HH
5#define DUNE_LOCALFUNCTIONS_SERENDIPITYLOCALINTERPOLATION_HH
7#include <dune/common/fvector.hh>
9#include <dune/geometry/type.hh>
11#include <dune/localfunctions/common/localbasis.hh>
12#include <dune/localfunctions/common/localfiniteelementtraits.hh>
18 template<
int k,
int d,
class LB>
22 typedef typename Dune::FieldVector<int,d> DuneVector;
23 static void multiindex (DuneVector& alpha)
26 for (
int j=0; j<d; j++){
27 i+=alpha[j]*pow(k+1,j);
30 for (
int j=0; j<d; j++)
36 for (
unsigned int j=0; j<d; j++){
37 if(alpha[j] > 0 && alpha[j] < k){ sum++; }
45 unsigned int size ()
const
51 return 2*(k+1)+2*(k-1);
54 return 4*(k+1)+8*(k-1);
61 template<
typename F,
typename C>
64 typename LB::Traits::DomainType x;
68 for (
unsigned int i=0; i<size(); i++)
71 if(i>0){ multiindex(alpha); }
74 for (
int j=0; j<d; j++)
75 x[j] = (1.0*alpha[j])/k;
83 template<
int d,
class LB>
88 template<
typename F,
typename C>
91 typename LB::Traits::DomainType x(0);
void interpolate(const F &f, std::vector< C > &out) const
Local interpolation of a function.
Definition: serendipitylocalinterpolation.hh:89
Definition: serendipitylocalinterpolation.hh:20
void interpolate(const F &f, std::vector< C > &out) const
Local interpolation of a function.
Definition: serendipitylocalinterpolation.hh:62