From 5ec74bfc37cf351bbded90347762d980af5afadc Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Thu, 12 Aug 2021 09:43:22 +0200 Subject: [PATCH] Add comments to wedge and pyramid FEs regarding degree --- include/deal.II/fe/fe_pyramid_p.h | 6 ++++++ include/deal.II/fe/fe_wedge_p.h | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/include/deal.II/fe/fe_pyramid_p.h b/include/deal.II/fe/fe_pyramid_p.h index a4a95ed36f..b82028744d 100644 --- a/include/deal.II/fe/fe_pyramid_p.h +++ b/include/deal.II/fe/fe_pyramid_p.h @@ -48,6 +48,9 @@ public: * the finite element space of continuous, piecewise polynomials of * degree $k$. * + * @note Currently, only linear polynomials (degree=1) are implemented. See + * also the documentation of ScalarLagrangePolynomialPyramid. + * * @ingroup simplex */ template @@ -107,6 +110,9 @@ public: * the finite element space of discontinuous, piecewise polynomials of * degree $k$. * + * @note Currently, only linear polynomials (degree=1) are implemented. See + * also the documentation of ScalarLagrangePolynomialPyramid. + * * @ingroup simplex */ template diff --git a/include/deal.II/fe/fe_wedge_p.h b/include/deal.II/fe/fe_wedge_p.h index ef44d5e128..032bba660e 100644 --- a/include/deal.II/fe/fe_wedge_p.h +++ b/include/deal.II/fe/fe_wedge_p.h @@ -48,6 +48,10 @@ public: * the finite element space of continuous, piecewise polynomials of * degree $k$. * + * @note Currently, only linear (degree=1) and quadratic polynomials + * (degree=2) are implemented. See also the documentation of + * ScalarLagrangePolynomialWedge. + * * @ingroup simplex */ template @@ -107,6 +111,10 @@ public: * the finite element space of discontinuous, piecewise polynomials of * degree $k$. * + * @note Currently, only linear (degree=1) and quadratic polynomials + * (degree=2) are implemented. See also the documentation of + * ScalarLagrangePolynomialWedge. + * * @ingroup simplex */ template -- 2.39.5