3#ifndef COMP_PROP_LOP_HH
4#define COMP_PROP_LOP_HH
6#include <dune/geometry/type.hh>
7#include <dune/geometry/referenceelements.hh>
8#include <dune/geometry/quadraturerules.hh>
13 template<
typename GV,
typename MODEL,
typename DGF>
14 class composite_propertiesUG :
16 public NumericalJacobianApplyVolume<composite_propertiesUG<GV,MODEL,DGF> >,
17 public FullVolumePattern,
18 public LocalOperatorDefaultFlags,
19 public InstationaryLocalOperatorDefaultMethods<double>,
20 public NumericalJacobianVolume<composite_propertiesUG<GV,MODEL,DGF> >
24 enum { doPatternVolume =
false };
27 enum { doAlphaVolume =
true };
30 composite_propertiesUG (
const GV& gv_,
const MODEL& model_,
const DGF& dgf_) : model(model_), gv(gv_), dgf(dgf_) {}
35 template<
typename EG,
typename LFSU,
typename X,
typename LFSV,
typename R>
36 void alpha_volume (
const EG& eg,
const LFSU& lfsu,
const X& x,
const LFSV& lfsv, R& r)
const
38 [[maybe_unused]]
typedef typename LFSV::Traits::SizeType size_type;
41 const auto& lfsv1 = lfsv.template child<0>();
42 const auto& lfsv2 = lfsv.template child<1>();
44 int id = gv.indexSet().index(eg.entity());
48 int materialType, orientation;
49 materialType = model.getMaterialTypeFromElement(
id);
50 orientation = model.getOrientation(
id);
52 assert(eg.geometry().corners() ==
static_cast<int>(lfsv1.size()));
53 assert(eg.geometry().corners() ==
static_cast<int>(lfsv2.size()));
54 for (
int iter = 0; iter < eg.geometry().corners(); iter++)
56 Dune::FieldVector<double,3> pt = eg.geometry().local(eg.geometry().corner(iter));
57 Dune::FieldVector<double,1> num_elem(1.0);
58 dgf.evaluate(eg.entity(),pt,num_elem);
59 r.accumulate(lfsv1, iter, materialType/num_elem[0]);
60 r.accumulate(lfsv2, iter, orientation/num_elem[0]);
70 template<
typename GV,
typename MODEL>
71 class composite_properties :
73 public NumericalJacobianApplyVolume<composite_properties<GV,MODEL> >,
74 public FullVolumePattern,
75 public LocalOperatorDefaultFlags,
76 public InstationaryLocalOperatorDefaultMethods<double>,
77 public NumericalJacobianVolume<composite_properties<GV,MODEL> >
81 enum { doPatternVolume =
false };
84 enum { doAlphaVolume =
true };
87 composite_properties (
const GV& gv_,
const MODEL& model_) : model(model_), gv(gv_){}
92 template<
typename EG,
typename LFSU,
typename X,
typename LFSV,
typename R>
93 void alpha_volume (
const EG& eg,
const LFSU& lfsu,
const X& x,
const LFSV& lfsv, R& r)
const
96 const auto& lfsv1 = lfsv.template child<0>();
97 const auto& lfsv2 = lfsv.template child<1>();
99 int id = gv.indexSet().index(eg.entity());
101 int materialType, orientation;
102 materialType = model.getMaterialTypeFromElement(
id);
103 orientation = model.getOrientation(
id);
104 r.accumulate(lfsv1, 0, materialType);
105 r.accumulate(lfsv2, 0, orientation);