3#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_TAYLORHOODBASIS_HH
4#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_TAYLORHOODBASIS_HH
8#include <dune/common/indices.hh>
10#include <dune/typetree/powernode.hh>
11#include <dune/typetree/compositenode.hh>
13#include <dune/functions/functionspacebases/nodes.hh>
15#include <dune/functions/functionspacebases/lagrangebasis.hh>
16#include <dune/functions/functionspacebases/defaultglobalbasis.hh>
35class TaylorHoodVelocityTree;
38class TaylorHoodBasisTree;
59template<
typename GV,
bool HI=false>
62 static const bool useHybridIndices = HI;
64 static const int dim = GV::dimension;
75 using Node = TaylorHoodBasisTree<GV>;
77 static constexpr size_type maxMultiIndexSize = useHybridIndices ? 3 : 2;
78 static constexpr size_type minMultiIndexSize = 2;
79 static constexpr size_type multiIndexBufferSize = maxMultiIndexSize;
130 template<
class SizePrefix>
133 return sizeImp<useHybridIndices>(prefix);
138 template<
bool hi,
class SizePrefix,
139 typename std::enable_if<not hi,int>::type = 0>
140 size_type sizeImp(
const SizePrefix& prefix)
const
142 if (prefix.size() == 0)
144 if (prefix.size() == 1)
147 return dim * pq2PreBasis_.
size();
149 return pq1PreBasis_.
size();
151 assert(prefix.size() == 2);
155 template<
bool hi,
class SizePrefix,
156 typename std::enable_if<hi,int>::type = 0>
157 size_type sizeImp(
const SizePrefix& prefix)
const
159 if (prefix.size() == 0)
161 if (prefix.size() == 1)
164 return pq2PreBasis_.
size();
166 return pq1PreBasis_.
size();
168 if (prefix.size() == 2)
175 assert(prefix.size() == 3);
184 return dim * pq2PreBasis_.
size() + pq1PreBasis_.
size();
193 template<
typename It>
194 It indices(
const Node& node, It it)
const
196 return indicesImp<useHybridIndices>(node, it);
201 template<
class MultiIndex>
202 static const void multiIndexPushFront(MultiIndex& M,
size_type M0)
204 M.resize(M.size()+1);
205 for(std::size_t i=M.size()-1; i>0; --i)
210 template<
bool hi,
class It,
211 typename std::enable_if<not hi,int>::type = 0>
212 It indicesImp(
const Node& node, It multiIndices)
const
218 pq2PreBasis_.indices(node.child(
_0, 0), multiIndices);
219 for (std::size_t i = 0; i<subTreeSize; ++i)
221 multiIndexPushFront(multiIndices[i], 0);
222 multiIndices[i][1] = multiIndices[i][1]*dim +
child;
224 multiIndices += subTreeSize;
227 pq1PreBasis_.indices(node.child(
_1), multiIndices);
228 for (std::size_t i = 0; i<subTreeSize; ++i)
229 multiIndexPushFront(multiIndices[i], 1);
230 multiIndices += subTreeSize;
234 template<
bool hi,
class It,
235 typename std::enable_if<hi,int>::type = 0>
236 It indicesImp(
const Node& node, It multiIndices)
const
242 pq2PreBasis_.indices(node.child(
_0, 0), multiIndices);
243 for (std::size_t i = 0; i<subTreeSize; ++i)
245 multiIndexPushFront(multiIndices[i], 0);
246 multiIndices[i].push_back(i);
248 multiIndices += subTreeSize;
251 pq1PreBasis_.indices(node.child(
_1), multiIndices);
252 for (std::size_t i = 0; i<subTreeSize; ++i)
253 multiIndexPushFront(multiIndices[i], 1);
254 multiIndices += subTreeSize;
260 PQ1PreBasis pq1PreBasis_;
261 PQ2PreBasis pq2PreBasis_;
267class TaylorHoodVelocityTree :
268 public PowerBasisNode<LagrangeNode<GV,2>, GV::dimension>
270 using PQ2Node = LagrangeNode<GV,2>;
271 using Base = PowerBasisNode<PQ2Node, GV::dimension>;
274 TaylorHoodVelocityTree()
276 for(
int i=0; i<GV::dimension; ++i)
277 this->
setChild(i, std::make_shared<PQ2Node>());
282class TaylorHoodBasisTree :
283 public CompositeBasisNode<
284 TaylorHoodVelocityTree<GV>,
288 using VelocityNode=TaylorHoodVelocityTree<GV>;
289 using PressureNode=LagrangeNode<GV,1>;
291 using Base=CompositeBasisNode<VelocityNode, PressureNode>;
294 TaylorHoodBasisTree()
296 this->
template setChild<0>(std::make_shared<VelocityNode>());
297 this->
template setChild<1>(std::make_shared<PressureNode>());
303namespace BasisFactory {
313 return [](
const auto& gridView) {
Global basis for given pre-basis.
Definition: defaultglobalbasis.hh:46
void initializeIndices()
Initialize the global indices.
Definition: lagrangebasis.hh:96
void update(const GridView &gv)
Update the stored grid view, to be called if the grid has changed.
Definition: lagrangebasis.hh:126
size_type maxNodeSize() const
Get the maximal number of DOFs associated to node for any element.
Definition: lagrangebasis.hh:184
size_type size() const
Same as size(prefix) with empty prefix.
Definition: lagrangebasis.hh:140
Pre-basis for lowest order Taylor-Hood basis.
Definition: taylorhoodbasis.hh:61
TaylorHoodPreBasis(const GridView &gv)
Constructor for a given grid view object.
Definition: taylorhoodbasis.hh:89
const GridView & gridView() const
Obtain the grid view that the basis is defined on.
Definition: taylorhoodbasis.hh:103
size_type size(const SizePrefix &prefix) const
Return number of possible values for next position in multi index.
Definition: taylorhoodbasis.hh:131
GV GridView
The grid view that the FE basis is defined on.
Definition: taylorhoodbasis.hh:69
void update(const GridView &gv)
Update the stored grid view, to be called if the grid has changed.
Definition: taylorhoodbasis.hh:109
TaylorHoodBasisTree< GV > Node
Template mapping root tree path to type of created tree node.
Definition: taylorhoodbasis.hh:75
size_type size() const
Same as size(prefix) with empty prefix.
Definition: taylorhoodbasis.hh:124
size_type dimension() const
Get the total dimension of the space spanned by this basis.
Definition: taylorhoodbasis.hh:182
Node makeNode() const
Create tree node.
Definition: taylorhoodbasis.hh:118
void initializeIndices()
Initialize the global indices.
Definition: taylorhoodbasis.hh:96
size_type maxNodeSize() const
Get the maximal number of DOFs associated to node for any element.
Definition: taylorhoodbasis.hh:188
std::size_t size_type
Type used for indices and size information.
Definition: taylorhoodbasis.hh:72
Grid view abstract base class.
Definition: gridview.hh:66
void setChild(T &t, index_constant< i >={})
Sets the i-th child to the passed-in value.
Definition: powernode.hh:145
A few common exception classes.
constexpr index_constant< 0 > _0
Compile time index with value 0.
Definition: indices.hh:53
constexpr index_constant< 1 > _1
Compile time index with value 1.
Definition: indices.hh:56
auto taylorHood()
Create a pre-basis factory that can create a Taylor-Hood pre-basis.
Definition: taylorhoodbasis.hh:311
Namespace with predefined compile time indices for the range [0,19].
Definition: indices.hh:51
Dune namespace.
Definition: alignedallocator.hh:13
An stl-compliant random-access container which stores everything on the stack.