Skip to content

Commit

Permalink
More consistent logic for NSSL mp (mixing snow)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeolson42 committed Mar 14, 2023
1 parent 0e20bda commit 0b369ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions physics/mynnedmf_wrapper.F90
Original file line number Diff line number Diff line change
Expand Up @@ -392,16 +392,16 @@ SUBROUTINE mynnedmf_wrapper_run( &
FLAG_QNI= .true.
FLAG_QC = .true.
FLAG_QNC= .true.
FLAG_QS = .false.
FLAG_QS = .true.
FLAG_QNWFA= nssl_ccn_on ! ERM: Perhaps could use this field for CCN field?
FLAG_QNIFA= .false.
FLAG_QNBCA= .false.
do k=1,levs
do i=1,im
sqv(i,k) = qgrs_water_vapor(i,k)
sqc(i,k) = qgrs_liquid_cloud(i,k)
sqi(i,k) = qgrs_ice(i,k)
sqs(i,k) = 0.
sqv(i,k) = qgrs_water_vapor(i,k)
sqc(i,k) = qgrs_liquid_cloud(i,k)
sqi(i,k) = qgrs_ice(i,k)
sqs(i,k) = qgrs_snow(i,k)
ozone(i,k) = qgrs_ozone(i,k)
qnc(i,k) = qgrs_cloud_droplet_num_conc(i,k)
qni(i,k) = qgrs_cloud_ice_num_conc(i,k)
Expand Down

0 comments on commit 0b369ef

Please sign in to comment.