Skip to content

Commit 50c85c0

Browse files
authored
Merge pull request #6722 from bangerth/x-3
Avoid the use of unicode characters in comments.
2 parents f592f3f + b199dac commit 50c85c0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

include/aspect/mesh_deformation/fastscape.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -490,9 +490,9 @@ namespace aspect
490490
/**
491491
* Function of bedrock transport coefficient for hillslope diffusion.
492492
* Represents the parameter `kd` in the FastScape landscape evolution equation.
493-
* Units: ${m²/yr}$ if "Use years instead of seconds in output" is true;
494-
* otherwise, the units are ${m²/s}$. Then a time scale factor will be applied to
495-
* convert it into ${m²/yr}$ for Fastscape.
493+
* Units: ${m^2/yr}$ if "Use years instead of seconds in output" is true;
494+
* otherwise, the units are ${m^2/s}$. Then a time scale factor will be applied to
495+
* convert it into ${m^2/yr}$ for Fastscape.
496496
* This function is used only if `use_kd_distribution_function` is set to true.
497497
*/
498498
Functions::ParsedFunction<2> kd_distribution_function;
@@ -504,18 +504,18 @@ namespace aspect
504504

505505
/**
506506
* Constant bedrock transport coefficient value for hillslope diffusion
507-
* Units: ${m²/yr}$ if "Use years instead of seconds in output" is true;
508-
* otherwise, the units are ${m²/s}$. Then a time scale factor will be applied to
509-
* convert it into ${m²/yr}$ for Fastscape.
507+
* Units: ${m^2/yr}$ if "Use years instead of seconds in output" is true;
508+
* otherwise, the units are ${m^2/s}$. Then a time scale factor will be applied to
509+
* convert it into ${m^2/yr}$ for Fastscape.
510510
* This function is only used only if use_kf_distribution_function is false.
511511
*/
512512
double constant_bedrock_transport_coefficient;
513513

514514
/**
515515
* Sediment transport coefficient for hillslope diffusion.
516-
* Units: ${m²/yr}$ if "Use years instead of seconds in output" is true;
517-
* otherwise, the units are ${m²/s}$. Then a time scale factor will be applied to
518-
* convert it into ${m²/yr}$ for Fastscape.
516+
* Units: ${m^2/yr}$ if "Use years instead of seconds in output" is true;
517+
* otherwise, the units are ${m^2/s}$. Then a time scale factor will be applied to
518+
* convert it into ${m^2/yr}$ for Fastscape.
519519
* When set to -1 this is identical to the bedrock value.
520520
* (kd in FastScape surface equation applied to sediment).
521521
*/

0 commit comments

Comments
 (0)