Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion physics/GWD/cires_ugwpv1_oro.F90
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ subroutine orogw_v1 (im, km, imx, me, master, dtp, kdt, do_tofd, &
dusfc(i) = 0.0
dvsfc(i) = 0.0
ipt(i) = 0
enddo
enddo
zlwb(:) = 0.0

! ---- for lm and gwd calculation points
!cires_ugwp_initialize.F90: real, parameter :: hpmax=2400.0, hpmin=25.0
Expand Down
2 changes: 1 addition & 1 deletion physics/GWD/cires_ugwpv1_triggers.F90
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ subroutine get_spectra_tau_okw(nw, im, levs, trig_okw, xlatd, sinlat, coslat, t
if (dmax >= tlim_okw) kex = kex+1
do k=klow+1, ktop
dtot = abs(trig_okw(i,k))
if (dtot >= tlim_fgf ) kex = kex+1
if (dtot >= tlim_okw ) kex = kex+1
if ( dtot > dmax) then
klev(i) = k
dmax = dtot
Expand Down
7 changes: 5 additions & 2 deletions physics/Interstitials/UFS_SCM_NEPTUNE/sfcsub.F
Original file line number Diff line number Diff line change
Expand Up @@ -3093,8 +3093,11 @@ subroutine subst(data,imax,jmax,dlon,dlat,ijordr)
enddo
enddo
else
do i=1,imax
data(imax-i+1,jj) = work(i,j)
do j=1,jmax
jj = jmax - j + 1
do i=1,imax
data(imax-i+1,jj) = work(i,j)
enddo
enddo
endif
else
Expand Down