From 7d323c51385175908a3d3e86ecfd79e8aa04c6c4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 25 Sep 2011 18:10:56 +0000 Subject: [PATCH] Add a couple entries. git-svn-id: https://svn.dealii.org/trunk@24407 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/headers/glossary.h | 35 ++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/deal.II/doc/doxygen/headers/glossary.h b/deal.II/doc/doxygen/headers/glossary.h index 283dd8c7c4..9fb097b1fb 100644 --- a/deal.II/doc/doxygen/headers/glossary.h +++ b/deal.II/doc/doxygen/headers/glossary.h @@ -661,6 +661,41 @@ Article{BK07, * @ref GlossSupport "support points". * * + *
@anchor GlossLocallyOwnedCell Locally owned cell
+ *
This concept identifies a subset of all cells when using + * distributed meshes, see the @ref distributed module. In such meshes, each + * cell is owned by exactly one processor. The locally owned ones are those + * owned by the current processor. + *
+ * + * + *
@anchor GlossLocallyOwnedDof Locally owned degrees of freedom
+ *
This concept identifies a subset of all degrees of freedom when using + * distributed meshes, see the @ref distributed module. Locally owned degrees + * of freedom live on locally owned cells. Since degrees of freedom are owned + * by only one processor, degrees of freedom on interfaces between cells owned + * by different processors may be owned by one or the other, so not all + * degrees of freedom on a locally owned cell are also locally owned degrees + * of freedom.
+ * + * + *
@anchor GlossLocallyActiveDof Locally active degrees of freedom
+ *
This concept identifies a subset of all degrees of freedom when using + * distributed meshes, see the @ref distributed module. Locally active degrees + * of freedom are those that live on locally owned cells. Degrees of freedom + * on interfaces between cells owned by different processors therefore belong + * to the set of locally active degrees of freedom for more than one processor. + *
+ * + * + *
@anchor GlossLocallyRelevantDof Locally relevant degrees of freedom
+ *
This concept identifies a subset of all degrees of freedom when using + * distributed meshes, see the @ref distributed module. Locally relevant + * degrees of freedom are those that live on locally owned or ghost cells. + * Consequently, they may be owned by different processors. + *
+ * + * *
@anchor GlossMaterialId Material id
*
Each cell of a triangulation has associated with it a property called * "material id". It is commonly used in problems with heterogenous -- 2.39.5