From: Graham Harper Date: Thu, 26 Jul 2018 22:55:47 +0000 (+0000) Subject: Change 'node' to 'vertex' in documentation X-Git-Tag: v9.1.0-rc1~846^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74b45f6827f91521a54b96972a9ccf9b5899d870;p=dealii.git Change 'node' to 'vertex' in documentation --- diff --git a/include/deal.II/fe/fe_bernardi_raugel.h b/include/deal.II/fe/fe_bernardi_raugel.h index acf5b83b33..48d252f78a 100644 --- a/include/deal.II/fe/fe_bernardi_raugel.h +++ b/include/deal.II/fe/fe_bernardi_raugel.h @@ -35,7 +35,7 @@ DEAL_II_NAMESPACE_OPEN * The Bernardi-Raugel element. * *

Degrees of freedom

- * The BR1 element has dim degrees of freedom on each node and 1 on each + * The BR1 element has dim degrees of freedom on each vertex and 1 on each * face. The shape functions are ordered by the $(Q_1)^d$ shape functions * supported on each vertex, increasing according to vertex ordering on the * element in GeometryInfo, then the bubble functions follow in the ordering diff --git a/source/fe/fe_bernardi_raugel.cc b/source/fe/fe_bernardi_raugel.cc index 0117fde5af..4c9885cb61 100644 --- a/source/fe/fe_bernardi_raugel.cc +++ b/source/fe/fe_bernardi_raugel.cc @@ -133,7 +133,7 @@ FE_BernardiRaugel::get_dpo_vector() { // compute the number of unknowns per cell interior/face/edge // - // there are dim degrees of freedom per node and there + // there are dim degrees of freedom per vertex and there // is 1 degree of freedom per edge in 2D (face in 3D) std::vector dpo(dim + 1, 0u); dpo[0] = dim; @@ -147,7 +147,7 @@ template void FE_BernardiRaugel::initialize_support_points() { - // The support points for our shape functions are the nodes and + // The support points for our shape functions are the vertices and // the face midpoints, for a total of #vertices + #faces points this->generalized_support_points.resize(this->dofs_per_cell);