Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leave a couple comments in FETools. #16743

Merged
merged 1 commit into from
Mar 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 9 additions & 3 deletions include/deal.II/fe/fe_tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ namespace FETools

/** @} */
/**
* @name Functions which should be in DoFTools
* @name Functions which should be in DoFTools or VectorTools
*/
/** @{ */
/**
Expand Down Expand Up @@ -645,6 +645,9 @@ namespace FETools
* object as argument, see below, or make the field conforming yourself
* by calling the @p distribute function of your hanging node constraints
* object.
*
* @note There are also various interpolation-related functions in
* namespace VectorTools.
*/
template <int dim, int spacedim, class InVector, class OutVector>
void
Expand All @@ -668,6 +671,9 @@ namespace FETools
* a continuous finite element there is no point interpolation defined at
* the discontinuities. Therefore the mean value is taken at the DoF values
* at the discontinuities.
*
* @note There are also various interpolation-related functions in
* namespace VectorTools.
*/
template <int dim, int spacedim, class InVector, class OutVector>
void
Expand All @@ -680,7 +686,7 @@ namespace FETools

/**
* Compute the interpolation of the @p fe1-function @p u1 to a @p
* fe2-function, and interpolates this to a second @p fe1-function named @p
* fe2-function, and interpolate this to a second @p fe1-function named @p
* u1_interpolated.
*
* Note, that this function does not work on continuous elements at hanging
Expand All @@ -700,7 +706,7 @@ namespace FETools

/**
* Compute the interpolation of the @p dof1-function @p u1 to a @p
* dof2-function, and interpolates this to a second @p dof1-function named
* dof2-function, and interpolate this to a second @p dof1-function named
* @p u1_interpolated. @p constraints1 and @p constraints2 are the hanging
* node constraints corresponding to @p dof1 and @p dof2, respectively.
* These objects are particular important when continuous elements on grids
Expand Down