From: wolf Date: Thu, 30 Jun 2005 14:06:59 +0000 (+0000) Subject: Modify comments. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f1cd1e1915d1d42aff1f62ff665d9129720ec09;p=dealii-svn.git Modify comments. git-svn-id: https://svn.dealii.org/trunk@10983 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_base.h b/deal.II/deal.II/include/fe/fe_base.h index 82dae1329b..9b5ad1dcd0 100644 --- a/deal.II/deal.II/include/fe/fe_base.h +++ b/deal.II/deal.II/include/fe/fe_base.h @@ -56,7 +56,8 @@ class FiniteElementData * is measured by the Sobolev * space containing the * constructed finite element - * space and also called this way. + * space and is also called this + * way. * * Note that certain continuities * may imply others. For @@ -103,17 +104,54 @@ class FiniteElementData */ enum Conformity { -/// Indicates incompatible continuities of a system. + /** + * Indicates incompatible + * continuities of a + * system. + */ unknown = 0x00, -/// Discontinuous elements. See above! + + /** + * Discontinuous + * elements. See above! + */ L2 = 0x01, -/// Conformity with the space Hcurl (continuous tangential component of a vector field) + + /** + * Conformity with the + * space + * Hcurl + * (continuous tangential + * component of a vector + * field) + */ Hcurl = 0x02, -/// Conformity with the space Hdiv (continuous normal component of a vector field) + + /** + * Conformity with the + * space + * Hdiv + * (continuous normal + * component of a vector + * field) + */ Hdiv = 0x04, -/// Conformity with the space H1 (continuous) - H1 = 0x06, -/// Conformity with the space H2 (continuously differentiable) + + /** + * Conformity with the + * space + * H1 + * (continuous) + */ + H1 = Hcurl | Hdiv, + + /** + * Conformity with the + * space + * H2 + * (continuously + * differentiable) + */ H2 = 0x0e };