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

Fix typos #12820

Merged
merged 3 commits into from Oct 12, 2021
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions include/deal.II/hp/refinement.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ namespace hp
* @p future_fe_indices will be used to update the data accordingly.
* </ol>
*
* As an example, a realisation of pure p-adaptive methods would look like the
* As an example, a realization of pure p-adaptive methods would look like the
* following:
* @code
* // step 1: flag cells for refinement or coarsening
Expand Down Expand Up @@ -408,7 +408,7 @@ namespace hp
* or decrease of the degree will thus change its value by a user-defined
* control parameter @p gamma_p. The assumption of exponential convergence
* is only valid if both h- and p-adaptive methods are combined in a sense
* that they are both utilitzed throughout a mesh, but do not have to be
* that they are both utilized throughout a mesh, but do not have to be
* applied both on a cell simultaneously.
*
* The prediction algorithm is formulated as follows with control parameters
Expand Down Expand Up @@ -677,7 +677,7 @@ namespace hp
*/

/**
* @name Optimiize p-level distribution
* @name Optimize p-level distribution
* @{
*/

Expand All @@ -689,7 +689,7 @@ namespace hp
* flags.
*
* In detail, this function limits the level difference of neighboring cells
* and thus smoothes the overall function space. Future FE indices will be
* and thus smooths the overall function space. Future FE indices will be
* raised (and never lowered) so that the level difference to neighboring
* cells is never larger than @p max_difference.
*
Expand All @@ -707,7 +707,7 @@ namespace hp
* On cells that will be h-coarsened, we enforce the difference criterion as
* if it is already a parent cell. That means, we set the level of all
* siblings to the highest one among them. In that case, all sibling cells
* need to have the h-coarsenening flags set terminally via
* need to have the h-coarsening flags set terminally via
* Triangulation::prepare_coarsening_and_refinement() beforehand. Otherwise
* an assertion will be triggered.
*
Expand Down
2 changes: 1 addition & 1 deletion source/hp/refinement.cc
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ namespace hp
// 2.) Determine the number of cells for p-refinement and p-coarsening on
// basis of the flagged cells.
//
// 3.) Find thresholds for p-refinment and p-coarsening on only those
// 3.) Find thresholds for p-refinement and p-coarsening on only those
// cells flagged for adaptation.
//
// For cases in which no or all cells flagged for refinement and/or
Expand Down