Skip to content

Commit

Permalink
Merge pull request #191 from CliMA/cc/2M_add_params
Browse files Browse the repository at this point in the history
Add distributions parameters 2-moment scheme
  • Loading branch information
crocicc authored May 9, 2024
2 parents d19d043 + 919e25e commit 49fc081
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
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.5"
version = "0.10.6"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
15 changes: 15 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1090,6 +1090,21 @@ value = 2
type = "float"
description = "Gamma distibution parameter. Unitless. Default value from Seifert and Rasp, 2020. DOI: 10.1029/2020MS002301."

[SB2006_cloud_gamma_distribution_coeff_mu]
value = 1
type = "float"
description = "Gamma distibution coefficient. Unitless. Default value from Seifert and Rasp, 2020. DOI: 10.1029/2020MS002301."

[SB2006_rain_distribution_coeff_nu]
value = -0.66666666666667
type = "float"
description = "Gamma distibution coefficient. Unitless. Default value from Seifert and Rasp, 2020. DOI: 10.1029/2020MS002301."

[SB2006_rain_distribution_coeff_mu]
value = 0.33333333333333
type = "float"
description = "Gamma distibution coefficient. Unitless. Default value from Seifert and Rasp, 2020. DOI: 10.1029/2020MS002301."

[SB2006_reference_air_density]
value = 1.225
type = "float"
Expand Down

2 comments on commit 49fc081

@nefrathenrici
Copy link
Member

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/106493

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.6 -m "<description of version>" 49fc0814f1813e218eb3ba7f960bc8ba54166514
git push origin v0.10.6

Please sign in to comment.