Dune Core Modules (2.9.0)

lagrangedgbasis.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_LAGRANGEDGBASIS_HH
4#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_LAGRANGEDGBASIS_HH
5
6#include <array>
8#include <dune/common/math.hh>
9
10#include <dune/functions/functionspacebases/nodes.hh>
11#include <dune/functions/functionspacebases/defaultglobalbasis.hh>
12#include <dune/functions/functionspacebases/lagrangebasis.hh>
13
14
15
16
17namespace Dune {
18namespace Functions {
19
20
21
22// *****************************************************************************
23// This is the reusable part of the basis. It contains
24//
25// LagrangeDGPreBasis
26// LagrangeDGNode
27//
28// The pre-basis allows to create the others and is the owner of possible shared
29// state. These components do _not_ depend on the global basis and local view
30// and can be used without a global basis.
31// *****************************************************************************
32
33template<typename GV, int k>
34using LagrangeDGNode = LagrangeNode<GV, k>;
35
36template<typename GV, int k>
37class LagrangeDGPreBasis
38{
39 static const int dim = GV::dimension;
40
41public:
42
44 using GridView = GV;
45 using size_type = std::size_t;
46
47
48 // Precompute the number of dofs per entity type
49 const static int dofsPerEdge = k+1;
50 const static int dofsPerTriangle = (k+1)*(k+2)/2;
51 const static int dofsPerQuad = (k+1)*(k+1);
52 const static int dofsPerTetrahedron = (k+1)*(k+2)*(k+3)/6;
53 const static int dofsPerPrism = (k+1)*(k+1)*(k+2)/2;
54 const static int dofsPerHexahedron = (k+1)*(k+1)*(k+1);
55 const static int dofsPerPyramid = (k+1)*(k+2)*(2*k+3)/6;
56
57
58 using Node = LagrangeDGNode<GV, k>;
59
60 static constexpr size_type maxMultiIndexSize = 1;
61 static constexpr size_type minMultiIndexSize = 1;
62 static constexpr size_type multiIndexBufferSize = 1;
63
65 LagrangeDGPreBasis(const GridView& gv) :
66 gridView_(gv)
67 {}
68
69
70 void initializeIndices()
71 {
72 switch (dim)
73 {
74 case 1:
75 {
76 break;
77 }
78 case 2:
79 {
80 quadrilateralOffset_ = dofsPerTriangle * gridView_.size(Dune::GeometryTypes::triangle);
81 break;
82 }
83 case 3:
84 {
85 prismOffset_ = dofsPerTetrahedron * gridView_.size(Dune::GeometryTypes::tetrahedron);
86
87 hexahedronOffset_ = prismOffset_ + dofsPerPrism * gridView_.size(Dune::GeometryTypes::prism);
88
89 pyramidOffset_ = hexahedronOffset_ + dofsPerHexahedron * gridView_.size(Dune::GeometryTypes::hexahedron);
90 break;
91 }
92 }
93 }
94
97 const GridView& gridView() const
98 {
99 return gridView_;
100 }
101
102 void update(const GridView& gv)
103 {
104 gridView_ = gv;
105 }
106
110 Node makeNode() const
111 {
112 return Node{};
113 }
114
115 size_type size() const
116 {
117 switch (dim)
118 {
119 case 1:
120 return dofsPerEdge*gridView_.size(0);
121 case 2:
122 {
123 return dofsPerTriangle*gridView_.size(Dune::GeometryTypes::triangle) + dofsPerQuad*gridView_.size(Dune::GeometryTypes::quadrilateral);
124 }
125 case 3:
126 {
127 return dofsPerTetrahedron*gridView_.size(Dune::GeometryTypes::tetrahedron)
128 + dofsPerPyramid*gridView_.size(Dune::GeometryTypes::pyramid)
129 + dofsPerPrism*gridView_.size(Dune::GeometryTypes::prism)
130 + dofsPerHexahedron*gridView_.size(Dune::GeometryTypes::hexahedron);
131 }
132 }
133 DUNE_THROW(Dune::NotImplemented, "No size method for " << dim << "d grids available yet!");
134 }
135
137 template<class SizePrefix>
138 size_type size(const SizePrefix& prefix) const
139 {
140 assert(prefix.size() == 0 || prefix.size() == 1);
141 return (prefix.size() == 0) ? size() : 0;
142 }
143
145 size_type dimension() const
146 {
147 return size();
148 }
149
150 size_type maxNodeSize() const
151 {
152 return Dune::power(k+1, int(GV::dimension));
153 }
154
155 template<typename It>
156 It indices(const Node& node, It it) const
157 {
158 const auto& gridIndexSet = gridView().indexSet();
159 const auto& element = node.element();
160
161 size_type offset = 0;
162 if constexpr (dim==1)
163 offset = dofsPerEdge*gridIndexSet.subIndex(element,0,0);
164 else if constexpr (dim==2)
165 {
166 if (element.type().isTriangle())
167 offset = dofsPerTriangle*gridIndexSet.subIndex(element,0,0);
168 else if (element.type().isQuadrilateral())
169 offset = quadrilateralOffset_ + dofsPerQuad*gridIndexSet.subIndex(element,0,0);
170 else
171 DUNE_THROW(Dune::NotImplemented, "2d elements have to be triangles or quadrilaterals");
172 }
173 else if constexpr (dim==3)
174 {
175 if (element.type().isTetrahedron())
176 offset = dofsPerTetrahedron*gridIndexSet.subIndex(element,0,0);
177 else if (element.type().isPrism())
178 offset = prismOffset_ + dofsPerPrism*gridIndexSet.subIndex(element,0,0);
179 else if (element.type().isHexahedron())
180 offset = hexahedronOffset_ + dofsPerHexahedron*gridIndexSet.subIndex(element,0,0);
181 else if (element.type().isPyramid())
182 offset = pyramidOffset_ + dofsPerPyramid*gridIndexSet.subIndex(element,0,0);
183 else
184 DUNE_THROW(Dune::NotImplemented, "3d elements have to be tetrahedrons, prisms, hexahedrons or pyramids");
185 }
186 else
187 DUNE_THROW(Dune::NotImplemented, "No index method for " << dim << "d grids available yet!");
188 for (size_type i = 0, end = node.size() ; i < end ; ++i, ++it)
189 *it = {offset + i};
190 return it;
191 }
192
194 unsigned int order() const
195 {
196 return k;
197 }
198
199protected:
200 GridView gridView_;
201
202 size_t quadrilateralOffset_;
203 size_t pyramidOffset_;
204 size_t prismOffset_;
205 size_t hexahedronOffset_;
206};
207
208
209
210namespace BasisFactory {
211
219template<std::size_t k>
221{
222 return [](const auto& gridView) {
223 return LagrangeDGPreBasis<std::decay_t<decltype(gridView)>, k>(gridView);
224 };
225}
226
227} // end namespace BasisFactory
228
229
230
231// *****************************************************************************
232// This is the actual global basis implementation based on the reusable parts.
233// *****************************************************************************
234
242template<typename GV, int k>
244
245
246
247} // end namespace Functions
248} // end namespace Dune
249
250
251#endif // DUNE_FUNCTIONS_FUNCTIONSPACEBASES_LAGRANGEDGBASIS_HH
Global basis for given pre-basis.
Definition: defaultglobalbasis.hh:46
Default exception for dummy implementations.
Definition: exceptions.hh:263
A few common exception classes.
#define DUNE_THROW(E, m)
Definition: exceptions.hh:218
auto lagrangeDG()
Create a pre-basis factory that can create a LagrangeDG pre-basis.
Definition: lagrangedgbasis.hh:220
constexpr GeometryType prism
GeometryType representing a 3D prism.
Definition: type.hh:542
constexpr GeometryType triangle
GeometryType representing a triangle.
Definition: type.hh:518
constexpr GeometryType quadrilateral
GeometryType representing a quadrilateral (a square).
Definition: type.hh:524
constexpr GeometryType hexahedron
GeometryType representing a hexahedron.
Definition: type.hh:548
constexpr GeometryType pyramid
GeometryType representing a 3D pyramid.
Definition: type.hh:536
constexpr GeometryType tetrahedron
GeometryType representing a tetrahedron.
Definition: type.hh:530
Some useful basic math stuff.
Dune namespace.
Definition: alignedallocator.hh:13
constexpr Base power(Base m, Exponent p)
Power method for integer exponents.
Definition: math.hh:75
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 15, 22:36, 2024)