Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ABDINM coefficents for Illite and ATD #214

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading