From 1fef0eecc7b3540253b60dcb7c81d32a5919cf1f Mon Sep 17 00:00:00 2001 From: Maximilian Bergbauer Date: Thu, 18 Jul 2024 14:54:13 +0200 Subject: [PATCH] Derivative instead of gradient --- include/deal.II/matrix_free/fe_point_evaluation.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/matrix_free/fe_point_evaluation.h b/include/deal.II/matrix_free/fe_point_evaluation.h index b8c28ad587..be0236d4ab 100644 --- a/include/deal.II/matrix_free/fe_point_evaluation.h +++ b/include/deal.II/matrix_free/fe_point_evaluation.h @@ -1350,7 +1350,7 @@ public: normal_vector(const unsigned int point_index) const; /** - * Return the normal gradient in real coordinates at the point with index + * Return the normal derivative in real coordinates at the point with index * `point_index` after a call to FEPointEvaluation::evaluate() with * EvaluationFlags::gradients set. */ @@ -1358,7 +1358,7 @@ public: get_normal_derivative(const unsigned int point_index) const; /** - * Write a contribution that is tested by the normal gradient to the field + * Write a contribution that is tested by the normal derivative to the field * containing the values on points with the given `point_index`. Access to * the same field as through set_gradient()/get_gradient. */ @@ -1724,7 +1724,7 @@ public: normal_vector(const unsigned int point_index) const; /** - * Return the normal gradient in real coordinates at the point with index + * Return the normal derivative in real coordinates at the point with index * `point_index` after a call to FEFacePointEvaluation::evaluate() with * EvaluationFlags::gradients set. */ @@ -1732,7 +1732,7 @@ public: get_normal_derivative(const unsigned int point_index) const; /** - * Write a contribution that is tested by the normal gradient to the field + * Write a contribution that is tested by the normal derivative to the field * containing the values on points with the given `point_index`. Access to * the same field as through set_gradient()/get_gradient. */ -- 2.39.5