From 230d9addd6817161aecf62de516beb35b0df53c3 Mon Sep 17 00:00:00 2001 From: David Wells Date: Mon, 21 Jun 2021 17:37:06 -0400 Subject: [PATCH] Reword the ReferenceCell section. 'instantiated' isn't quite right here because this is a glorified enum (not a template class). I had to rearrange a sentence to avoid things spilling into margins. --- 9.3/paper.tex | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/9.3/paper.tex b/9.3/paper.tex index 119d557..fae9aa1 100644 --- a/9.3/paper.tex +++ b/9.3/paper.tex @@ -697,13 +697,14 @@ the mesh consists exclusively of pyramids or wedges. As a consequence, some func Geometric information about cells and faces -- previously provided by the \texttt{GeometryInfo} class for hypercube-type cells -- is now -available via the \texttt{ReferenceCell} class that can be -instantiated for each of the seven possible reference cell. The -correct reference cell object for a cell or face can be obtained, respectively, using -\texttt{cell->reference\_cell()}, and either the call -\texttt{cell->reference\_cell().face\_reference\_cell(f)} +available via the \texttt{ReferenceCell} class that is defined +for each of the seven possible reference cells. The correct +\texttt{ReferenceCell} for a cell or face can be obtained, +respectively, using +\texttt{cell->reference\_cell()}, and either +\texttt{cell->face(f)->reference\_cell()} or -\texttt{cell->face(f)->reference\_cell()}. +\texttt{cell->reference\_cell().face\_reference\_cell(f)}. Furthermore, many functions in \dealii{} used mappings that, when not given explicitly, defaulted to (bi-/tri-)linear ones. These no longer -- 2.39.5