Reference documentation for deal.II version 9.0.0
face_info.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2018 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 at
12 // the top level of the deal.II distribution.
13 //
14 // ---------------------------------------------------------------------
15 
16 
17 #ifndef dealii_matrix_free_face_info_h
18 #define dealii_matrix_free_face_info_h
19 
20 
21 #include <deal.II/base/exceptions.h>
22 #include <deal.II/base/memory_consumption.h>
23 #include <deal.II/base/table.h>
24 
25 
26 DEAL_II_NAMESPACE_OPEN
27 
28 
29 
30 namespace internal
31 {
32  namespace MatrixFreeFunctions
33  {
53  template <int vectorization_width>
55  {
61  unsigned int cells_interior[vectorization_width];
62 
76  unsigned int cells_exterior[vectorization_width];
77 
82  unsigned char interior_face_no;
83 
90  unsigned char exterior_face_no;
91 
97  unsigned char subface_index;
98 
106  unsigned char face_orientation;
107 
111  std::size_t memory_consumption() const
112  {
113  return sizeof (*this);
114  }
115  };
116 
117 
118 
123  template <int vectorization_width>
124  struct FaceInfo
125  {
130  void clear()
131  {
132  faces = std::vector<FaceToCellTopology<vectorization_width> >();
135  }
136 
140  std::size_t memory_consumption() const
141  {
144  }
145 
150  std::vector<FaceToCellTopology<vectorization_width> > faces;
151 
158 
164  };
165  } // end of namespace MatrixFreeFunctions
166 } // end of namespace internal
167 
168 DEAL_II_NAMESPACE_CLOSE
169 
170 #endif
std::size_t memory_consumption() const
Definition: face_info.h:140
::Table< 3, types::boundary_id > cell_and_face_boundary_id
Definition: face_info.h:163
unsigned int cells_interior[vectorization_width]
Definition: face_info.h:61
void reinit(const TableIndices< N > &new_size, const bool omit_default_initialization=false)
::Table< 3, unsigned int > cell_and_face_to_plain_faces
Definition: face_info.h:157
std::vector< FaceToCellTopology< vectorization_width > > faces
Definition: face_info.h:150
std::size_t memory_consumption() const
unsigned int cells_exterior[vectorization_width]
Definition: face_info.h:76