Skip to content
Merged
Changes from 2 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
2 changes: 1 addition & 1 deletion ccpp/driver/CCPP_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ subroutine CCPP_step (step, nblks, ierr)
endif

!--- determine if physics diagnostics buckets need to be cleared
if (mod(GFS_control%kdt,GFS_control%nszero) == 1) then
if ((mod(GFS_control%kdt-1,GFS_control%nszero)+1) == 1) then
Comment thread
climbfuji marked this conversation as resolved.
Outdated
do nb = 1,nblks
call GFS_data(nb)%Intdiag%phys_zero(GFS_control)
end do
Expand Down