Skip to content

Commit

Permalink
Merge pull request #183 from CliMA/ne/bucket_params
Browse files Browse the repository at this point in the history
Add bucket model parameters
  • Loading branch information
nefrathenrici authored Feb 26, 2024
2 parents 939b885 + 29399e9 commit b2d7855
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 13 deletions.
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

2 comments on commit b2d7855

@nefrathenrici
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/101735

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.1 -m "<description of version>" b2d785573cf77296320459acb398ff5c434948f5
git push origin v0.10.1

Please sign in to comment.