Skip to content

Commit

Permalink
Merge #120
Browse files Browse the repository at this point in the history
120: Add terminal velocity params from Chen et al 2022 r=trontrytel a=trontrytel

Needed for CloudMicrophysics.jl PR:CliMA/CloudMicrophysics.jl#144

Co-authored-by: Anna Jaruga <ajaruga@caltech.edu>
  • Loading branch information
bors[bot] and trontrytel authored Aug 9, 2023
2 parents 3b48a82 + 5566ea7 commit 26e30c3
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CLIMAParameters"
uuid = "6eacf6c3-8458-43b9-ae03-caf5306d3d53"
authors = ["Climate Modeling Alliance"]
version = "0.7.7"
version = "0.7.8"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
74 changes: 73 additions & 1 deletion src/parameters.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Surface Fluxes

# Businger
# Businger

[prandtl_number_0_businger]
alias = "Pr_0_Businger"
Expand Down Expand Up @@ -942,6 +942,78 @@ value = 1e4
type = "float"
description = "Maximum of raindrops size distribution parameter λ [1/m]. From Seifert and Beheng, 2006. DOI: 10.1007/s00703-005-0112-4."

[Chen2022_table_B1_q_coeff]
alias = "q_coeff_rain_Ch2022"
value = 0.115231
type = "float"
description = "q coefficinet for raindrop terminal velocity parameterization [-]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_a1_coeff]
alias = "a1_coeff_rain_Ch2022"
value = 0.044612
type = "float"
description = "a1 coefficinet for raindrop terminal velocity parameterization [mm^-bi]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_a2_coeff]
alias = "a2_coeff_rain_Ch2022"
value = -0.263166
type = "float"
description = "a2 coefficinet for raindrop terminal velocity parameterization [mm^-bi]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_a3_coeff]
alias = "a3_coeff_rain_Ch2022"
value = 4.7178
type = "float"
description = "a3 coefficinet for raindrop terminal velocity parameterization [mm^-bi]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_a3_pow_coeff]
alias = "a3_pow_coeff_rain_Ch2022"
value = -0.47335
type = "float"
description = "a3 coefficinet for raindrop terminal velocity parameterization [-]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_b1_coeff]
alias = "b1_coeff_rain_Ch2022"
value = 2.2955
type = "float"
description = "b1 coefficinet for raindrop terminal velocity parameterization [-]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_b2_coeff]
alias = "b2_coeff_rain_Ch2022"
value = 2.2955
type = "float"
description = "b2 coefficinet for raindrop terminal velocity parameterization [-]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_b3_coeff]
alias = "b3_coeff_rain_Ch2022"
value = 1.1451
type = "float"
description = "b3 coefficinet for raindrop terminal velocity parameterization [-]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_b_rho_coeff]
alias = "b_rho_coeff_rain_Ch2022"
value = 0.038465
type = "float"
description = "b density coefficinet for raindrop terminal velocity parameterization [m3/kg]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_c1_coeff]
alias = "c1_coeff_rain_Ch2022"
value = 0.0
type = "float"
description = "c1 density coefficinet for raindrop terminal velocity parameterization [1/mm]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_c2_coeff]
alias = "c2_coeff_rain_Ch2022"
value = 0.184325
type = "float"
description = "c2 density coefficinet for raindrop terminal velocity parameterization [1/mm]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

[Chen2022_table_B1_c3_coeff]
alias = "c3_coeff_rain_Ch2022"
value = 0.184325
type = "float"
description = "c3 density coefficinet for raindrop terminal velocity parameterization [1/mm]. See Table B1 in Chen et al 2022 DOI: 10.1016/j.atmosres.2022.106171"

# Microphysics - ice deposition on dust

[Mohler2006_maximum_allowed_Si]
Expand Down

2 comments on commit 26e30c3

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

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.7.8 -m "<description of version>" 26e30c34c2e1461ad6a7b7c90db921f380f6476d
git push origin v0.7.8

Please sign in to comment.