From: Wolfgang Bangerth Date: Mon, 24 Mar 2025 14:28:37 +0000 (-0600) Subject: Clarify documentation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be8fc8dae63ee5c33c31a8a4d4cc934108b74762;p=dealii.git Clarify documentation. --- diff --git a/include/deal.II/dofs/dof_tools.h b/include/deal.II/dofs/dof_tools.h index 58edf05095..612803d97c 100644 --- a/include/deal.II/dofs/dof_tools.h +++ b/include/deal.II/dofs/dof_tools.h @@ -2257,11 +2257,14 @@ namespace DoFTools * @ref GlossSupport "glossary entry") * for all the degrees of freedom handled by this DoF handler object. This * function, of course, only works if the finite element object used by the - * DoF handler object actually provides support points, i.e. no edge - * elements or the like. Otherwise, an exception is thrown. - * - * @pre The given array must have a length of as many elements as there are - * degrees of freedom. + * DoF handler object actually provides support points; this rules out + * "modal" elements in which the shape functions are not defined via point + * evaluation at individual node points, but by integrals. In practice, this + * function checks the requirement by requiring that the element in question + * returns `true` from the FiniteElement::has_support_points(). + * + * @pre The given array `support_points` must have a length of as many + * elements as there are degrees of freedom. * * @note The precondition to this function that the output argument needs to * have size equal to the total number of degrees of freedom makes this diff --git a/include/deal.II/fe/fe.h b/include/deal.II/fe/fe.h index 5bd664af84..ad8743fdc4 100644 --- a/include/deal.II/fe/fe.h +++ b/include/deal.II/fe/fe.h @@ -2125,7 +2125,7 @@ public: * The result may be false if a finite element defines itself not by * interpolating shape functions, but by other means. A typical example are * discontinuous $P$-type elements on quadrilaterals (rather than the common - * $Q$-type elements on quadrilaterals). Elements will generally only + * $Q$-type elements on quadrilaterals). Elements will generally only return * `true` if they construct their shape functions by the * requirement that they be nonzero at a certain point and zero at all the * points associated with the other shape functions. In other words,