Loading [MathJax]/extensions/tex2jax.js

DUNE PDELab (unstable)

subspacelocalfunctionspace.hh
Go to the documentation of this file.
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_PDELAB_GRIDFUNCTIONSPACE_SUBSPACELOCALFUNCTIONSPACE_HH
4#define DUNE_PDELAB_GRIDFUNCTIONSPACE_SUBSPACELOCALFUNCTIONSPACE_HH
5
10// nothing in here is of interest to our users
11#ifndef DOXYGEN
12
13#include <dune/pdelab/gridfunctionspace/gridfunctionspace.hh>
14#include <dune/pdelab/gridfunctionspace/localfunctionspace.hh>
15
16namespace Dune {
17 namespace PDELab {
18
19 namespace gfs {
20
21 // ********************************************************************************
22 // intermediate base class for LocalFunctionSpaces of GridFunctionSubSpace
23 // ********************************************************************************
24
25 // This class works for subspaces of any kind of underlying space (leaf, Power, Composite)
26 // thanks to the magic of perfect forwarding
27 template<typename GFS, typename LFS>
28 class SubSpaceLocalFunctionSpaceNode
29 : public LFS
30 {
31
32 public:
33
34 typedef typename LFS::Traits Traits;
35
36 template<typename... T>
37 SubSpaceLocalFunctionSpaceNode(T&&... t)
38 : LFS(std::forward<T>(t)...) // default initialize _tree_path
39 {}
40
41 template<typename... T>
42 SubSpaceLocalFunctionSpaceNode(typename GFS::SubSpacePath tp, T&&... t)
43 : LFS(std::forward<T>(t)...), _tree_path(tp)
44 {}
45
46 // modify bind to fill up the DOFIndices with our subspace path
47 template<typename E>
48 void bind(const E& e)
49 {
50 LFS::bind(e);
51 for (auto && dof_idx : this->_dof_index_storage)
52 {
53 Hybrid::forEach(reverse(_tree_path), [&](const auto& tree_idx){
54 dof_idx.treeIndex().push_back(tree_idx);
55 });
56 }
57 }
58
59 std::size_t subSpaceDepth() const
60 {
61 return this->gridFunctionSpace().subSpaceDepth();
62 }
63
64 private:
65 typename GFS::SubSpacePath _tree_path;
66 };
67
68 // forward declaration for use in LocalFunctionSpace specialization.
69 template<typename GFS, typename TreePath>
71
72 } // namespace gfs
73
74 // specialized version of LocalFunctionSpace interface class
75 // This class injects SubSpaceLocalFunctionSpaceNode as an intermediate base class
76 // to fix the DOFIndex handling in bind().
77 template <typename BaseGFS, typename SubSpaceTreePath>
78 class LocalFunctionSpace<gfs::GridFunctionSubSpace<BaseGFS,SubSpaceTreePath>, AnySpaceTag>
79 : public gfs::SubSpaceLocalFunctionSpaceNode<gfs::GridFunctionSubSpace<BaseGFS,SubSpaceTreePath>,
80 typename TypeTree::TransformTree<
81 gfs::GridFunctionSubSpace<BaseGFS,SubSpaceTreePath>,
82 gfs_to_lfs<gfs::GridFunctionSubSpace<
83 BaseGFS,
84 SubSpaceTreePath
85 >
86 >
87 >::Type
88 >
89 {
90
91 typedef gfs::GridFunctionSubSpace<BaseGFS,SubSpaceTreePath> GFS;
92
93 typedef gfs::SubSpaceLocalFunctionSpaceNode<
94 GFS,
95 typename TypeTree::TransformTree<
96 GFS,
97 gfs_to_lfs<GFS>
98 >::Type
99 > BaseT;
100
101 template<typename>
102 friend struct PropagateGlobalStorageVisitor;
103
104 template<typename>
105 friend struct ClearSizeVisitor;
106
107 template<typename,bool>
108 friend struct ComputeSizeVisitor;
109
110 template<typename,bool>
111 friend struct FillIndicesVisitor;
112
113 public:
114
115 LocalFunctionSpace(const GFS & gfs)
116 : BaseT(TypeTree::TransformTree<GFS,gfs_to_lfs<GFS> >::transform(gfs))
117 {
118 this->_dof_indices = &(this->_dof_index_storage);
119 this->setup(*this);
120 }
121
122 LocalFunctionSpace(std::shared_ptr<const GFS> pgfs)
123 : BaseT(*TypeTree::TransformTree<GFS,gfs_to_lfs<GFS> >::transform_storage(pgfs))
124 {
125 this->_dof_indices = &(this->_dof_index_storage);
126 this->setup(*this);
127 }
128
129 LocalFunctionSpace(const LocalFunctionSpace & lfs)
130 : BaseT(lfs)
131 {
132 // We need to reset the DOFIndex storage pointers in the new LFS tree,
133 // as they are still pointing to the _dof_index_storage of the
134 // old tree.
135 this->_dof_indices = &(this->_dof_index_storage);
136 this->setup(*this);
137 }
138
139 };
140
141 } // namespace PDELab
142} // namespace Dune
143
144#endif // DOXYGEN
145
146#endif // DUNE_PDELAB_GRIDFUNCTIONSPACE_SUBSPACELOCALFUNCTIONSPACE_HH
gfs::GridFunctionSubSpace< GFS, TreePath > GridFunctionSubSpace
Non-nesting implementation of GridFunctionSubSpace.
Definition: subspace.hh:592
constexpr void forEach(Range &&range, F &&f)
Range based for loop.
Definition: hybridutilities.hh:257
constexpr auto reverse(const HybridTreePath< T... > &tp)
Reverses the order of the elements in the path.
Definition: treepath.hh:515
Dune namespace.
Definition: alignedallocator.hh:13
constexpr std::integer_sequence< T, II..., T(IN)> push_back(std::integer_sequence< T, II... >, std::integral_constant< T, IN >={})
Append an index IN to the back of the sequence.
Definition: integersequence.hh:69
STL namespace.
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)