SUBROUTINE ETAMP_Q2F(QRIMEF,QQI,QQR,QQW,CWM,F_RAIN,F_ICE,F_RIMEF,T) ! This subroutine is to be used with the WRF "advected Ferrier ! scheme" to calculate the F_ICE, F_RIMEF and F_RAIN arrays from ! the QQW, QQR, QQI and the input array QRIMEF. use CTLBLK_mod, only: lm,im,jsta,jend,jsta_2l,jend_2u,& ista,iend,ista_2l,iend_2u implicit none real, intent(in),dimension(ista_2l:iend_2u,jsta_2l:jend_2u,lm) :: & QRIMEF,QQW,QQR,QQI, T real, intent(out),dimension(ista_2l:iend_2u,jsta_2l:jend_2u,lm) :: & f_rain,f_ice,f_rimef,CWM integer :: i,j,l real :: qt ! NOTE: these parameters must match the WRF Ferrier scheme. ! They're wrong elsewhere in the post: real, parameter :: t_ice=-40., t0c=273.15, t_icek=233.15 real, parameter :: epsq=1.e-12 bigl: do l=1,lm bigj: do j=jsta,jend bigi: do i=ista,iend QT=QQW(I,J,L)+QQR(I,J,L)+QQI(I,J,L) CWM(i,j,l)=QT if(QQI(i,j,l)<=EPSQ) then f_ice(i,j,l)=0. f_rimef(i,j,l)=1. if(T(i,j,l)