Dune Core Modules (unstable)

brezzidouglasmarini2cube2dlocalinterpolation.hh
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 // SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4 // SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5 #ifndef DUNE_LOCALFUNCTIONS_BREZZIDOUGLASMARINI2_CUBE2D_LOCALINTERPOLATION_HH
6 #define DUNE_LOCALFUNCTIONS_BREZZIDOUGLASMARINI2_CUBE2D_LOCALINTERPOLATION_HH
7 
8 #include <vector>
9 
11 
12 namespace Dune
13 {
14 
23  template<class LB>
25  {
26 
27  public:
30  {
31  sign0 = sign1 = sign2 = sign3 = 1.0;
32  }
33 
40  {
41  sign0 = sign1 = sign2 = sign3 = 1.0;
42  if (s & 1)
43  {
44  sign0 = -1.0;
45  }
46  if (s & 2)
47  {
48  sign1 = -1.0;
49  }
50  if (s & 4)
51  {
52  sign2 = -1.0;
53  }
54  if (s & 8)
55  {
56  sign3 = -1.0;
57  }
58 
59  n0[0] = -1.0;
60  n0[1] = 0.0;
61  n1[0] = 1.0;
62  n1[1] = 0.0;
63  n2[0] = 0.0;
64  n2[1] = -1.0;
65  n3[0] = 0.0;
66  n3[1] = 1.0;
67  }
68 
77  template<typename F, typename C>
78  void interpolate(const F& f, std::vector<C>& out) const
79  {
80  // f gives v*outer normal at a point on the edge!
81  typedef typename LB::Traits::RangeFieldType Scalar;
82  typedef typename LB::Traits::DomainFieldType Vector;
83 
84  out.resize(14);
85  fill(out.begin(), out.end(), 0.0);
86 
87  const int qOrder = 4;
89 
90  for (typename QuadratureRule<Scalar,1>::const_iterator it = rule.begin();
91  it != rule.end(); ++it)
92  {
93  Scalar qPos = it->position();
94 
95  typename LB::Traits::DomainType localPos;
96 
97  localPos[0] = 0.0;
98  localPos[1] = qPos;
99  auto y = f(localPos);
100  out[0] += (y[0]*n0[0] + y[1]*n0[1])*it->weight()*sign0;
101  out[1] += (y[0]*n0[0] + y[1]*n0[1])*(2.0*qPos - 1.0)*it->weight();
102  out[2] += (y[0]*n0[0] + y[1]*n0[1])*(8.0*qPos*qPos - 8.0*qPos + 1.0)*it->weight()*sign0;
103 
104  localPos[0] = 1.0;
105  localPos[1] = qPos;
106  y = f(localPos);
107  out[3] += (y[0]*n1[0]+y[1]*n1[1])*it->weight()*sign1;
108  out[4] += (y[0]*n1[0]+y[1]*n1[1])*(1.0 - 2.0*qPos)*it->weight();
109  out[5] += (y[0]*n1[0]+y[1]*n1[1])*(8.0*qPos*qPos - 8.0*qPos + 1.0)*it->weight()*sign1;
110 
111  localPos[0] = qPos;
112  localPos[1] = 0.0;
113  y = f(localPos);
114  out[6] += (y[0]*n2[0] + y[1]*n2[1])*it->weight()*sign2;
115  out[7] += (y[0]*n2[0] + y[1]*n2[1])*(1.0 - 2.0*qPos)*it->weight();
116  out[8] += (y[0]*n2[0] + y[1]*n2[1])*(8.0*qPos*qPos - 8.0*qPos + 1.0)*it->weight()*sign2;
117 
118  localPos[0] = qPos;
119  localPos[1] = 1.0;
120  y = f(localPos);
121  out[9] += (y[0]*n3[0] + y[1]*n3[1])*it->weight()*sign3;
122  out[10] += (y[0]*n3[0] + y[1]*n3[1])*(2.0*qPos - 1.0)*it->weight();
123  out[11] += (y[0]*n3[0] + y[1]*n3[1])*(8.0*qPos*qPos - 8.0*qPos + 1.0)*it->weight()*sign3;
124  }
125 
127 
128  for (typename QuadratureRule<Vector,2>::const_iterator it=rule2.begin(); it!=rule2.end(); ++it)
129  {
130  auto y = f(it->position());
131  out[12] += y[0]*it->weight();
132  out[13] += y[1]*it->weight();
133  }
134  }
135 
136  private:
137  typename LB::Traits::RangeFieldType sign0, sign1, sign2, sign3;
138  typename LB::Traits::DomainType n0, n1, n2, n3;
139  };
140 } // end namespace Dune
141 #endif // DUNE_LOCALFUNCTIONS_BREZZIDOUGLASMARINI2_CUBE2D_LOCALINTERPOLATION_HH
First order Brezzi-Douglas-Marini shape functions on quadrilaterals.
Definition: brezzidouglasmarini2cube2dlocalinterpolation.hh:25
BDM2Cube2DLocalInterpolation(unsigned int s)
Make set number s, where 0 <= s < 16.
Definition: brezzidouglasmarini2cube2dlocalinterpolation.hh:39
BDM2Cube2DLocalInterpolation()
Standard constructor.
Definition: brezzidouglasmarini2cube2dlocalinterpolation.hh:29
void interpolate(const F &f, std::vector< C > &out) const
Interpolate a given function with shape functions.
Definition: brezzidouglasmarini2cube2dlocalinterpolation.hh:78
Abstract base class for quadrature rules.
Definition: quadraturerules.hh:212
static const QuadratureRule & rule(const GeometryType &t, int p, QuadratureType::Enum qt=QuadratureType::GaussLegendre)
select the appropriate QuadratureRule for GeometryType t and order p
Definition: quadraturerules.hh:324
constexpr GeometryType cube(unsigned int dim)
Returns a GeometryType representing a hypercube of dimension dim.
Definition: type.hh:462
typename Overloads::ScalarType< std::decay_t< V > >::type Scalar
Element type of some SIMD type.
Definition: interface.hh:235
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (May 2, 22:35, 2024)