From 314c5645b0e31c0c21e3ee8d805d6e964d09b881 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 10 Apr 2015 20:33:41 -0500 Subject: [PATCH] Reference the class upon which this finite element is built. --- include/deal.II/fe/fe_q_hierarchical.h | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/include/deal.II/fe/fe_q_hierarchical.h b/include/deal.II/fe/fe_q_hierarchical.h index 69db3d97ed..3e4879ecef 100644 --- a/include/deal.II/fe/fe_q_hierarchical.h +++ b/include/deal.II/fe/fe_q_hierarchical.h @@ -29,23 +29,12 @@ template class MappingQ; /*@{*/ /** - * Implementation of Hierarchical finite elements @p Qp that yield the finite + * Implementation of hierarchical @p Qp shape functions that yield the finite * element space of continuous, piecewise polynomials of degree @p p. This * class is realized using tensor product polynomials based on a hierarchical - * basis @p Hierarchical on the interval [0,1] which is suitable for - * building an @p hp tensor product finite element, if we assume that each - * element has a single degree. - * - * There are not many differences between @p FE_Q_Hierarchical and @p FE_Q, - * except that we add a function @p embedding_dofs that takes a given integer - * @p q, between @p 1 and @p p, and returns the numbering of basis functions - * of the element of order @p q in basis of order @p p. This function is - * useful if one wants to make calculations using the hierarchical nature of - * these shape functions. - * - * The unit support points now are reduced to @p 0, @p 1, and 0.5 in - * one dimension, and tensor products in higher dimensions. Thus, various - * interpolation functions will only work correctly for the linear case. + * basis Polynomials::Hierarchical on the interval [0,1] which is + * suitable for building an @p hp tensor product finite element if we assume + * that each element has a single degree. * * The constructor of this class takes the degree @p p of this finite element. * @@ -549,7 +538,7 @@ template class MappingQ; * * * - * @author Brian Carnes, 2002, Ralf Hartmann 2004, 2005 + * @author Brian Carnes, 2002, Ralf Hartmann 2004, 2005, Denis Davydov, 2015 */ template class FE_Q_Hierarchical : public FE_Poly,dim> -- 2.39.5