Reference documentation for deal.II version GIT relicensing-245-g36f19064f7 2024-03-29 07:20: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
Enumerations
CellSimilarity Namespace Reference

Enumerations

enum  Similarity { none , translation , inverted_translation , invalid_next_cell }
 

Detailed Description

This enum definition is used for storing similarities of the current cell to the previously visited cell. This information is used for reusing data when calling the method FEValues::reinit() (like derivatives, which do not change if one cell is just a translation of the previous). Currently, this variable does only recognize a translation and an inverted translation (if dim<spacedim). However, this concept makes it easy to add additional states to be detected in FEValues/FEFaceValues for making use of these similarities as well.

Enumeration Type Documentation

◆ Similarity

Enumerator
none 

The cells differ by something besides a translation or inverted translations.

translation 

The cells differ by a translation.

inverted_translation 

The cells differ by an inverted translation.

invalid_next_cell 

The next cell is not valid.

Definition at line 374 of file fe_update_flags.h.