Reference documentation for deal.II version 9.4.1
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Loading...
Searching...
No Matches
intergrid_map.h
Go to the documentation of this file.
1// ---------------------------------------------------------------------
2//
3// Copyright (C) 1999 - 2021 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
22
24
27
29
30
113template <class MeshType>
115{
116public:
120 using cell_iterator = typename MeshType::cell_iterator;
121
125 InterGridMap();
126
130 void
131 make_mapping(const MeshType &source_grid, const MeshType &destination_grid);
132
140 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
179private:
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
216
217#endif
void set_mapping(const cell_iterator &src_cell, const cell_iterator &dst_cell)
void set_entries_to_cell(const cell_iterator &src_cell, const cell_iterator &dst_cell)
const MeshType & get_destination_grid() const
SmartPointer< const MeshType, InterGridMap< MeshType > > source_grid
typename MeshType::cell_iterator cell_iterator
std::size_t memory_consumption() const
const MeshType & get_source_grid() const
SmartPointer< const MeshType, InterGridMap< MeshType > > destination_grid
void make_mapping(const MeshType &source_grid, const MeshType &destination_grid)
cell_iterator operator[](const cell_iterator &source_cell) const
std::vector< std::vector< cell_iterator > > mapping
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:442
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:443
#define DeclException0(Exception0)
Definition: exceptions.h:464
static ::ExceptionBase & ExcIncompatibleGrids()
#define DeclException1(Exception1, type1, outsequence)
Definition: exceptions.h:509
static ::ExceptionBase & ExcInvalidKey(cell_iterator arg1)