Loading [MathJax]/extensions/tex2jax.js

dune-composites (unstable)

serendipitylocalinterpolation.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3
4#ifndef DUNE_LOCALFUNCTIONS_SERENDIPITYLOCALINTERPOLATION_HH
5#define DUNE_LOCALFUNCTIONS_SERENDIPITYLOCALINTERPOLATION_HH
6
7#include <dune/common/fvector.hh>
8
9#include <dune/geometry/type.hh>
10
11#include <dune/localfunctions/common/localbasis.hh>
12#include <dune/localfunctions/common/localfiniteelementtraits.hh>
13
14
15namespace Dune
16{
18 template<int k, int d, class LB>
20 {
21
22 typedef typename Dune::FieldVector<int,d> DuneVector;
23 static void multiindex (DuneVector& alpha)
24 {
25 int i = 0;
26 for (int j=0; j<d; j++){
27 i+=alpha[j]*pow(k+1,j);
28 }
29 i++;
30 for (int j=0; j<d; j++)
31 {
32 alpha[j] = i % (k+1);
33 i = i/(k+1);
34 }
35 unsigned int sum = 0;
36 for (unsigned int j=0; j<d; j++){
37 if(alpha[j] > 0 && alpha[j] < k){ sum++; }
38 }
39 if(sum > 1){
40 multiindex(alpha);
41 }
42 }
43
45 unsigned int size () const
46 {
47 if(d == 1){
48 return k+1;
49 }
50 if(d == 2){
51 return 2*(k+1)+2*(k-1);
52 }
53 if(d == 3){
54 return 4*(k+1)+8*(k-1);
55 }
56 }
57
58 public:
59
61 template<typename F, typename C>
62 void interpolate (const F& f, std::vector<C>& out) const
63 {
64 typename LB::Traits::DomainType x;
65
66 out.resize(size());
67 DuneVector alpha(0);
68 for (unsigned int i=0; i<size(); i++)
69 {
70 // convert index i to multiindex
71 if(i>0){ multiindex(alpha); }
72
73 // Generate coordinate of the i-th Lagrange point
74 for (int j=0; j<d; j++)
75 x[j] = (1.0*alpha[j])/k;
76
77 out[i] = f(x);
78 }
79 }
80 };
81
83 template<int d, class LB>
85 {
86 public:
88 template<typename F, typename C>
89 void interpolate (const F& f, std::vector<C>& out) const
90 {
91 typename LB::Traits::DomainType x(0);
92 out.resize(1);
93 out[0] = f(x);
94 }
95 };
96
97}
98
99
100#endif
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
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 4, 22:59, 2025)