Reference documentation for deal.II version 9.1.0-pre
intergrid_map.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 1999 - 2017 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_intergrid_map_h
17 #define dealii_intergrid_map_h
18 
19 #include <deal.II/base/config.h>
20 
21 #include <deal.II/base/smartpointer.h>
22 
23 #include <deal.II/dofs/dof_accessor.h>
24 
25 #include <deal.II/grid/tria_accessor.h>
26 #include <deal.II/grid/tria_iterator.h>
27 
28 DEAL_II_NAMESPACE_OPEN
29 
30 
114 template <class MeshType>
115 class InterGridMap : public Subscriptor
116 {
117 public:
121  using cell_iterator = typename MeshType::cell_iterator;
122 
126  InterGridMap();
127 
131  void
132  make_mapping(const MeshType &source_grid, const MeshType &destination_grid);
133 
140  cell_iterator operator[](const cell_iterator &source_cell) const;
141 
145  void
146  clear();
147 
151  const MeshType &
152  get_source_grid() const;
153 
157  const MeshType &
158  get_destination_grid() const;
159 
164  std::size_t
165  memory_consumption() const;
166 
172  << "The iterator " << arg1 << " is not valid as key for "
173  << "this map.");
178 
179 private:
183  std::vector<std::vector<cell_iterator>> mapping;
184 
189 
194 
199  void
200  set_mapping(const cell_iterator &src_cell, const cell_iterator &dst_cell);
201 
209  void
210  set_entries_to_cell(const cell_iterator &src_cell,
211  const cell_iterator &dst_cell);
212 };
213 
214 
215 DEAL_II_NAMESPACE_CLOSE
216 
217 #endif
SmartPointer< const MeshType, InterGridMap< MeshType > > source_grid
const MeshType & get_destination_grid() const
void set_entries_to_cell(const cell_iterator &src_cell, const cell_iterator &dst_cell)
cell_iterator operator[](const cell_iterator &source_cell) const
std::size_t memory_consumption() const
typename MeshType::cell_iterator cell_iterator
static::ExceptionBase & ExcInvalidKey(cell_iterator arg1)
#define DeclException1(Exception1, type1, outsequence)
Definition: exceptions.h:408
std::vector< std::vector< cell_iterator > > mapping
static::ExceptionBase & ExcIncompatibleGrids()
#define DeclException0(Exception0)
Definition: exceptions.h:385
void make_mapping(const MeshType &source_grid, const MeshType &destination_grid)
SmartPointer< const MeshType, InterGridMap< MeshType > > destination_grid
const MeshType & get_source_grid() const
void set_mapping(const cell_iterator &src_cell, const cell_iterator &dst_cell)