Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bucket model parameters #183

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
33 changes: 21 additions & 12 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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))
37 changes: 37 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading