Skip to content
Open
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
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
| james-bruten-mo | James Bruten | Met Office | 2025-12-09 |
| t00sa | Sam Clarke-Green | Met Office | 2026-03-02 |
| Pierre-siddall| Pierre Siddall | Met Office | 2026-03-11 |
| iboutle | Ian Boutle | Met Office | 2026-08-12 |
9 changes: 3 additions & 6 deletions src/activation.F90
Original file line number Diff line number Diff line change
Expand Up @@ -261,14 +261,11 @@ subroutine activate(dt, cloud_mass, cloud_number, w, rho, dnumber, dmac, T, p,

activated_arg = sum(dnccn_all(:))

dactive = zero_real_wp
dmass_d = zero_real_wp
if (Smax_act > smax_act_min .and. .not. l_warm) then

if (iopt_inuc < 4) then
! For lower-order ice nucleation options, need to initialise
! dactive and dmass_d
dactive = zero_real_wp
dmass_d = zero_real_wp
else
if (iopt_inuc > 3) then
! For higher-order ice nucleation schemes, dactive and dmass_d
! can be based on dustphys
dactive = 0.01*dustphys%N(1)
Expand Down