Reference documentation for deal.II version GIT relicensing-224-gc660c0d696 2024-03-28 18:40: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\}}\)
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
FE_Poly< dim, spacedim >::InternalData Class Reference

#include <deal.II/fe/fe_poly.h>

Inheritance diagram for FE_Poly< dim, spacedim >::InternalData:
Inheritance graph
[legend]

Public Member Functions

virtual std::size_t memory_consumption () const
 

Public Attributes

Table< 2, double > shape_values
 
Table< 2, Tensor< 1, dim > > shape_gradients
 
Table< 2, Tensor< 2, dim > > shape_hessians
 
Table< 2, Tensor< 3, dim > > shape_3rd_derivatives
 
UpdateFlags update_each
 

Detailed Description

template<int dim, int spacedim = dim>
class FE_Poly< dim, spacedim >::InternalData

Fields of cell-independent data.

For information about the general purpose of this class, see the documentation of the base class.

Definition at line 426 of file fe_poly.h.

Member Function Documentation

◆ memory_consumption()

virtual std::size_t FiniteElement< dim, spacedim >::InternalDataBase::memory_consumption ( ) const
virtualinherited

Return an estimate (in bytes) for the memory consumption of this object.

Member Data Documentation

◆ shape_values

template<int dim, int spacedim = dim>
Table<2, double> FE_Poly< dim, spacedim >::InternalData::shape_values

Array with shape function values in quadrature points. There is one row for each shape function, containing values for each quadrature point.

In this array, we store the values of the shape function in the quadrature points on the unit cell. Since these values do not change under transformation to the real cell, we only need to copy them over when visiting a concrete cell.

Definition at line 438 of file fe_poly.h.

◆ shape_gradients

template<int dim, int spacedim = dim>
Table<2, Tensor<1, dim> > FE_Poly< dim, spacedim >::InternalData::shape_gradients

Array with shape function gradients in quadrature points. There is one row for each shape function, containing values for each quadrature point.

We store the gradients in the quadrature points on the unit cell. We then only have to apply the transformation (which is a matrix-vector multiplication) when visiting an actual cell.

Definition at line 449 of file fe_poly.h.

◆ shape_hessians

template<int dim, int spacedim = dim>
Table<2, Tensor<2, dim> > FE_Poly< dim, spacedim >::InternalData::shape_hessians

Array with shape function hessians in quadrature points. There is one row for each shape function, containing values for each quadrature point.

We store the hessians in the quadrature points on the unit cell. We then only have to apply the transformation when visiting an actual cell.

Definition at line 460 of file fe_poly.h.

◆ shape_3rd_derivatives

template<int dim, int spacedim = dim>
Table<2, Tensor<3, dim> > FE_Poly< dim, spacedim >::InternalData::shape_3rd_derivatives

Array with shape function third derivatives in quadrature points. There is one row for each shape function, containing values for each quadrature point.

We store the third derivatives in the quadrature points on the unit cell. We then only have to apply the transformation when visiting an actual cell.

Definition at line 471 of file fe_poly.h.

◆ update_each

UpdateFlags FiniteElement< dim, spacedim >::InternalDataBase::update_each
inherited

A set of update flags specifying the kind of information that an implementation of the FiniteElement interface needs to compute on each cell or face, i.e., in FiniteElement::fill_fe_values() and friends.

This set of flags is stored here by implementations of FiniteElement::get_data(), FiniteElement::get_face_data(), or FiniteElement::get_subface_data(), and is that subset of the update flags passed to those functions that require re-computation on every cell. (The subset of the flags corresponding to information that can be computed once and for all already at the time of the call to FiniteElement::get_data() – or an implementation of that interface – need not be stored here because it has already been taken care of.)

Definition at line 719 of file fe.h.


The documentation for this class was generated from the following file: