CloudMicrophysics.jl
CloudMicrophysics.jl copied to clipboard
P3 shedding!
- This PR implements shedding for P3 liquid mass content as described in Cholette (2019).
- See liquid fraction issue for the parameterization, or the docs build!
- I have not added any plots to the docs, but I could see it being interesting to plot shedding as a function of
L_p3_tot
keepingL_ice
andN_ice
constant and increasingL_liq
for a few differentF_rim
values. Maybe I will try to do that this week. - TODO - Once
get_ice_bound()
is merged, change the code in src accordingly, and test away! - Finally, for catching cases when we have no particles over which to compute shedding, I have currently implemented to compute shedding if
L > eps && N > eps
but am unsure whether the condition should be that orL > eps || N > eps
.