You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/examples.md
+17-12Lines changed: 17 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -243,24 +243,29 @@ Where $B$ applies boundary conditions to enforce $\boldsymbol{w} = 0$ at the dom
243
243
244
244
#### Prognostic variables
245
245
246
-
* $\rho$: _density_ measured in kg/m³, discretized at cell centers.
247
-
* $\rho\theta$: _potential temperature density_ measured in K·kg/m³, discretized at cell centers.
248
-
* $\boldsymbol{w}$: _vertical velocity_ measured in m/s, discretized at cell faces.
246
+
**$\rho$**: *Density*, measured in kg/m³, discretized at cell centers.
247
+
248
+
**$\rho\theta$**: *Potential temperature density*, measured in K·kg/m³, discretized at cell centers.
249
+
250
+
**$\boldsymbol{w}$**: *Vertical velocity*, measured in m/s, discretized at cell faces.
249
251
250
252
#### Operators
251
253
252
-
#### Reconstructions
254
+
#####Reconstructions
253
255
254
-
*$I^f$ is the [center-to-face reconstruction operator](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.InterpolateC2F), called `If` in the example code.
255
-
-Currently this is implemented as the arithmetic mean.
256
+
**$I^f$** is the [center-to-face reconstruction operator](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.InterpolateC2F), called `If` in the example code.
257
+
Currently this is implemented as the arithmetic mean.
256
258
257
-
#### Differentiation operators
259
+
##### Differentiation operators
260
+
261
+
**$D^c_v$** is the [face-to-center vertical divergence](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.DivergenceF2C), called `∂` in the example code.
262
+
This example uses zero vertical velocity at the top and bottom boundaries.
263
+
264
+
**$\nabla^f_v$** is the [center-to-face vertical gradient](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.GradientC2F), called `∂f` in the example code.
265
+
266
+
**$B$** is the [boundary operator](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.SetBoundaryOperator), called `B` in the example code.
267
+
This enforces zero vertical velocity at domain boundaries.
258
268
259
-
* $D^c_v$ is the [face-to-center vertical divergence](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.DivergenceF2C), called `∂` in the example code.
260
-
- This example uses zero vertical velocity at the top and bottom boundaries.
261
-
* $\nabla^f_v$ is the [center-to-face vertical gradient](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.GradientC2F), called `∂f` in the example code.
262
-
* $B$ is the [boundary operator](https://clima.github.io/ClimaCore.jl/stable/operators/#ClimaCore.Operators.SetBoundaryOperator), called `B` in the example code.
263
-
- This enforces zero vertical velocity at domain boundaries.
0 commit comments