From 455f145d62b01404a97cad536bf060e07e146942 Mon Sep 17 00:00:00 2001 From: nefrathenrici Date: Mon, 26 Feb 2024 10:34:40 -0800 Subject: [PATCH 1/2] Add bucket model parameters --- Project.toml | 2 +- src/parameters.toml | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 26983017..92aed6f0 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ClimaParams" uuid = "5c42b081-d73a-476f-9059-fd94b934656c" authors = ["Climate Modeling Alliance"] -version = "0.10.0" +version = "0.10.1" [deps] DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" diff --git a/src/parameters.toml b/src/parameters.toml index 04424036..d24f0bec 100644 --- a/src/parameters.toml +++ b/src/parameters.toml @@ -238,6 +238,43 @@ value = 2.01e6 type = "float" description = "Source: Balland and Arp (2005)" +# Bucket Model + +[soil_conductivity] +value = 1.5 +type = "float" +description = "Conductivity of the soil (W/K/m); constant. Source: SLIM model (Laguë et al 2019)" + +[soil_heat_capacity] +value = 2e6 +type = "float" +description = "Volumetric heat capacity of the soil (J/m^3/K). Source: SLIM model (Laguë et al 2019)" + +[critical_snow_water_equivalent] +value = 0.05 +type = "float" +description = "Critical σSWE amount (m) where surface transitions to snow-covered. Source: SLIM model (Laguë et al 2019)" + +[land_bucket_capacity] +value = 0.2 +type = "float" +description = "Capacity of the land bucket (m). Source: SLIM model (Laguë et al 2019)" + +[critical_snow_fraction] +value = 0.0 +type = "float" +description = "Fraction of critical amount of snow at which sublimation β begins to decay to zero (unitless). Source: SLIM model (Laguë et al 2019)" + +[bucket_capacity_fraction] +value = 0.75 +type = "float" +description = "Fraction of bucket capacity at which evaporation β begins to decay to zero (unitless). Source: SLIM model (Laguë et al 2019)" + +[bucket_beta_decay_exponent] +value = 1 +type = "float" +description = "Exponent used in β decay (unitless). Source: SLIM model (Laguë et al 2019)" + ## Surface Fluxes [richardson_critical] From 29399e943a333844386e9e8e3d65ea4437edffcf Mon Sep 17 00:00:00 2001 From: nefrathenrici Date: Mon, 26 Feb 2024 11:06:10 -0800 Subject: [PATCH 2/2] Update changelog --- changelog.md | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/changelog.md b/changelog.md index 1463de11..1a3360aa 100644 --- a/changelog.md +++ b/changelog.md @@ -1,17 +1,26 @@ -ClimaParameters.jl Release Notes +ClimaParams.jl Release Notes ======================== +v0.10.1 +------- +- Added Bucket model parameters ([#183](https://github.com/CliMA/ClimaParams.jl/pull/183)) +- Added Energy Hydrology parameters ([#180](https://github.com/CliMA/ClimaParams.jl/pull/180)) + +v0.10.0 +------- +- Renamed to ClimaParams ([#184](https://github.com/CliMA/ClimaParams.jl/pull/184)) + v0.9.0 ------- - Started changelog -- Allow NamedTuples to be used as name maps ([#158]) -- Update default value for `alpha_rayleigh_uh` ([#160]) -- Add parameters for water based deposition nucleation for kaolinite, feldspar, and ferrihydrate ([#161]) -- Fix typos in deposition nucleation parameters ([#162]) -- Add parameters for the P3 scheme ([#163]) -- Add autotrophic respiration parameters ([#165]) -- Remove default type for TOML parsing ([#166]) -- Replace and add additional ARG2000 parameters ([#130]) -- Add `T_init_min` for thermodynamics saturation adjustment, changes T_min to 1 Kelvin 🧊 ([#171]) -- Fix typos and group some parameters together ([#168]) -- Add Frostenberg et al (2023) parameters ([#174]) +- Allow NamedTuples to be used as name maps ([#158](https://github.com/CliMA/ClimaParams.jl/pull/158)) +- Update default value for `alpha_rayleigh_uh` ([#160](https://github.com/CliMA/ClimaParams.jl/pull/160)) +- Add parameters for water based deposition nucleation for kaolinite, feldspar, and ferrihydrate ([#161](https://github.com/CliMA/ClimaParams.jl/pull/161)) +- Fix typos in deposition nucleation parameters ([#162](https://github.com/CliMA/ClimaParams.jl/pull/162)) +- Add parameters for the P3 scheme ([#163](https://github.com/CliMA/ClimaParams.jl/pull/163)) +- Add autotrophic respiration parameters ([#165](https://github.com/CliMA/ClimaParams.jl/pull/165)) +- Remove default type for TOML parsing ([#166](https://github.com/CliMA/ClimaParams.jl/pull/166)) +- Replace and add additional ARG2000 parameters ([#130](https://github.com/CliMA/ClimaParams.jl/pull/130)) +- Add `T_init_min` for thermodynamics saturation adjustment, changes T_min to 1 Kelvin 🧊 ([#171](https://github.com/CliMA/ClimaParams.jl/pull/171)) +- Fix typos and group some parameters together ([#168](https://github.com/CliMA/ClimaParams.jl/pull/168)) +- Add Frostenberg et al (2023) parameters ([#174](https://github.com/CliMA/ClimaParams.jl/pull/174))