Skip to content

Commit

Permalink
Merge pull request #212 from CliMA/aj/apparent_density
Browse files Browse the repository at this point in the history
Add snow and ice apparent density
  • Loading branch information
trontrytel authored Oct 22, 2024
2 parents e9ce4b2 + 353532f commit 78a3f3f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
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.16
--------
- Add apparent snow and cloud ice density based on doi:10.1029/2020JD034157 ([#212](https://github.com/CliMA/ClimaParams.jl/pull/212))

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))
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.15"
version = "0.10.16"

[deps]
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Expand Down
10 changes: 10 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,16 @@ value = 0
type = "float"
description = "1-moment microphysics rain drop terminal velocity(radius) coefficient [-]"

[cloud_ice_apparent_density]
value = 500
type = "float"
description = "The apparent density of cloud ice particles, from doi:10.1029/2020JD034157 [kg/m3]"

[snow_apparent_density]
value = 100
type = "float"
description = "The apparent density of snow particles, from doi:10.1029/2020JD034157 [kg/m3]"

[cloud_ice_specific_humidity_autoconversion_threshold]
value = 0.000001
type = "float"
Expand Down

2 comments on commit 78a3f3f

@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/117850

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.16 -m "<description of version>" 78a3f3ffefbd8819d286b863b700522716ed74ef
git push origin v0.10.16

Please sign in to comment.