3#ifndef DUNE_PDELAB_LOCALOPERATOR_L2VOLUMEFUNCTIONAL_HH
4#define DUNE_PDELAB_LOCALOPERATOR_L2VOLUMEFUNCTIONAL_HH
13#include <dune/localfunctions/common/interfaceswitch.hh>
15#include <dune/pdelab/common/quadraturerules.hh>
16#include <dune/pdelab/localoperator/idefault.hh>
17#include <dune/pdelab/localoperator/pattern.hh>
18#include <dune/pdelab/localoperator/flags.hh>
41 enum { doLambdaVolume =
true };
49 : f_(f), quadOrder_(quadOrder)
53 template<
typename EG,
typename LFSV,
typename R>
54 void lambda_volume (
const EG& eg,
const LFSV& lfsv, R& r)
const
59 using Range =
typename BasisSwitch::Range;
62 const auto& cell = eg.entity();
65 auto geo = eg.geometry();
68 std::vector<Range> phi(lfsv.size());
69 typename F::Traits::RangeType y(0.0);
72 for (
const auto& ip : quadratureRule(geo,quadOrder_))
75 FESwitch::basis(lfsv.finiteElement()).
76 evaluateFunction(ip.position(),phi);
79 f_.evaluate(cell,ip.position(),y);
82 auto factor = r.weight() * ip.weight() * geo.integrationElement(ip.position());
83 for (
size_t i=0; i<lfsv.size(); i++)
84 r.rawAccumulate(lfsv,i,y*phi[i]*factor);
92 unsigned int quadOrder_;
A local operator that tests a function against a test function space defined on the entire grid.
Definition: l2volumefunctional.hh:38
L2VolumeFunctional(const F &f, unsigned int quadOrder)
Constructor.
Definition: l2volumefunctional.hh:48
Default flags for all local operators.
Definition: flags.hh:19
A few common exception classes.
Implements a vector constructed from a given type representing a field and a compile-time given size.
Dune namespace.
Definition: alignedallocator.hh:13
Switch for uniform treatment of local and global basis classes.
Definition: interfaceswitch.hh:154
Switch for uniform treatment of finite element with either the local or the global interface.
Definition: interfaceswitch.hh:30
A unique label for each type of element that can occur in a grid.