From: Peter Munch Date: Wed, 4 Oct 2023 13:11:28 +0000 (+0200) Subject: Apply review comments X-Git-Tag: relicensing~413^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ee0891a02510fc586a49fb0085f46b3aa26cc9d;p=dealii.git Apply review comments --- diff --git a/doc/news/changes/minor/20231003Munch b/doc/news/changes/minor/20231003Munch index 8bee73ba61..51c21994d0 100644 --- a/doc/news/changes/minor/20231003Munch +++ b/doc/news/changes/minor/20231003Munch @@ -1,7 +1,7 @@ -Improved: MGTransferMF can now renumerate DoFs during +Improved: MGTransferMF can now permute DoFs during MGTransferMF::copy_to_mg(), MGTransferMF::copy_to_mg(), and MGTransferMF::interpolate_to_mg() if the outer solver and the multigrid preconditioner have been set up -with different DoFHandler instances. +with different DoFHandler objects.
(Peter Munch, Laura Prieto Saavedra, 2023/10/03) diff --git a/include/deal.II/multigrid/mg_transfer_global_coarsening.h b/include/deal.II/multigrid/mg_transfer_global_coarsening.h index 187a5c7e4e..cdcd7ddb48 100644 --- a/include/deal.II/multigrid/mg_transfer_global_coarsening.h +++ b/include/deal.II/multigrid/mg_transfer_global_coarsening.h @@ -1110,10 +1110,11 @@ public: /** * Actually build the information for the prolongation for each level. * - * @note In the case of global coarsening, you can pass into this function - * a @p dof_handler with different DoF numbering as the one used within the - * provided two-level transfer objects. In this case, vector entries are - * permuted during copy_to_mg(), copy_from_mg(), and interpolate_to_mg(). + * @note In the case of global coarsening, you can pass a @p dof_handler + * with different DoF numbering as the one used within the provided + * two-level transfer objects into this function. In this case, vector + * entries are permuted during copy_to_mg(), copy_from_mg(), and + * interpolate_to_mg(). */ void build(const DoFHandler &dof_handler, @@ -1166,10 +1167,13 @@ public: const VectorType &src) const override; /** - * Initialize internal vectors and copy @p src vector to the finest - * multigrid level. + * Initialize internal vectors and copy @p src vector + * (associated to @p dof_handler) to the finest multigrid level. * - * @note DoFHandler is not needed here, but is required by the interface. + * @note The @dof_handler object needs to be the same as the DoFHandler passed + * directly to the function build() or indirectly to the function + * initialize_two_level_transfers(). Alternatively, the numbering of the DoFs + * need to be same. */ template void @@ -1178,10 +1182,13 @@ public: const InVector &src) const; /** - * Initialize internal vectors and copy the values on the finest - * multigrid level to @p dst vector. + * Copy the values on the finest multigrid level to @p dst + * vector (associated to @p dof_handler). * - * @note DoFHandler is not needed here, but is required by the interface. + * @note The @dof_handler object needs to be the same as the DoFHandler passed + * directly to the function build() or indirectly to the function + * initialize_two_level_transfers(). Alternatively, the numbering of the DoFs + * need to be same. */ template void @@ -1190,16 +1197,22 @@ public: const MGLevelObject &src) const; /** - * Interpolate fine-mesh field @p src to each multigrid level in - * @p dof_handler and store the result in @p dst. This function is different - * from restriction, where a weighted residual is - * transferred to a coarser level (transposition of prolongation matrix). + * Interpolate fine-mesh field @p src (associated to @p dof_handler) + * to each multigrid level and + * store the result in @p dst. This function is different from + * restriction, where a weighted residual is transferred to a coarser + * level (transposition of prolongation matrix). * * The argument @p dst has to be initialized with the correct size according * to the number of levels of the triangulation. * * If an inner vector of @p dst is empty or has incorrect locally owned size, * it will be resized to locally relevant degrees of freedom on each level. + * + * @note The @dof_handler object needs to be the same as the DoFHandler passed + * directly to the function build() or indirectly to the function + * initialize_two_level_transfers(). Alternatively, the numbering of the DoFs + * need to be same. */ template void @@ -1208,8 +1221,12 @@ public: const InVector &src) const; /** - * Interpolate fine-mesh field @p src to each multigrid level in - * @p dof_handler and store the result in @p dst. + * Interpolate fine-mesh field @p src to each multigrid level and + * store the result in @p dst. + * + * @note In contrast to the last function, no @dof_handler object needs passed. + * This function used the DoFHandler passed directly to the function build() + * or indirectly to the function initialize_two_level_transfers(). */ template void @@ -1264,7 +1281,7 @@ private: const SmartPointer &mg_constrained_dofs); /** - * Retreave finest DoFHandler from two-level transfer objects. + * Retrieve finest DoFHandler from two-level transfer objects. */ std::pair *, unsigned int> get_dof_handler_fine() const; diff --git a/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h b/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h index 16c1667062..629492ddf0 100644 --- a/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h +++ b/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h @@ -4111,8 +4111,8 @@ template std::pair *, unsigned int> MGTransferMF::get_dof_handler_fine() const { - if (this->transfer.n_levels() <= - 1) // single level: the information cannot be retreaved + if (this->transfer.n_levels() <= 1) + // single level: the information cannot be retrieved return {nullptr, numbers::invalid_unsigned_int}; if (const auto t = dynamic_cast<