Reference documentation for deal.II version GIT 9042b9283b 2023-12-02 14:50:02+00:00
\(\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\}}\)
mapping_related_data.h
Go to the documentation of this file.
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2022 - 2022 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_fe_mapping_related_data_h
17 #define dealii_fe_mapping_related_data_h
18 
19 #include <deal.II/base/config.h>
20 
22 #include <deal.II/base/point.h>
23 #include <deal.II/base/tensor.h>
24 
26 
27 #include <vector>
28 
29 
31 
35 namespace internal
36 {
37  namespace FEValuesImplementation
38  {
51  template <int dim, int spacedim = dim>
53  {
54  public:
58  void
59  initialize(const unsigned int n_quadrature_points,
60  const UpdateFlags flags);
61 
66  std::size_t
67  memory_consumption() const;
68 
82  std::vector<double> JxW_values;
83 
87  std::vector<DerivativeForm<1, dim, spacedim>> jacobians;
88 
93  std::vector<DerivativeForm<2, dim, spacedim>> jacobian_grads;
94 
98  std::vector<DerivativeForm<1, spacedim, dim>> inverse_jacobians;
99 
104  std::vector<Tensor<3, spacedim>> jacobian_pushed_forward_grads;
105 
110  std::vector<DerivativeForm<3, dim, spacedim>> jacobian_2nd_derivatives;
111 
116  std::vector<Tensor<4, spacedim>> jacobian_pushed_forward_2nd_derivatives;
117 
122  std::vector<DerivativeForm<4, dim, spacedim>> jacobian_3rd_derivatives;
123 
128  std::vector<Tensor<5, spacedim>> jacobian_pushed_forward_3rd_derivatives;
129 
135  std::vector<Point<spacedim>> quadrature_points;
136 
140  std::vector<Tensor<1, spacedim>> normal_vectors;
141 
145  std::vector<Tensor<1, spacedim>> boundary_forms;
146  };
147  } // namespace FEValuesImplementation
148 } // namespace internal
149 
150 
156 
157 #endif
std::vector< DerivativeForm< 1, spacedim, dim > > inverse_jacobians
void initialize(const unsigned int n_quadrature_points, const UpdateFlags flags)
std::vector< Tensor< 1, spacedim > > normal_vectors
std::vector< Tensor< 5, spacedim > > jacobian_pushed_forward_3rd_derivatives
std::vector< DerivativeForm< 4, dim, spacedim > > jacobian_3rd_derivatives
std::vector< DerivativeForm< 3, dim, spacedim > > jacobian_2nd_derivatives
std::vector< Tensor< 4, spacedim > > jacobian_pushed_forward_2nd_derivatives
std::vector< Tensor< 3, spacedim > > jacobian_pushed_forward_grads
std::vector< DerivativeForm< 2, dim, spacedim > > jacobian_grads
std::vector< Tensor< 1, spacedim > > boundary_forms
std::vector< DerivativeForm< 1, dim, spacedim > > jacobians
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:477
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:478
UpdateFlags