Skip to content

Commit

Permalink
Merge pull request #214 from CliMA/al/ice_dep_nuc
Browse files Browse the repository at this point in the history
Add ABDINM coefficents for Illite and ATD
  • Loading branch information
trontrytel authored Dec 11, 2024
2 parents 9dba10d + b8a2233 commit 2127754
Show file tree
Hide file tree
Showing 3 changed files with 35 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.18
--------
- Add parameters for ABDINM and ABIFM for Illite and Arizona Test Dust ([#214](https://github.com/CliMA/ClimaParams.jl/pull/214))

v0.10.17
--------
- Add parameters for DecayWithHeightDiffusion scheme ([#212](https://github.com/CliMA/ClimaParams.jl/pull/213))
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.17"
version = "0.10.18"

[deps]
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Expand Down
30 changes: 30 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1394,6 +1394,26 @@ description = "a for temperatures < T_thr for Desert Dust [-]. From Mohler et al

# Microphysics - water activity based ice deposition nucleation

[J_ABDINM_m_Illite]
value = 13.2251
type = "float"
description = "Arbitrary coefficient, m, for calculating deposition nucleation J_het of Illite [-]."

[J_ABDINM_c_Illite]
value = 0.7716
type = "float"
description = "Arbitrary coefficient, c, for calculating deposition nucleation J_het of Illite [-]."

[J_ABDINM_m_ArizonaTestDust]
value = 13.2251
type = "float"
description = "Arbitrary coefficient, m, for calculating deposition nucleation J_het of Arizona Test Dust [-]."

[J_ABDINM_c_ArizonaTestDust]
value = 0.7716
type = "float"
description = "Arbitrary coefficient, c, for calculating deposition nucleation J_het of Arizona Test Dust [-]."

[Alpert2022_J_deposition_m_Feldspar]
value = 13.2251
type = "float"
Expand Down Expand Up @@ -1426,6 +1446,16 @@ description = "Coefficient, c, for calculating deposition nucleation J_het of Ka

# Microphysics - water activity based immersion freezing/nucleation

[J_ABIFM_m_ArizonaTestDust]
value = 22.62
type = "float"
description = "Arbitrary coefficient, m, for calculating immersion freezing J_het of Arizona Test Dust [-]."

[J_ABIFM_c_ArizonaTestDust]
value = -1.35
type = "float"
description = "Arbitrary coefficient, c, for calculating immersion freezing J_het of Arizona Test Dust [-]."

[AlpertKnopf2016_J_ABIFM_m_DesertDust]
value = 22.62
type = "float"
Expand Down

2 comments on commit 2127754

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

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.18 -m "<description of version>" 212775400c72a92a4927fa833552e1d9a44fd626
git push origin v0.10.18

Please sign in to comment.