Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
19 changes: 12 additions & 7 deletions phys/module_microphysics_driver.F
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ SUBROUTINE microphysics_driver( &
,f_qns,f_qnr,f_qng,f_qnc,f_qnn,f_qh,f_qnh &
, f_qzr,f_qzi,f_qzs,f_qzg,f_qzh &
,f_qvolg,f_qvolh &
,f_qic,f_qip,f_qid &
,f_qnic,f_qnip,f_qnid &
,f_qic,f_qip,f_qid &
,f_qnic,f_qnip,f_qnid &
Comment thread
weiwangncar marked this conversation as resolved.
Outdated
,f_qir,f_qib & ! for P3
,f_qi2,f_qni2,f_qir2,f_qib2 & ! for P3
,f_qvoli,f_qaoli & ! for Jensen ISHMAEL
Expand All @@ -87,8 +87,9 @@ SUBROUTINE microphysics_driver( &
,hail,ice2 & ! for mp_gsfcgce
!NUWRF JJS 20110525 vvvvv
,phys_tot, physc, physe, physd, physs, physm, physf& ! for gsfcgce
,acphys_tot, acphysc, acphyse, acphysd & ! for gsfcgce
,acphyss, acphysm, acphysf & ! for gsfcgce
,acphys_tot, acphysc, acphyse, acphysd & ! for gsfcgce
,acphyss, acphysm, acphysf & ! for gsfcgce

Comment thread
weiwangncar marked this conversation as resolved.
Outdated
,re_cloud_gsfc, re_rain_gsfc, re_ice_gsfc &
,re_snow_gsfc, re_graupel_gsfc, re_hail_gsfc & ! cloud effective radius
,precr3d, preci3d, precs3d, precg3d, prech3d &
Expand Down Expand Up @@ -1479,12 +1480,12 @@ SUBROUTINE microphysics_driver( &
if (config_flags%nwp_diagnostics == 1) then
if (present(hail_maxk1)) then
if (allocated(tempo_driver_diags%max_hail_diameter_sfc)) then
hail_maxk1(i,j) = 1.e-3 * tempo_driver_diags%max_hail_diameter_sfc(i,j)
hail_maxk1(i,j) = tempo_driver_diags%max_hail_diameter_sfc(i,j)
Comment thread
weiwangncar marked this conversation as resolved.
Outdated
endif
endif
if (present(hail_max2d)) then
if (allocated(tempo_driver_diags%max_hail_diameter_column)) then
hail_max2d(i,j) = 1.e-3 * tempo_driver_diags%max_hail_diameter_column(i,j)
hail_max2d(i,j) = tempo_driver_diags%max_hail_diameter_column(i,j)
Comment thread
weiwangncar marked this conversation as resolved.
Outdated
endif
endif
endif
Expand Down Expand Up @@ -1529,7 +1530,11 @@ SUBROUTINE microphysics_driver( &
QCCN=qccn_curr,QRCN=qrcn_curr,QNIN=qnin_curr, &
FI=fi_curr,FS=fs_curr,VI=vi_curr,VS=vs_curr, &
VG=vg_curr,AI=ai_curr,AS=as_curr,AG=ag_curr, &
AH=ah_curr,I3M=i3m_curr,RAINNC=rainnc, &
AH=ah_curr,I3M=i3m_curr,has_reqc=has_reqc, &
has_reqi=has_reqi,has_reqs=has_reqs, &
re_cloud=re_cloud,re_ice=re_ice,re_snow=re_snow, &
DBZM=refl_10cm,diagflag=diagflag, &
do_radar_ref=do_radar_ref,RAINNC=rainnc, &
RAINNCV=rainncv,SNOWNC=snownc,SNOWNCV=snowncv, &
GRAPNC=graupelnc,GRAPNCV=graupelncv, &
HAILNC=hailnc,HAILNCV=hailncv, &
Expand Down
Loading