Skip to content

Commit

Permalink
Adding change log, and including hail mixing ratio in CWM.
Browse files Browse the repository at this point in the history
  • Loading branch information
EricJames-NOAA committed Oct 17, 2023
1 parent 722cb0f commit 1e22f21
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sorc/ncep_post.fd/INITPOST_NETCDF.f
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
!> 2023-07-24 | Hui-Ya Chuang | Bug fix in tke inialization
!> 2023-08-04 | Jaymes Kenyon | Read RRFS microphysics number concentrations (cloud water, cloud ice, rain)
!> 2023-08-31 | Li(Kate Zhang)| Add condition to include/exclude processing nitrate from model output
!> 2023-09-22 | Wen Meng | Bug fix in cwm intialization
!> 2023-09-22 | Wen Meng | Bug fix in cwm initialization
!> 2023-10-17 | Eric James | Including hail mixing ratio in calculation of hydrometeor VIL
!> and cwm when present (NSSL microphysics)
!>
!> @author Hui-Ya Chuang @date 2016-03-04
!----------------------------------------------------------------------
Expand Down Expand Up @@ -920,6 +922,9 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d)
if(qqr(i,j,l) /= spval) then
qrmax(i,j)=max(qrmax(i,j),qqr(i,j,l))
cwm(i,j,l)=qqg(i,j,l)+qqs(i,j,l)+qqr(i,j,l)+qqi(i,j,l)+qqw(i,j,l)
if(qqh(i,j,l) /= spval) then
cwm(i,j,l)=cwm(i,j,l)+qqh(i,j,l)
endif
endif
enddo
enddo
Expand Down

0 comments on commit 1e22f21

Please sign in to comment.