Skip to content

Commit 02e3d08

Browse files
committed
modified
1 parent e20c01f commit 02e3d08

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

docs/src/examples.md

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -243,24 +243,29 @@ Where $B$ applies boundary conditions to enforce $\boldsymbol{w} = 0$ at the dom
243243

244244
#### Prognostic variables
245245

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.
249251

250252
#### Operators
251253

252-
#### Reconstructions
254+
##### Reconstructions
253255

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.
256258

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.
258268

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.
264269

265270
#### Problem flow and set-up
266271

0 commit comments

Comments
 (0)