From 8e80014c8de1eae7cf4fb15d1492fd1e75946969 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 3 Oct 2022 19:29:39 -0600 Subject: [PATCH] Fix a
type list. --- include/deal.II/base/polynomials_rt_bubbles.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/include/deal.II/base/polynomials_rt_bubbles.h b/include/deal.II/base/polynomials_rt_bubbles.h index 7926b4eec0..ea9aae3af2 100644 --- a/include/deal.II/base/polynomials_rt_bubbles.h +++ b/include/deal.II/base/polynomials_rt_bubbles.h @@ -39,16 +39,20 @@ DEAL_II_NAMESPACE_OPEN * polynomial space Qk-1. * * This space is of the form Vk = RTk-1 + - * Bk, where Bk is defined as follows:
- *
In 2D: + * Bk, where Bk is defined as follows: + *
+ *
In 2D:
+ *
* @f{align*}{ * B_k^1(E) = \text{span}\left\{x^{a_1-1} y^{a_2}\begin{pmatrix} (a_2+1) x \\ * -a_1 y \end{pmatrix}\text{ : } a_2=k \right\} \\ * B_k^2(E) = \text{span}\left\{x^{b_1} y^{b_2-1}\begin{pmatrix} -b_2 x \\ * (b_1+1) y \end{pmatrix}\text{ : } b_1=k \right\} * @f} + *
* - *
In 3D: + *
In 3D:
+ *
* @f{align*}{ * B_k^1(E) = \text{span}\left\{x^{a_1-1} y^{a_2} z^{a_3}\begin{pmatrix} * (a_2+a_3+2) x \\ @@ -62,6 +66,7 @@ DEAL_II_NAMESPACE_OPEN * \\ -c_3y \\ (c_1+c_2+2)z \end{pmatrix}\text{ : } c_1=k \text{ or } c_2=k * \right\}, * @f} + *
*
* where $0 \le a_1, a_2, a_3 \le k$. * -- 2.39.5