3#ifndef DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS12DLOCALINTERPOLATION_HH
4#define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS12DLOCALINTERPOLATION_HH
9#include <dune/localfunctions/common/localinterpolation.hh>
36 for (
size_t i=0; i<3; i++)
37 sign_[i] = (s[i]) ? -1.0 : 1.0;
41 n_[2] = { 1.0/sqrt(2.0), 1.0/sqrt(2.0)};
43 c_ = { 0.5*n_[0][0] - 1.0*n_[0][1],
44 -1.0*n_[1][0] + 0.5*n_[1][1],
45 0.5*n_[2][0] + 0.5*n_[2][1]};
56 template<
typename F,
typename C>
60 typedef typename LB::Traits::RangeFieldType
Scalar;
61 typedef typename LB::Traits::DomainFieldType Vector;
63 auto&& f = Impl::makeFunctionWithCallOperator<typename LB::Traits::DomainType>(ff);
66 fill(out.begin(), out.end(), 0.0);
68 const int qOrder1 = 4;
71 for (
auto&& qp : rule1)
73 Scalar qPos = qp.position();
74 typename LB::Traits::DomainType localPos;
76 localPos = {qPos, 0.0};
78 out[0] += (y[0]*n_[0][0] + y[1]*n_[0][1])*qp.weight()*sign_[0]/c_[0];
79 out[3] += (y[0]*n_[0][0] + y[1]*n_[0][1])*(2.0*qPos - 1.0)*qp.weight()/c_[0];
81 localPos = {0.0, qPos};
83 out[1] += (y[0]*n_[1][0] + y[1]*n_[1][1])*qp.weight()*sign_[1]/c_[1];
84 out[4] += (y[0]*n_[1][0] + y[1]*n_[1][1])*(1.0 - 2.0*qPos)*qp.weight()/c_[1];
86 localPos = {1.0 - qPos, qPos};
88 out[2] += (y[0]*n_[2][0] + y[1]*n_[2][1])*qp.weight()*sign_[2]/c_[2];
89 out[5] += (y[0]*n_[2][0] + y[1]*n_[2][1])*(2.0*qPos - 1.0)*qp.weight()/c_[2];
92 const int qOrder2 = 8;
95 for (
auto&& qp : rule2)
97 auto qPos = qp.position();
100 out[6] += y[0]*qp.weight();
101 out[7] += y[1]*qp.weight();
107 std::array<typename LB::Traits::RangeFieldType, 3> sign_;
110 std::array<typename LB::Traits::DomainType, 3> n_;
112 std::array<typename LB::Traits::RangeFieldType, 3> c_;
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:280
First order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas12dlocalinterpolation.hh:24
RT12DLocalInterpolation(std::bitset< 3 > s=0)
Make set number s, where 0 <= s < 8.
Definition: raviartthomas12dlocalinterpolation.hh:33
void interpolate(const F &ff, std::vector< C > &out) const
Interpolate a given function with shape functions.
Definition: raviartthomas12dlocalinterpolation.hh:57
constexpr GeometryType simplex(unsigned int dim)
Returns a GeometryType representing a simplex of dimension dim.
Definition: type.hh:461
typename Overloads::ScalarType< std::decay_t< V > >::type Scalar
Element type of some SIMD type.
Definition: interface.hh:233
Dune namespace.
Definition: alignedallocator.hh:11