Skip to content

Commit

Permalink
fixing immersion freezing production rate
Browse files Browse the repository at this point in the history
  • Loading branch information
amylu00 committed Feb 19, 2024
1 parent 4ed2fb1 commit b75cc2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/src/IceNucleationParcel0D.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,12 +223,12 @@ Following the water activity based immersion freezing model (ABIFM), the ABIFM d
per second via immersion freezing can then be calculating using
```math
\begin{equation}
P_{ice, immer} = \left[ \frac{dN_i}{dt} \right]_{immer} = J_{immer}A(N_{liq})
P_{ice, immer} = \left[ \frac{dN_i}{dt} \right]_{immer} = J_{immer}\;A_{aero}(N_{liq})
\label{eq:ABIFM_P_ice}
\end{equation}
```
where ``N_{liq}`` is total number of ice nuclei containing droplets and
``A`` is surface area of those droplets.
``A_{aero}`` is surface area of the ice nucleating particle.

## Homogeneous Freezing
Homogeneous freezing follows the water-activity based model described in the
Expand Down
2 changes: 1 addition & 1 deletion parcel/Immersion_Freezing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ R_d = TD.Parameters.R_d(tps)
Nₐ = FT(0)
Nₗ = FT(500 * 1e3)
Nᵢ = FT(0)
r₀ = FT(1e-6)
r₀ = FT(1e-6) # radius of droplets
p₀ = FT(800 * 1e2)
T₀ = FT(251)
qᵥ = FT(8.1e-4)
Expand Down
4 changes: 2 additions & 2 deletions parcel/parcel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ function parcel_model(dY, Y, p, t)
#A = N_liq* λ^2
r_l = 2 / λ
end
A_l = 4 * FT(π) * r_l^2
dN_act_dt_immersion = max(FT(0), J_immersion * N_liq * A_l)
A_aero = 4 * FT(π) * r_nuc^2
dN_act_dt_immersion = max(FT(0), J_immersion * N_liq * A_nuc)
dqi_dt_new_immers = dN_act_dt_immersion * 4 / 3 * FT(π) * r_l^3 * ρ_ice / ρ_air
end
if "P3_het" in ice_nucleation_modes
Expand Down

0 comments on commit b75cc2f

Please sign in to comment.