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

Linear coefficients for Koop2000 ice nucleation #190

Merged
merged 1 commit into from
Apr 12, 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.5
------
- Add linear fit parameters for homogeneous ice nucleation ([#366](https://github.com/CliMA/CloudMicrophysics.jl/pull/366))

v0.10.4
------
- Add albedo parameters ([#188](https://github.com/CliMA/ClimaParams.jl/pull/188))
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.4"
version = "0.10.5"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
10 changes: 10 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1482,6 +1482,16 @@ value = 29180
type = "float"
description = "Coefficient for calculating J_hom parameterized by Koop 2000 [-]. From Koop 2000. DOI: 10.1038/35020537."

[Linear_J_hom_coeff1]
value = -68.5532830403637
type = "float"
description = "Intercept coefficient for calculating J_hom derived from linear fit of Koop2000 parameterization as shown in CloudMicrophysics.jl docs [-]. DOI:10.1038/35020537."

[Linear_J_hom_coeff2]
value = 255.9271249999972
type = "float"
description = "Slope coefficient for calculating J_hom derived from linear fit of Koop2000 parameterization as shown in CloudMicrophysics.jl docs [-]. DOI:10.1038/35020537."

# Microphysics - Luo 1995 H2SO4 vapor pressure

[p_over_sulphuric_acid_solution_T_max]
Expand Down
Loading