AMDiS  0.1
The Adaptive Multi-Dimensional Simulation Toolbox
VectorBackend.hpp
1 #pragma once
2 
3 #include <dune/istl/bvector.hh>
4 #include <dune/functions/backends/istlvectorbackend.hh>
5 
6 #include <amdis/Output.hpp>
7 #include <amdis/common/FakeContainer.hpp>
8 #include <amdis/linearalgebra/VectorBase.hpp>
9 #include <amdis/typetree/MultiIndex.hpp>
10 
11 namespace AMDiS
12 {
13  template <class T, class = void>
15  {
16  using type = Dune::FieldVector<T,1>;
17  };
18 
19  template <class T>
20  struct BlockVectorType<T, typename T::field_type>
21  {
22  using type = T;
23  };
24 
25  template <class T>
27  : public VectorBase<ISTLBlockVector<T>>
28  {
29  public:
31  using BaseVector = Dune::BlockVector<typename BlockVectorType<T>::type>;
32 
34  using block_type = typename BaseVector::block_type;
35 
37  using value_type = T;
38 
40  using field_type = typename block_type::field_type;
41 
43  using size_type = typename BaseVector::size_type;
44 
45  public:
47  template <class Basis>
48  explicit ISTLBlockVector(Basis const&) {}
49 
51  BaseVector const& vector() const
52  {
53  return vector_;
54  }
55 
58  {
59  return vector_;
60  }
61 
63  std::size_t size() const
64  {
65  return vector_.size();
66  }
67 
69  // NOTE: this resize works recursively on the hierarchy of the vector
70  template <class SizeInfo>
71  void init(SizeInfo const& sizeInfo, bool clear)
72  {
73  Dune::Functions::istlVectorBackend(vector_).resize(sizeInfo);
74  if (clear)
75  vector_ = 0;
76  }
77 
79  template <class MultiIndex>
80  value_type& at(MultiIndex const& idx)
81  {
82  return Dune::Functions::istlVectorBackend(vector_)[idx];
83  }
84 
86  template <class MultiIndex>
87  value_type const& at(MultiIndex const& idx) const
88  {
89  return Dune::Functions::istlVectorBackend(vector_)[idx];
90  }
91 
92  private:
93  BaseVector vector_;
94  };
95 
96 } // end namespace AMDiS
constexpr bool MultiIndex
A multi-index type.
Definition: Concepts.hpp:150
ISTLBlockVector(Basis const &)
Constructor. Constructs new BaseVector.
Definition: VectorBackend.hpp:48
T value_type
The type of the elements of the DOFVector.
Definition: VectorBackend.hpp:37
BaseVector & vector()
Return the data-vector vector.
Definition: VectorBackend.hpp:57
Contains all classes needed for solving linear and non linear equation systems.
Definition: AdaptBase.hpp:6
BaseVector const & vector() const
Return the data-vector vector.
Definition: VectorBackend.hpp:51
std::size_t size() const
Return the current size of the vector_.
Definition: VectorBackend.hpp:63
value_type & at(MultiIndex const &idx)
Access the entry idx of the vector_ with write-access.
Definition: VectorBackend.hpp:80
typename block_type::field_type field_type
The underlying field type.
Definition: VectorBackend.hpp:40
Dune::BlockVector< typename BlockVectorType< T >::type > BaseVector
The vector type of the underlying base vector.
Definition: VectorBackend.hpp:31
CRTP base class for flat vector backends.
Definition: VectorBase.hpp:15
typename BaseVector::block_type block_type
The type of the elements of the DOFVector.
Definition: VectorBackend.hpp:34
void init(SizeInfo const &sizeInfo, bool clear)
Resize the vector_ to the size given by the sizeProvider.
Definition: VectorBackend.hpp:71
Definition: VectorBackend.hpp:14
typename BaseVector::size_type size_type
The index/size - type.
Definition: VectorBackend.hpp:43
value_type const & at(MultiIndex const &idx) const
Access the entry idx of the vector_ with read-access.
Definition: VectorBackend.hpp:87
Definition: VectorBackend.hpp:26