Skip to content

Commit

Permalink
Merge pull request #1010 from GEOS-ESM/bugfix/narnold1/#1009-GF-prfil…
Browse files Browse the repository at this point in the history
…-units

Fixes #1009, incorrect units in GF precip fluxes
  • Loading branch information
sdrabenh authored Sep 30, 2024
2 parents 5210f4f + 9c2ad07 commit 614ad3d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3472,7 +3472,8 @@ SUBROUTINE CUP_gf(its,ite,kts,kte ,itf,ktf, mtp &
dp=100.*(po_cup(i,k)-po_cup(i,k+1))
!--- add congestus and deep plumes, and convert to kg/kg/s
revsu_gf(i,k) = revsu_gf(i,k) + evap_flx(i,k)*g/dp
prfil_gf(i,k) = prfil_gf(i,k) + prec_flx(i,k)*g/dp
!--- leave precip flux in kg/m2/s
prfil_gf(i,k) = prfil_gf(i,k) + prec_flx(i,k)
enddo
enddo

Expand Down

0 comments on commit 614ad3d

Please sign in to comment.