Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion physics/GWD/ugwp_driver_v0.F
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,9 @@ SUBROUTINE GWDPS_V0(IM, km, imx, do_tofd,
BVF2 = grav2 * RDZ * (VTK(I,K+1)-VTK(I,K))
& / (VTK(I,K+1)+VTK(I,K))
bnv2(i,k+1) = max( BVF2, bnv2min )
RI_N(I,K+1) = Bnv2(i,k)/SHR2 ! Richardson number consistent with BNV2
! https://github.com/NCAR/ccpp-physics/issues/1103
!RI_N(I,K+1) = Bnv2(i,k)/SHR2 ! Richardson number consistent with BNV2
RI_N(I,K+1) = Bnv2(i,max(k,2))/SHR2 ! Richardson number consistent with BNV2
!
! add here computation for Ktur and OGW-dissipation fro VE-GFS
!
Expand Down