Loading [MathJax]/extensions/tex2jax.js

dune-composites (unstable)

composite_properties_lop.hh
1// -*- tab-width: 2; indent-tabs-mode: nil -*-
2// vi: set et ts=2 sw=2 sts=2:
3#ifndef COMP_PROP_LOP_HH
4#define COMP_PROP_LOP_HH
5
6#include <dune/geometry/type.hh>
7#include <dune/geometry/referenceelements.hh>
8#include <dune/geometry/quadraturerules.hh>
9
10namespace Dune {
11 namespace PDELab {
12
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> >
21 {
22 public:
23 // pattern assembly flags
24 enum { doPatternVolume = false };
25
26 // residual assembly flags
27 enum { doAlphaVolume = true };
28
29 //Constructor
30 composite_propertiesUG (const GV& gv_, const MODEL& model_, const DGF& dgf_) : model(model_), gv(gv_), dgf(dgf_) {}
31 //
32 // alpha_volume for getStress
33 //
34 // Volume Integral Depending on Test and Ansatz Functions
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
37 {
38 [[maybe_unused]] typedef typename LFSV::Traits::SizeType size_type;
39
40 //Unwrap stress
41 const auto& lfsv1 = lfsv.template child<0>();
42 const auto& lfsv2 = lfsv.template child<1>();
43
44 int id = gv.indexSet().index(eg.entity());
45
46 // size_type nodes_per_element = lfsv1.size();
47 // size_type dof = lfsv1.size();
48 int materialType, orientation;
49 materialType = model.getMaterialTypeFromElement(id);
50 orientation = model.getOrientation(id);
51 // select quadrature rule
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++)
55 {
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]);
61 }
62
63 }
64 private:
65 const MODEL& model;
66 const GV& gv;
67 const DGF& dgf;
68 };
69
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> >
78 {
79 public:
80 // pattern assembly flags
81 enum { doPatternVolume = false };
82
83 // residual assembly flags
84 enum { doAlphaVolume = true };
85
86 //Constructor
87 composite_properties (const GV& gv_, const MODEL& model_) : model(model_), gv(gv_){}
88 //
89 // alpha_volume for getStress
90 //
91 // Volume Integral Depending on Test and Ansatz Functions
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
94 {
95 //Unwrap stress
96 const auto& lfsv1 = lfsv.template child<0>();
97 const auto& lfsv2 = lfsv.template child<1>();
98
99 int id = gv.indexSet().index(eg.entity());
100
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);
106 }
107 private:
108 const MODEL& model;
109 const GV& gv;
110 };
111 }
112}
113
114#endif
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)