Skip to content

Commit

Permalink
Merge pull request #12570 from peterrum/fe_eval_typos
Browse files Browse the repository at this point in the history
Fix typos in fe_evaluation.h
  • Loading branch information
drwells committed Jul 15, 2021
2 parents cba67ae + 6ecd180 commit a8d2d28
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions include/deal.II/matrix_free/fe_evaluation.h
Expand Up @@ -263,8 +263,8 @@ class FEEvaluationBaseData
get_current_cell_index() const;

/**
* Return the active FE index for this class for efficient indexing in the hp-
* case.
* Return the active FE index for this class for efficient indexing in the
* hp-case.
*/
unsigned int
get_active_fe_index() const;
Expand Down Expand Up @@ -1091,8 +1091,8 @@ class FEEvaluationBase
/**
* Return a read-only pointer to the first field of function hessians on
* quadrature points. First comes the xx-component of the hessian for the
* first component on all quadrature points, then the yy-component, zz-
* component in (3D), then the xy-component, and so on. Next comes the xx-
* first component on all quadrature points, then the yy-component,
* zz-component in (3D), then the xy-component, and so on. Next comes the xx-
* component of the second component, and so on. This is related to the
* internal data structures used in this class. The raw data after a call to
* @p evaluate only contains unit cell operations, so possible
Expand All @@ -1106,9 +1106,9 @@ class FEEvaluationBase
/**
* Return a read and write pointer to the first field of function hessians
* on quadrature points. First comes the xx-component of the hessian for the
* first component on all quadrature points, then the yy-component, zz-
* component in (3D), then the xy-component, and so on. Next comes the xx-
* component of the second component, and so on. This is related to the
* first component on all quadrature points, then the yy-component,
* zz-component in (3D), then the xy-component, and so on. Next comes the
* xx-component of the second component, and so on. This is related to the
* internal data structures used in this class. The raw data after a call to
* @p evaluate only contains unit cell operations, so possible
* transformations, quadrature weights etc. must be applied manually. In
Expand Down Expand Up @@ -1150,8 +1150,9 @@ class FEEvaluationBase
/**
* Constructor that comes with reduced functionality and works similar as
* FEValues. The arguments are similar to the ones passed to the constructor
* of FEValues, with the notable difference that FEEvaluation expects a one-
* dimensional quadrature formula, Quadrature<1>, instead of a @p dim
* of FEValues, with the notable difference that FEEvaluation expects a
* one-dimensional
* quadrature formula, Quadrature<1>, instead of a @p dim
* dimensional one. The finite element can be both scalar or vector valued,
* but this method always only selects a scalar base element at a time (with
* @p n_components copies as specified by the class template argument). For
Expand Down Expand Up @@ -2655,12 +2656,14 @@ class FEEvaluation : public FEEvaluationAccess<dim,
/**
* Constructor that comes with reduced functionality and works similar as
* FEValues. The arguments are similar to the ones passed to the constructor
* of FEValues, with the notable difference that FEEvaluation expects a one-
* dimensional quadrature formula, Quadrature<1>, instead of a @p dim
* of FEValues, with the notable difference that FEEvaluation expects a
* one-dimensional
* quadrature formula, Quadrature<1>, instead of a @p dim
* dimensional one. The finite element can be both scalar or vector valued,
* but this method always only selects a scalar base element at a time (with
* @p n_components copies as specified by the class template). For vector-
* valued elements, the optional argument @p first_selected_component allows
* @p n_components copies as specified by the class template). For
* vector-valued
* elements, the optional argument @p first_selected_component allows
* to specify the index of the base element to be used for evaluation. Note
* that the internal data structures always assume that the base element is
* primitive, non-primitive are not supported currently.
Expand Down

0 comments on commit a8d2d28

Please sign in to comment.