/usr/include/dune/functions/functionspacebases/defaultglobalbasis.hh is in libdune-functions-dev 2.5.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_DEFAULTGLOBALBASIS_HH
#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_DEFAULTGLOBALBASIS_HH
#include <dune/common/reservedvector.hh>
#include <dune/common/typeutilities.hh>
#include <dune/common/concept.hh>
#include <dune/functions/common/type_traits.hh>
#include <dune/functions/functionspacebases/defaultlocalindexset.hh>
#include <dune/functions/functionspacebases/defaultlocalview.hh>
#include <dune/functions/functionspacebases/concepts.hh>
namespace Dune {
namespace Functions {
/**
* \brief Global basis for given node factory
*
* This class implements the interface of a global basis
* using the details from a given node factory. Hence
* it serves as an example for this interface.
*
* If you want to implement your own global basis, it may be
* better to implement a node factory instead. On the one hand
* this needs less boiler-plate code. On the other hand
* it makes your implementation composable and thus much
* more flexible. That is, you can reuse your factory
* as one part in a larger product space by plugging it
* e.g. into a CompositeNodeFactory of PowerNodeFactory.
* The actual global basis for your FooNodeFactory is
* then obtained by using DefaultGlobalBasis<FooNodeFactory>.
*
* \tparam NF Node factory providing the implementation details
*/
template<class NF>
class DefaultGlobalBasis
{
public:
//! Node factory providing the implementation details
using NodeFactory = NF;
//! The empty prefix path that identifies the root in the local ansatz tree
using PrefixPath = TypeTree::HybridTreePath<>;
//! The grid view that the FE space is defined on
using GridView = typename NodeFactory::GridView;
//! Type used for global numbering of the basis vectors
using MultiIndex = typename NodeFactory::MultiIndex;
//! Type used for indices and size information
using size_type = std::size_t;
//! Type of the local view on the restriction of the basis to a single element
using LocalView = DefaultLocalView<DefaultGlobalBasis<NodeFactory>>;
//! Node index set provided by NodeFactory
using NodeIndexSet = typename NodeFactory::template IndexSet<PrefixPath>;
//! Type used for prefixes handed to the size() method
using SizePrefix = typename NodeFactory::SizePrefix;
//! Type of local indixes set exported by localIndexSet()
using LocalIndexSet = DefaultLocalIndexSet<LocalView, NodeIndexSet>;
/**
* \brief Constructor
*
* \tparam T Argument list for NodeFactory
* \param t Argument list for NodeFactory
*
* This will forward all arguments to the constructor of NodeFactory
*/
template<class... T,
disableCopyMove<DefaultGlobalBasis, T...> = 0,
enableIfConstructible<NodeFactory, T...> = 0>
DefaultGlobalBasis(T&&... t) :
nodeFactory_(std::forward<T>(t)...),
prefixPath_()
{
static_assert(models<Concept::NodeFactory<GridView>, NodeFactory>(), "Type passed to DefaultGlobalBasis does not model the NodeFactory concept.");
nodeFactory_.initializeIndices();
}
//! Obtain the grid view that the basis is defined on
const GridView& gridView() const
{
return nodeFactory_.gridView();
}
//! Obtain the node factory providing the implementation details
const NodeFactory& nodeFactory() const
{
return nodeFactory_;
}
/**
* \brief Update the stored grid view
*
* This will update the indexing information of the global basis.
* It must be called if the grid has changed.
*/
void update(const GridView & gv)
{
nodeFactory_.update(gv);
nodeFactory_.initializeIndices();
}
//! Get the total dimension of the space spanned by this basis
size_type dimension() const
{
return nodeFactory_.dimension();
}
//! Return number of possible values for next position in empty multi index
size_type size() const
{
return nodeFactory_.size();
}
//! Return number of possible values for next position in multi index
size_type size(const SizePrefix& prefix) const
{
return nodeFactory_.size(prefix);
}
//! Return local view for basis
LocalView localView() const
{
return LocalView(*this);
}
//! Return local index set for basis
LocalIndexSet localIndexSet() const
{
return LocalIndexSet(nodeFactory_.template indexSet<PrefixPath>());
}
//! Return *this because we are not embedded in a larger basis
const DefaultGlobalBasis& rootBasis() const
{
return *this;
}
//! Return empty path, because this is the root in the local ansatz tree
const PrefixPath& prefixPath() const
{
return prefixPath_;
}
protected:
NodeFactory nodeFactory_;
PrefixPath prefixPath_;
};
namespace BasisBuilder {
template<class GridView, class FactoryTag>
auto makeBasis(const GridView& gridView, FactoryTag&& factoryTag)
-> DefaultGlobalBasis<decltype(factoryTag.template build<typename Dune::ReservedVector<std::size_t, FactoryTag::requiredMultiIndexSize> >(gridView))>
{
using MultiIndex = typename Dune::ReservedVector<std::size_t, FactoryTag::requiredMultiIndexSize>;
return {factoryTag.template build<MultiIndex>(gridView)};
}
template<class MultiIndex, class GridView, class FactoryTag>
auto makeBasis(const GridView& gridView, FactoryTag&& factoryTag)
-> DefaultGlobalBasis<decltype(factoryTag.template build<MultiIndex>(gridView))>
{
return {factoryTag.template build<MultiIndex>(gridView)};
}
} // end namespace BasisBuilder
} // end namespace Functions
} // end namespace Dune
#endif // DUNE_FUNCTIONS_FUNCTIONSPACEBASES_DEFAULTGLOBALBASIS_HH
|