Skip to content

Commit

Permalink
longer cloud cond timescale
Browse files Browse the repository at this point in the history
  • Loading branch information
trontrytel committed Jan 31, 2025
1 parent 28b189c commit 9a78dc8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function cloud_sources(cm_params::CMP.CloudLiquid{FT}, thp, ts, qᵣ, dt) where
q = TD.PhasePartition(thp, ts)
ρ = TD.air_density(thp, ts)

S = CMNe.conv_q_vap_to_q_liq_ice_MM2015(cm_params, thp, q, ρ, Tₐ(thp, ts))
S = CMNe.conv_q_vap_to_q_liq_ice_MM2015(cm_params, thp, q, ρ, Tₐ(thp, ts)) / 10

# keeping the same limiter for now
return ifelse(
Expand All @@ -57,7 +57,7 @@ function cloud_sources(cm_params::CMP.CloudIce{FT}, thp, ts, qₛ, dt) where {FT
q = TD.PhasePartition(thp, ts)
ρ = TD.air_density(thp, ts)

S = CMNe.conv_q_vap_to_q_liq_ice_MM2015(cm_params, thp, q, ρ, Tₐ(thp, ts))
S = CMNe.conv_q_vap_to_q_liq_ice_MM2015(cm_params, thp, q, ρ, Tₐ(thp, ts)) / 10

# keeping the same limiter for now
return ifelse(
Expand Down

0 comments on commit 9a78dc8

Please sign in to comment.