diff --git a/include/aspect/adiabatic_conditions/interface.h b/include/aspect/adiabatic_conditions/interface.h index 55b706b02c8..ef2018a3a9f 100644 --- a/include/aspect/adiabatic_conditions/interface.h +++ b/include/aspect/adiabatic_conditions/interface.h @@ -42,11 +42,12 @@ namespace aspect using namespace dealii; /** - * Base class for classes that describe adiabatic conditions, i.e. that - * starts at the top of the domain and integrate pressure and temperature - * as we go down into depth. There are several ways to do this (time- - * dependent or constant, using laterally averaged values or a reference - * profile), therefore we allow for user written plugins. + * Base class for classes that describe adiabatic conditions, + * i.e. that starts at the top of the domain and integrate + * pressure and temperature as we go down into depth. There are + * several ways to do this (time-dependent or constant, using + * laterally averaged values or a reference profile), therefore we + * allow for user written plugins. * * @ingroup AdiabaticConditions */ diff --git a/include/aspect/boundary_composition/initial_composition.h b/include/aspect/boundary_composition/initial_composition.h index ec6648d696f..a40fe81135d 100644 --- a/include/aspect/boundary_composition/initial_composition.h +++ b/include/aspect/boundary_composition/initial_composition.h @@ -34,8 +34,8 @@ namespace aspect /** * A class that implements a composition boundary condition for a * spherical shell geometry in which the composition at the inner and - * outer surfaces (i.e. at the core-mantle and the mantle- - * lithosphere/atmosphere boundaries) are constant. + * outer surfaces (i.e. at the core-mantle and the + * mantle-lithosphere/atmosphere boundaries) are constant. * * @ingroup BoundaryCompositions */ diff --git a/include/aspect/boundary_composition/spherical_constant.h b/include/aspect/boundary_composition/spherical_constant.h index 1655367f559..f43e75347fc 100644 --- a/include/aspect/boundary_composition/spherical_constant.h +++ b/include/aspect/boundary_composition/spherical_constant.h @@ -34,8 +34,8 @@ namespace aspect /** * A class that implements a composition boundary condition for a * spherical shell geometry in which the composition at the inner and - * outer surfaces (i.e. at the core-mantle and the mantle- - * lithosphere/atmosphere boundaries) are constant. + * outer surfaces (i.e. at the core-mantle and the + * mantle-lithosphere/atmosphere boundaries) are constant. * This class works for the sphere, spherical shell, * chunk and ellipsoidal chunk geometries. * diff --git a/include/aspect/boundary_temperature/spherical_constant.h b/include/aspect/boundary_temperature/spherical_constant.h index 6b2dc94cc24..5ff209a774f 100644 --- a/include/aspect/boundary_temperature/spherical_constant.h +++ b/include/aspect/boundary_temperature/spherical_constant.h @@ -33,8 +33,8 @@ namespace aspect /** * A class that implements a temperature boundary condition for a * spherical shell geometry in which the temperature at the inner and - * outer surfaces (i.e. at the core-mantle and the mantle- - * lithosphere/atmosphere boundaries) are constant. + * outer surfaces (i.e. at the core-mantle and the + * mantle-lithosphere/atmosphere boundaries) are constant. * * @ingroup BoundaryTemperatures */ diff --git a/include/aspect/initial_temperature/harmonic_perturbation.h b/include/aspect/initial_temperature/harmonic_perturbation.h index 95f8b4a0601..ae58ff944c6 100644 --- a/include/aspect/initial_temperature/harmonic_perturbation.h +++ b/include/aspect/initial_temperature/harmonic_perturbation.h @@ -69,8 +69,8 @@ namespace aspect /** * The radial/depth wave number of the harmonic perturbation. All wave * number variables are in fact twice the wave number in a - * mathematical sense. This allows the user to prescribe a single up- - * / downswing or half periods. + * mathematical sense. This allows the user to prescribe a single + * up-/downswing or half periods. */ int vertical_wave_number; diff --git a/include/aspect/mesh_deformation/interface.h b/include/aspect/mesh_deformation/interface.h index 72f90afc307..d222fb9ac66 100644 --- a/include/aspect/mesh_deformation/interface.h +++ b/include/aspect/mesh_deformation/interface.h @@ -82,7 +82,7 @@ namespace aspect * A base class for mesh deformation plugins. Each derived class should * implement a function that determines the deformation velocity for certain * mesh vertices and store them in a AffineConstraints object. The velocities - * for all non-constrained vertices will be computed by solving a Laplace- + * for all non-constrained vertices will be computed by solving a Laplace * problem with the given constraints. */ template @@ -215,8 +215,8 @@ namespace aspect * The main execution step for the mesh deformation implementation. This * computes the motion of the surface, moves the boundary nodes * accordingly, redistributes the internal nodes in order to - * preserve mesh regularity, and calculates the Arbitrary- - * Lagrangian-Eulerian correction terms for advected quantities. + * preserve mesh regularity, and calculates the + * Arbitrary-Lagrangian-Eulerian correction terms for advected quantities. */ void execute(); diff --git a/include/aspect/particle/integrator/rk_4.h b/include/aspect/particle/integrator/rk_4.h index 3b1f1871dd5..97d987d7f10 100644 --- a/include/aspect/particle/integrator/rk_4.h +++ b/include/aspect/particle/integrator/rk_4.h @@ -51,8 +51,8 @@ namespace aspect /** * Perform an integration step of moving the particles of one cell - * by the specified timestep dt. This class implements a Runge- - * Kutta integration scheme that is fourth order accurate + * by the specified timestep dt. This class implements a Runge-Kutta + * integration scheme that is fourth order accurate * in space. * * @param [in] begin_particle An iterator to the first particle to be moved. diff --git a/include/aspect/plugins.h b/include/aspect/plugins.h index 671ca61c14d..1120b0a50db 100644 --- a/include/aspect/plugins.h +++ b/include/aspect/plugins.h @@ -264,8 +264,8 @@ namespace aspect * Given the name of one plugin, create a corresponding object and * return a pointer to it. The second argument provides a hint where * this function was called from, to be printed in case there is an - * error. Before returning, let the newly created object read its run- - * time parameters from the parameter object. + * error. Before returning, let the newly created object read its + * run-time parameters from the parameter object. * * Ownership of the object is handed over to the caller of this * function. diff --git a/include/aspect/postprocess/visualization.h b/include/aspect/postprocess/visualization.h index 9d73cbed632..cd556cae652 100644 --- a/include/aspect/postprocess/visualization.h +++ b/include/aspect/postprocess/visualization.h @@ -100,10 +100,10 @@ namespace aspect * the solution. * * Using this way of describing a visualization postprocessor will yield - * a class that would then have the following base classes: - - * aspect::Postprocess::VisualizationPostprocessors::Interface - - * aspect::SimulatorAccess - dealii::DataPostprocessor or any of the - * other ones listed above + * a class that would then have the following base classes: + * - aspect::Postprocess::VisualizationPostprocessors::Interface + * - aspect::SimulatorAccess + * - dealii::DataPostprocessor or any of the other ones listed above * *
  • The second possibility is for a class to not derive from * dealii::DataPostprocessor but instead from the CellDataVectorCreator @@ -568,16 +568,16 @@ namespace aspect bool write_higher_order_output; /** - * For mesh deformation computations ASPECT uses an Arbitrary-Lagrangian- - * Eulerian formulation to handle deforming the domain, so the mesh - * has its own velocity field. This may be written as an output field - * by setting output_mesh_velocity to true. + * For mesh deformation computations ASPECT uses an + * Arbitrary-Lagrangian-Eulerian formulation to handle deforming the + * domain, so the mesh has its own velocity field. This may be + * written as an output field by setting output_mesh_velocity to true. */ bool output_mesh_velocity; /** - * For mesh deformation computations ASPECT uses an Arbitrary-Lagrangian- - * Eulerian formulation to handle deforming the domain, so the mesh + * For mesh deformation computations ASPECT uses an + * Arbitrary-Lagrangian-Eulerian formulation to handle deforming the domain, so the mesh * has a field that determines the displacement from the reference * configuration. This may be written as an output field by setting * this flag to true. @@ -585,8 +585,8 @@ namespace aspect bool output_mesh_displacement; /** - * For mesh deformation computations ASPECT uses an Arbitrary-Lagrangian- - * Eulerian formulation to handle deforming the domain, and we output the + * For mesh deformation computations ASPECT uses an + * Arbitrary-Lagrangian-Eulerian formulation to handle deforming the domain, and we output the * mesh in its deformed state by default. If this flag is set to true, * the mesh is written undeformed. */