Skip to content

Commit

Permalink
Merge pull request #211 from CliMA/aj/snow_aspect_ratio
Browse files Browse the repository at this point in the history
Add snow aspect ratio parameters
  • Loading branch information
trontrytel authored Oct 17, 2024
2 parents 64914a0 + 60b7780 commit e9ce4b2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
ClimaParams.jl Release Notes
========================

v0.10.15
--------
- Add snow aspect ratio coefficients for Chen et al 2022 terminal velocity parameterization ([#211](https://github.com/CliMA/ClimaParams.jl/pull/211))

v0.10.14
------
- Remove all dependencies ([#208](https://github.com/CliMA/ClimaParams.jl/pull/208))
Expand Down
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.14"
version = "0.10.15"

[deps]
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Expand Down
24 changes: 17 additions & 7 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ description = "Constant describing cost of maintaining electron transport (unitl
# SoilCO2Model

[kg_C_to_mol_CO2_factor]
value = 83.26
value = 83.26
type = "float"
description = "Conversion factor from kg C to mol CO2"

Expand Down Expand Up @@ -321,7 +321,7 @@ value = 1
type = "float"
description = "Exponent used in β decay (unitless). Source: SLIM model (Laguë et al 2019)"

# Snow
# Snow

[snow_density]
value = 200
Expand Down Expand Up @@ -370,7 +370,7 @@ value = 0.97
type = "float"
description = "Emissivity of the canopy"

# Medlyn Conductance
# Medlyn Conductance

[relative_diffusivity_of_water_vapor]
value = 1.6
Expand Down Expand Up @@ -906,6 +906,16 @@ value = 0
type = "float"
description = "1-moment microphysics snow terminal velocity(radius) coefficient [-]"

[snow_aspect_ratio]
value = 0.15
type = "float"
description = "assumed aspect ratio in 1-moment microphysics for snow [-]"

[snow_aspect_ratio_coefficient]
value = 0.3333333333333333
type = "float"
description = "power law coeff. for terminal velocity dependence on snow aspect ratio from Chen et al 2022 [-]"

[cloud_liquid_rain_collision_efficiency]
value = 0.8
type = "float"
Expand Down Expand Up @@ -1611,12 +1621,12 @@ description = "Limiter for shape parameter mu for ice in P3 scheme. See eq 3 in

[p3_ventillation_a]
value = 0.78
type = "float"
description = "a coefficient for ventillation factor calculations in p3 tendencies, unitless. From Seifert and Beheng, 2006. DOI: 10.1007/s00703-005-0112-4"
type = "float"
description = "a coefficient for ventillation factor calculations in p3 tendencies, unitless. From Seifert and Beheng, 2006. DOI: 10.1007/s00703-005-0112-4"

[p3_ventiallation_b]
[p3_ventiallation_b]
value = 0.308
type = "float"
type = "float"
description = "b coefficient for ventillation factor calculations in p3 tendencies, unitless. From Seifert and Beheng, 2006. DOI: 10.1007/s00703-005-0112-4"

# Microphysics - Aerosol activation
Expand Down

2 comments on commit e9ce4b2

@trontrytel
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/117532

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.15 -m "<description of version>" e9ce4b2113102b795ec787d27106fc8ced544f43
git push origin v0.10.15

Please sign in to comment.