Skip to content

Commit

Permalink
Merge pull request #192 from CliMA/ap/p3
Browse files Browse the repository at this point in the history
P3 parameters for sink terms
  • Loading branch information
anastasia-popova authored May 16, 2024
2 parents 49fc081 + 1f401e1 commit ec828db
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.6"
version = "0.10.7"

[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 @@ -1310,6 +1310,11 @@ value = [-0.346044, -7.17829e-11, -1.24394e20]
type = "float"
description = "Hl coefficients for ice terminal velocity parameterization - See Table B5 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_ice_cutoff]
value = 0.000625
type = "float"
description = "Chen2022 parametrization cut off for diameter between small and large ice particles [m]"

# Microphysics - ice deposition on dust

[Mohler2006_maximum_allowed_Si]
Expand Down Expand Up @@ -1599,6 +1604,16 @@ value = 6
type = "float"
description = "Limiter for shape parameter mu for ice in P3 scheme. See eq 3 in Morrison and Milbrandt 2015. Units: [-]"

[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"

[p3_ventiallation_b]
value = 0.308
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

[seasalt_aerosol_molar_mass]
Expand Down

2 comments on commit ec828db

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

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.7 -m "<description of version>" ec828db9798786a0962d0fe49c2786eaed07e4fd
git push origin v0.10.7

Please sign in to comment.