Skip to content

Commit b7a6df2

Browse files
committed
Fix unit markup in fastscape.cc.
1 parent a39889d commit b7a6df2

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

source/mesh_deformation/fastscape.cc

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,7 @@ namespace aspect
16691669
"the FastScape timestep is above the maximum FastScape timestep.");
16701670
prm.declare_entry("Maximum timestep length", "10e3",
16711671
Patterns::Double(0),
1672-
"Maximum timestep for FastScape. Units: $\\{yrs}$");
1672+
"Maximum timestep for FastScape. Units: ${yrs}$");
16731673
prm.declare_entry("Vertical exaggeration", "-1",
16741674
Patterns::Double(),
16751675
"Vertical exaggeration for FastScape's VTK file. -1 outputs topography, basement, and sealevel.");
@@ -1696,7 +1696,7 @@ namespace aspect
16961696
"Flag to use the marine component of FastScape.");
16971697
prm.declare_entry("Y extent in 2d", "100000",
16981698
Patterns::Double(),
1699-
"FastScape Y extent when using a 2D ASPECT model. Units: $\\{m}$");
1699+
"FastScape Y extent when using a 2D ASPECT model. Units: ${m}$");
17001700
prm.declare_entry ("Use ghost nodes", "true",
17011701
Patterns::Bool (),
17021702
"Flag to use ghost nodes.");
@@ -1710,13 +1710,13 @@ namespace aspect
17101710
Patterns::List (Patterns::Double(0)),
17111711
"Sediment rain rates given as a list 1 greater than the number of sediment rain time intervals. E.g, "
17121712
"If the time interval is given at 5 Myr, there will be one value for 0-5 Myr model time and a second value "
1713-
"for 5+ Myr. Units: $\\{m/yr}$");
1713+
"for 5+ Myr. Units: ${m/yr}$");
17141714
prm.declare_entry ("Sediment rain time intervals", "0",
17151715
Patterns::List (Patterns::Double(0)),
1716-
"A list of times to change the sediment rain rate. Units: $\\{yrs}$");
1716+
"A list of times to change the sediment rain rate. Units: ${yrs}$");
17171717
prm.declare_entry("Initial noise magnitude", "5",
17181718
Patterns::Double(),
1719-
"Maximum topography change from the initial noise. Units: $\\{m}$");
1719+
"Maximum topography change from the initial noise. Units: ${m}$");
17201720
prm.declare_entry("Additional output variables", "river incision rate",
17211721
Patterns::Selection("river incision rate|deposition coefficient|uplift rate"),
17221722
"Select one additional Fastscape variable to output in the Fastcape vtk. "
@@ -1739,16 +1739,16 @@ namespace aspect
17391739
"Left boundary condition, where 1 is fixed and 0 is reflective.");
17401740
prm.declare_entry("Left mass flux", "0",
17411741
Patterns::Double(),
1742-
"Flux per unit length through the left boundary. Units: $\\{m^2/yr}$ ");
1742+
"Flux per unit length through the left boundary. Units: ${m^2/yr}$ ");
17431743
prm.declare_entry("Right mass flux", "0",
17441744
Patterns::Double(),
1745-
"Flux per unit length through the right boundary. Units: $\\{m^2/yr}$ ");
1745+
"Flux per unit length through the right boundary. Units: ${m^2/yr}$ ");
17461746
prm.declare_entry("Back mass flux", "0",
17471747
Patterns::Double(),
1748-
"Flux per unit length through the back boundary. Units: $\\{m^2/yr}$ ");
1748+
"Flux per unit length through the back boundary. Units: ${m^2/yr}$ ");
17491749
prm.declare_entry("Front mass flux", "0",
17501750
Patterns::Double(),
1751-
"Flux per unit length through the front boundary. Units: $\\{m^2/yr}$ ");
1751+
"Flux per unit length through the front boundary. Units: ${m^2/yr}$ ");
17521752
prm.declare_entry ("Back front ghost nodes periodic", "false",
17531753
Patterns::Bool (),
17541754
"Whether to set the ghost nodes at the FastScape back and front boundary "
@@ -1819,10 +1819,10 @@ namespace aspect
18191819
"Transport coefficient (diffusivity) for sediment. -1 sets this to the bedrock diffusivity. Units: ${m^2/yr}$");
18201820
prm.declare_entry("Orographic elevation control", "2000",
18211821
Patterns::Integer(),
1822-
"Above this height, the elevation factor is applied. Units: $\\{m}$");
1822+
"Above this height, the elevation factor is applied. Units: ${m}$");
18231823
prm.declare_entry("Orographic wind barrier height", "500",
18241824
Patterns::Integer(),
1825-
"When terrain reaches this height the wind barrier factor is applied. Units: $\\{m}$");
1825+
"When terrain reaches this height the wind barrier factor is applied. Units: ${m}$");
18261826
prm.declare_entry("Elevation factor", "1",
18271827
Patterns::Double(),
18281828
"Amount to multiply the bedrock river incision rate and transport coefficient by past the given orographic elevation control.");
@@ -1873,7 +1873,7 @@ namespace aspect
18731873
prm.declare_entry("Sea level", "0.0",
18741874
Patterns::Double(),
18751875
"Constant sea level relative to the ASPECT surface, where the maximum Z or Y extent in ASPECT is a sea level of zero. "
1876-
"Units: $\\{m}$ ");
1876+
"Units: ${m}$ ");
18771877

18781878
prm.enter_subsection ("Sea level function");
18791879
{
@@ -1889,22 +1889,22 @@ namespace aspect
18891889
"Porosity of silt. ");
18901890
prm.declare_entry("Sand e-folding depth", "1e3",
18911891
Patterns::Double(),
1892-
"E-folding depth for the exponential of the sand porosity law. Units: $\\{m}$");
1892+
"E-folding depth for the exponential of the sand porosity law. Units: ${m}$");
18931893
prm.declare_entry("Silt e-folding depth", "1e3",
18941894
Patterns::Double(),
1895-
"E-folding depth for the exponential of the silt porosity law. Units: $\\{m}$");
1895+
"E-folding depth for the exponential of the silt porosity law. Units: ${m}$");
18961896
prm.declare_entry("Sand-silt ratio", "0.5",
18971897
Patterns::Double(),
18981898
"Ratio of sand to silt for material leaving continent.");
18991899
prm.declare_entry("Depth averaging thickness", "1e2",
19001900
Patterns::Double(),
1901-
"Depth averaging for the sand-silt equation. Units: $\\{m}$");
1901+
"Depth averaging for the sand-silt equation. Units: ${m}$");
19021902
prm.declare_entry("Sand transport coefficient", "5e2",
19031903
Patterns::Double(),
1904-
"Transport coefficient (diffusivity) for sand. Units: $\\{m^2/yr}$");
1904+
"Transport coefficient (diffusivity) for sand. Units: ${m^2/yr}$");
19051905
prm.declare_entry("Silt transport coefficient", "2.5e2",
19061906
Patterns::Double(),
1907-
"Transport coefficient (diffusivity) for silt. Units: $\\{m^2/yr}$ ");
1907+
"Transport coefficient (diffusivity) for silt. Units: ${m^2/yr}$ ");
19081908
}
19091909
prm.leave_subsection();
19101910
}

0 commit comments

Comments
 (0)