/usr/include/dune/pdelab/gridfunctionspace/dunefunctionsgridfunctionspace.hh is in libdune-pdelab-dev 2.5.0~rc1-2build1.
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_PDELAB_GRIDFUNCTIONSPACE_DUNEFUNCTIONSGRIDFUNCTIONSPACE_HH
#define DUNE_PDELAB_GRIDFUNCTIONSPACE_DUNEFUNCTIONSGRIDFUNCTIONSPACE_HH
#include <cstddef>
#include <map>
#include <ostream>
#include <set>
#include <vector>
#include <dune/common/exceptions.hh>
#include <dune/common/typetraits.hh>
#include <dune/pdelab/gridfunctionspace/gridfunctionspace.hh>
#include <dune/pdelab/gridfunctionspace/dunefunctionslocalfunctionspace.hh>
#include <dune/pdelab/gridfunctionspace/dunefunctionslfsindexcache.hh>
#include <dune/pdelab/backend/istl/dunefunctions.hh>
namespace Dune {
namespace PDELab {
//! \addtogroup GridFunctionSpace grid function space
//! \ingroup PDELab
//! \{
namespace Experimental {
/** \brief A pdelab grid function space implemented by a dune-functions function space basis
*
* \tparam DFBasis A dune-functions function space basis
* \tparam V The type of the underlying ISTL vector
* \tparam CE Type for constraints assembler
*/
template<typename DFBasis, typename V, typename CE>
class GridFunctionSpace
: public TypeTree::LeafNode
, public GridFunctionOutputParameters
// , public DataHandleProvider<DuneFunctionsGridFunctionSpace<DFBasis,CE,B,P> >
{
using GV = typename DFBasis::GridView;
template<typename,typename>
friend class GridFunctionSpaceBase;
public:
//! export Traits class
struct Traits {
using GridView = Dune::PDELab::impl::GridView<typename DFBasis::GridView>;
using EntitySet = Dune::PDELab::impl::EntitySet<typename DFBasis::GridView>;
using size_type = std::size_t;
using SizeType = size_type;
using ConstraintsType = CE;
using Basis = DFBasis;
using Backend = istl::SimpleVectorBackend<V>;
struct FEM
{
struct Traits
{
using FiniteElement = typename DFBasis::LocalView::Tree::FiniteElement;
using FiniteElementType = FiniteElement;
};
};
using FiniteElementMap = FEM;
using FiniteElementMapType = FEM;
};
using Basis = DFBasis;
struct Ordering {
struct Traits {
using DOFIndex = typename DFBasis::MultiIndex;
using ContainerIndex = DOFIndex;
using size_type = std::size_t;
using SizeType = size_type;
};
using DOFIndex = typename DFBasis::MultiIndex;
using ContainerIndex = DOFIndex;
using size_type = std::size_t;
using CacheTag = DuneFunctionsCacheTag;
using ContainerAllocationTag = FlatContainerAllocationTag;
Ordering(const GridFunctionSpace& gfs)
: _gfs(gfs)
{}
size_type size() const
{
return _gfs.basis().size();
}
size_type blockCount() const
{
return size() / V::block_type::dimension;
}
size_type maxLocalSize() const
{
return _gfs.basis().maxLocalSize();
}
ContainerIndex mapIndex(const DOFIndex& di) const
{
return di;
}
void mapIndex(const DOFIndex& di, ContainerIndex& ci) const
{
ci = di;
}
void update()
{}
private:
const GridFunctionSpace& _gfs;
};
//! extract type for storing constraints
template<typename E>
struct ConstraintsContainer
{
//! \brief define Type as the Type of a container of E's
using Type = std::conditional_t<
std::is_same<
CE,
NoConstraints
>::value,
EmptyTransformation,
ConstraintsTransformation<typename Ordering::Traits::DOFIndex,typename Ordering::Traits::ContainerIndex,E>
>;
private:
ConstraintsContainer () {}
};
// ****************************************************************************************************
// Construct from a dune-functions basis
// ****************************************************************************************************
//! constructor
GridFunctionSpace (std::shared_ptr<DFBasis> df_basis, std::shared_ptr<CE> ce)
: _es(df_basis->gridView(), Traits::EntitySet::allCodims())
, _df_basis(std::move(df_basis))
, _pce(std::move(ce))
, _ordering(*this)
{}
GridFunctionSpace (std::shared_ptr<DFBasis> df_basis)
: _es(df_basis->gridView(), Traits::EntitySet::allCodims())
, _df_basis(std::move(df_basis))
, _pce(std::make_shared<CE>())
, _ordering(*this)
{}
//! get grid view
const typename Traits::GridView& gridView () const
{
return _es.gridView();
}
//! get EntitySet
const typename Traits::EntitySet& entitySet () const
{
return _es;
}
//! return constraints engine
const typename Traits::ConstraintsType& constraints () const
{
return *_pce;
}
//! return storage of constraints engine
std::shared_ptr<const CE> constraintsStorage () const
{
return _pce;
}
//! Direct access to the DOF ordering.
const Ordering& ordering() const
{
return _ordering;
}
typename Traits::SizeType size() const
{
return _ordering.size();
}
typename Traits::SizeType blockCount() const
{
return _ordering.blockCount();
}
typename Traits::SizeType globalSize() const
{
return _ordering.size();
}
typename Traits::SizeType maxLocalSize () const
{
return _ordering.maxLocalSize();
}
const std::string& name() const
{
return _name;
}
void name(const std::string& name)
{
_name = name;
}
bool isRootSpace() const
{
return true;
}
const Basis& basis() const
{
return *_df_basis;
}
private:
typename Traits::EntitySet _es;
std::shared_ptr<DFBasis> _df_basis;
std::shared_ptr<CE const> _pce;
Ordering _ordering;
std::string _name;
};
} // namespace Experimental
} // namespace PDELab
} // namespace Dune
#endif // DUNE_PDELAB_GRIDFUNCTIONSPACE_DUNEFUNCTIONSGRIDFUNCTIONSPACE_HH
|