1 SUBROUTINE calwxt_dominant_post(PREC,RAIN,FREEZR,SLEET,SNOW, &
2 & domr,domzr,domip,doms)
10 use ctlblk_mod
, only: jsta, jend, pthresh, im, jsta_2l, jend_2u
15 integer,
PARAMETER :: nalg=5
17 REAL prec(im,jsta_2l:jend_2u)
18 real,
DIMENSION(IM,jsta:jend),
intent(inout) :: doms,domr,domzr,domip
19 real,
DIMENSION(IM,jsta:jend,NALG),
intent(in) :: rain,snow,sleet,freezr
21 real totsn,totip,totr,totzr
37 IF (prec(i,j) <= pthresh) cycle
44 IF (rain(i,j,l) > 0)
THEN
49 IF (snow(i,j,l) > 0)
THEN
54 IF (sleet(i,j,l) > 0)
THEN
59 IF (freezr(i,j,l) > 0)
THEN
66 IF (totsn > totip)
THEN
67 IF (totsn > totzr)
THEN
68 IF (totsn >= totr)
THEN
73 ELSE IF (totzr >= totr)
THEN
78 ELSE IF (totip > totzr)
THEN
79 IF (totip >= totr)
THEN
84 ELSE IF (totzr >= totr)
THEN