From f9c15396e5b4f75e77f597269ac032a5eb2c5ecf Mon Sep 17 00:00:00 2001 From: JoostBuitink <44062204+JoostBuitink@users.noreply.github.com> Date: Thu, 14 Nov 2024 18:29:05 +0100 Subject: [PATCH] fix description `g_tt` --- docs/model_docs/parameters_vertical.qmd | 4 ++-- src/glacier/glacier.jl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/model_docs/parameters_vertical.qmd b/docs/model_docs/parameters_vertical.qmd index 1c320d9ce..c7f7cc4b8 100644 --- a/docs/model_docs/parameters_vertical.qmd +++ b/docs/model_docs/parameters_vertical.qmd @@ -34,13 +34,13 @@ the `layered` profile, input parameter `kv` is used, and for the `layered_expone | Parameter | Description | Unit | Default | |:----| -------- | ---- | ---- | | **`cfmax`** | degree-day factor | mm ᵒC$^{-1}$ Δt$^{-1}$ | 3.75653 mm ᵒC$^{-1}$ day$^{-1}$ | -| **`tt`** | threshold temperature for snowfall| ᵒC | 0.0 | +| **`tt`** | threshold temperature for snowfall | ᵒC | 0.0 | | **`tti`** | threshold temperature interval length | ᵒC | 1.0 | | **`ttm`** | threshold temperature for snowmelt | ᵒC | 0.0 | | **`whc`** | water holding capacity as fraction of current snow pack | - | 0.1 | | **`w_soil`** | soil temperature smooth factor | - | 0.1125 | | **`cf_soil`** | controls soil infiltration reduction factor when soil is frozen | - | 0.038 | -| **`g_tt`** | threshold temperature for snowfall above glacier | ᵒC| 0.0 | +| **`g_tt`** | threshold temperature for glacier melt | ᵒC | 0.0 | | **`g_cfmax`** | Degree-day factor for glacier | mm ᵒC$^{-1}$ Δt$^{-1}$| 3.0 mm ᵒC$^{-1}$ day$^{-1}$ | | **`g_sifrac`** | fraction of the snowpack on top of the glacier converted into ice | Δt$^{-1}$ | 0.001 day$^{-1}$ | | **`glacierfrac`** | fraction covered by a glacier | - | 0.0 | diff --git a/src/glacier/glacier.jl b/src/glacier/glacier.jl index 8f5be9553..8b0eebec7 100644 --- a/src/glacier/glacier.jl +++ b/src/glacier/glacier.jl @@ -32,7 +32,7 @@ end "Struct for storing glacier HBV model parameters" @get_units @grid_loc @with_kw struct GlacierHbvParameters{T} - # Threshold temperature for snowfall above glacier [ᵒC] + # Threshold temperature for glacier melt [ᵒC] g_tt::Vector{T} | "ᵒC" # Degree-day factor [mm ᵒC⁻¹ Δt⁻¹] for glacier g_cfmax::Vector{T} | "mm ᵒC-1 dt-1"