Skip to content

Commit 0779f74

Browse files
committed
Fix minor mistakes in documentation
1 parent bb76c1f commit 0779f74

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

docs/src/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,16 @@ Pages = ["boundary_layer_conductance.md",]
3333
Pages = ["aerodynamic_conductance.md",]
3434
```
3535

36+
## Surface Conductance
37+
```@index
38+
Pages = ["surface_conductance.md",]
39+
```
40+
3641
## Evapotranspiration
3742
```@index
3843
Pages = ["evapotranspiration.md",]
3944
```
4045

41-
4246
## Global radiation
4347
```@index
4448
Pages = ["global_radiation.md",]

src/boundary_layer_conductance.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,11 @@ Boundary Layer Conductance using constant kB^(-1) value for heat transfer.
208208
- `constants=`[`BigleafConstants`](@ref)`()`
209209
210210
# Details
211-
Rb_h computed by ``kB_h/(k * ustar)``, where k is the von Karman constant.
211+
Rb_h computed by :
212+
213+
``kB_h/(k * ustar)``
214+
215+
where k is the von Karman constant.
212216
"""
213217
function Gb_constant_kB1(ustar, kB_h; constants=BigleafConstants())
214218
ismissing(ustar) && return(missing)
@@ -325,7 +329,7 @@ and ``R_{eh}`` is the Reynolds number for leaves:
325329
326330
``R_{eh} = D_l \\, wind(z_h) / v``
327331
328-
k_{Bs-1}, the k_{B-1} value for bare soil surface, is calculated according
332+
``k_{Bs-1}``, the ``k_{B-1}`` value for bare soil surface, is calculated according
329333
to Su et al. 2001:
330334
331335
``k_{Bs-1} = 2.46(Re)^{0.25} - ln(7.4)``

src/evapotranspiration.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,15 +262,15 @@ where ``\\Omega`` is the decoupling coefficient as calculated from
262262
the ET rate that would occur under uncoupled conditions, where the budget
263263
is dominated by radiation (when Ga -> 0):
264264
265-
``ET_{eq} = (\\Delta \\, (R_n - G - S) \\, \\lambda) / ( \\Delta \\gamma)``
265+
``ET_{eq} = (\\Delta \\, (R_n - G - S)) / (\\lambda \\, (\\Delta + \\gamma))``
266266
267267
where ``\\Delta`` is the slope of the saturation vapor pressur(kPa K-1),
268268
``\\lambda`` is the latent heat of vaporization (J kg-1), and ``\\gamma``
269269
is the psychrometric constant (kPa K-1).
270270
`ET_imp` is the imposed evapotranspiration rate, the ET rate
271271
that would occur under fully coupled conditions (when Ga -> inf):
272272
273-
``ET_{imp} = (\\rho \\, c_p \\, \\mathit{VPD} ~ G_s \\, \\lambda) / \\gamma``
273+
``ET_{imp} = (\\rho \\, c_p \\, \\mathit{VPD} ~ G_s) / (\\lambda \\, \\gamma)``
274274
275275
where ``\\rho`` is the air density (kg m-3).
276276

src/surface_conductance.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ additional for InversePenmanMonteith
3333
For `InversePenmanMonteith()`, surface conductance (Gs) in m s-1
3434
is calculated from the inverted Penman-Monteith equation:
3535
36-
``G_s = ( LE \\. G_a \\, \\gamma ) / ( \\Delta \\, A + \\rho \\, c_p \\, G_a \\, VPD -
36+
``G_s = ( LE \\, G_a \\, \\gamma ) / ( \\Delta \\, A + \\rho \\, c_p \\, G_a \\, VPD -
3737
LE \\, (\\Delta + \\gamma ))``
3838
3939
Where ``\\gamma`` is the psychrometric constant (kPa K-1), ``\\Delta`` is the slope of the
40-
saturation vapor pressure curve (kPa K^-1), and ``\\rho`` is air density (kg m-3).
40+
saturation vapor pressure curve (kPa K-1), and ``\\rho`` is air density (kg m-3).
4141
Available energy (A) is defined as ``A = R_n - G - S``.
4242
4343
Ground heat flux and total storage flux can be provided as scalars or vectors of

0 commit comments

Comments
 (0)