Skip to content

Commit

Permalink
Tweak DBZI calculation from reviwers,
Browse files Browse the repository at this point in the history
  • Loading branch information
WenMeng-NOAA authored Oct 3, 2019
1 parent 32746a4 commit 5e89eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sorc/ncep_post.fd/MDLFLD.f
Original file line number Diff line number Diff line change
Expand Up @@ -645,13 +645,13 @@ SUBROUTINE MDLFLD
DBZI(I,J,L) = DBZI(I,J,L) + ((QQS(I,J,L)*DENS)**1.75) * &
& 2.18500E-10 * 1.E18 ! Z FOR SNOW
else
DBZI(I,J,L) = 0.
DBZI(I,J,L) = DBZI(I,J,L)
endif
IF (QQG(I,J,L) < SPVAL .and. QQG(I,J,L)> 0.0) then
DBZI(I,J,L) = DBZI(I,J,L) + ((QQG(I,J,L)*DENS)**1.75) * &
& 1.033267E-9 * 1.E18 ! Z FOR GRAUP
else
DBZI(I,J,L) = 0.
DBZI(I,J,L) = DBZI(I,J,L)
endif
IF (Model_Radar) THEN
ze_nc=10.**(0.1*REF_10CM(I,J,L))
Expand Down

1 comment on commit 5e89eed

@ericaligo-NOAA
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change looks good.

Please sign in to comment.