From: Luca Heltai Date: Thu, 28 Nov 2019 18:07:25 +0000 (+0100) Subject: Apply suggestions from code review X-Git-Tag: v9.2.0-rc1~798^2~6 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17793be44985afb6e7e4228f324888aed612dabf;p=dealii.git Apply suggestions from code review Co-Authored-By: Rene Gassmoeller --- diff --git a/doc/news/changes/major/20191112LucaHeltaiBrunoBlais b/doc/news/changes/major/20191112LucaHeltaiBrunoBlais index 962fbe5732..e41318efda 100644 --- a/doc/news/changes/major/20191112LucaHeltaiBrunoBlais +++ b/doc/news/changes/major/20191112LucaHeltaiBrunoBlais @@ -1,8 +1,8 @@ -New: ParticleHandler::insert_global_particles() allows one to pass to a ParticleHandler oject a vector +New: ParticleHandler::insert_global_particles() allows one to pass to a ParticleHandler object a vector of positions and a vector of properties to insert. Differently from the other insert* methods, this one allows particles to fall within artificial cells. In this case, the method infers who should receive the positions and the properties, and sends this information to that process. -This is useful when constructing particles from non-matching triangulation, where the -distribution of the particle positions is arbitrary, and possibly not related to our owned cells. +This is useful when constructing particles from non-matching triangulations, where the +distribution of the particle positions is arbitrary, and possibly not related to the locally owned cells.
(Luca Heltai, 2019/11/25) diff --git a/include/deal.II/particles/particle_handler.h b/include/deal.II/particles/particle_handler.h index fb652162a3..0e57175c64 100644 --- a/include/deal.II/particles/particle_handler.h +++ b/include/deal.II/particles/particle_handler.h @@ -245,11 +245,11 @@ namespace Particles * This function figures out what mpi process owns all points that do not * fall within the locally owned part of the triangulation, it sends * to that process the points passed to this function on this process, - * and receives from the points that fall within the locally owned cells of + * and receives the points that fall within the locally owned cells of * the triangulation from whoever owns them. * - * In order to keep track of what mpi process recieved what points, a maps - * from mpi process to IndexSet is returned by the function, that contains + * In order to keep track of what mpi process received what points, a map + * from mpi process to IndexSet is returned by the function. This IndexSet contains * the local indices of the points that were passed to this function on the * calling mpi process, and that falls within the part of triangulation * owned by this mpi process. @@ -267,7 +267,7 @@ namespace Particles * local point. The size of the vector should be either zero (no * properties will be transfered nor attached to the generated particles) * or it should be `positions.size()*this->n_properties_per_particle()`. - * Notice that this function call will tranfer the properties from the + * Notice that this function call will transfer the properties from the * local mpi process to the final mpi process that will own each of the * particle, and it may therefore be communication intensive. *