Skip to content

Commit

Permalink
Merge pull request #14890 from peterrum/CellWiseInverse
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Mar 16, 2023
2 parents 048141f + a718375 commit a8af063
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions include/deal.II/matrix_free/evaluation_kernels.h
Original file line number Diff line number Diff line change
Expand Up @@ -5578,7 +5578,7 @@ namespace internal


/**
* This struct implements the action of the inverse @ref GlossMassMatrix "mass matrix" operation
* This struct implements the action of the inverse @ref GlossMassMatrix "mass matrix" operation,
* using an FEEvaluationData argument.
*/
template <int dim, typename Number>
Expand Down Expand Up @@ -5696,7 +5696,9 @@ namespace internal

/**
* This struct implements the action of the inverse @ref GlossMassMatrix "mass matrix" operation
* using an FEEvaluationData argument.
* with user-provided coefficients at quadrature points (in contrast to
* CellwiseInverseMassMatrixImplBasic, which implicitly uses `1/(|J|xW)' as
* coefficient).
*/
template <int dim, typename Number>
struct CellwiseInverseMassMatrixImplFlexible
Expand Down Expand Up @@ -5782,8 +5784,10 @@ namespace internal


/**
* This struct implements the action of the inverse @ref GlossMassMatrix "mass matrix" operation
* using an FEEvaluationData argument.
* This struct implements the action of a projection of the values given
* at the quadrature points to the support points,
* using an FEEvaluationData argument. For the derivation, see comments in
* step-67.
*/
template <int dim, typename Number>
struct CellwiseInverseMassMatrixImplTransformFromQPoints
Expand Down

0 comments on commit a8af063

Please sign in to comment.