3#ifndef DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS1_CUBE2D_LOCALINTERPOLATION_HH
4#define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS1_CUBE2D_LOCALINTERPOLATION_HH
9#include <dune/localfunctions/common/localinterpolation.hh>
35 for (
size_t i=0; i<4; i++)
36 sign_[i] = (s[i]) ? -1.0 : 1.0;
52 template<
class F,
class C>
56 typedef typename LB::Traits::RangeFieldType
Scalar;
57 typedef typename LB::Traits::DomainFieldType Vector;
59 auto&& f = Impl::makeFunctionWithCallOperator<typename LB::Traits::DomainType>(ff);
62 fill(out.begin(), out.end(), 0.0);
67 for (
auto&& qp : rule1)
69 Scalar qPos = qp.position();
70 typename LB::Traits::DomainType localPos = {0.0, qPos};
73 out[0] += (y[0]*n_[0][0] + y[1]*n_[0][1])*qp.weight()*sign_[0];
74 out[1] += (y[0]*n_[0][0] + y[1]*n_[0][1])*(2.0*qPos - 1.0)*qp.weight();
76 localPos = {1.0, qPos};
78 out[2] += (y[0]*n_[1][0] + y[1]*n_[1][1])*qp.weight()*sign_[1];
79 out[3] += (y[0]*n_[1][0] + y[1]*n_[1][1])*(1.0 - 2.0*qPos)*qp.weight();
81 localPos = {qPos, 0.0};
83 out[4] += (y[0]*n_[2][0] + y[1]*n_[2][1])*qp.weight()*sign_[2];
84 out[5] += (y[0]*n_[2][0] + y[1]*n_[2][1])*(1.0 - 2.0*qPos)*qp.weight();
86 localPos = {qPos, 1.0};
88 out[6] += (y[0]*n_[3][0] + y[1]*n_[3][1])*qp.weight()*sign_[3];
89 out[7] += (y[0]*n_[3][0] + y[1]*n_[3][1])*(2.0*qPos - 1.0)*qp.weight();
94 for (
auto&& qp : rule2)
96 auto qPos = qp.position();
99 out[8] += y[0]*qp.weight();
100 out[9] += y[1]*qp.weight();
101 out[10] += y[0]*qPos[1]*qp.weight();
102 out[11] += y[1]*qPos[0]*qp.weight();
108 std::array<typename LB::Traits::RangeFieldType, 4> sign_;
111 std::array<typename LB::Traits::DomainType, 4> n_;
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: raviartthomas1cube2dlocalinterpolation.hh:25
RT1Cube2DLocalInterpolation(std::bitset< 4 > s=0)
Make set number s, where 0 <= s < 16.
Definition: raviartthomas1cube2dlocalinterpolation.hh:33
void interpolate(const F &ff, std::vector< C > &out) const
Interpolate a given function with shape functions.
Definition: raviartthomas1cube2dlocalinterpolation.hh:53
constexpr GeometryType cube(unsigned int dim)
Returns a GeometryType representing a hypercube of dimension dim.
Definition: type.hh:470
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