Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ugwp_driver_v0.f compilation warning fix #4

Merged
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
6 changes: 3 additions & 3 deletions gfsphysics/physics/ugwp_driver_v0.f
Original file line number Diff line number Diff line change
Expand Up @@ -1991,8 +1991,8 @@ subroutine edmix_ugwp_v0(im, levs, dtp,
Km(1:levs) = ksum(1:levs) * rho(1:levs)* rho(1:levs)

do j=1, nstab
call diff_1d_wtend(levs, dtstab, Fw, Fw1, levs,
& del(i,:), Sw, Sw1)
call diff_1d_wtend(levs, dtstab, Fw, Fw1, Km,
& rdp, rdpm, Sw, Sw1)
Fw = Sw
Fw1 = Sw1
enddo
Expand All @@ -2004,7 +2004,7 @@ subroutine edmix_ugwp_v0(im, levs, dtp,
Kpt = Km*iPr_pt
Fw(1:levs) = pdTdt(i, 1:levs)*Ptmap(1:levs)
do j=1, nstab
call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw)
call diff_1d_ptend(levs, dtstab, Fw, Kpt, rdp, rdpm, Sw)
Fw = Sw
enddo
ed_dtdt(i,1:levs) = Sw(1:levs)/Ptmap(1:levs)
Expand Down