Skip to content

Commit

Permalink
Add a print each iteration through the driver
Browse files Browse the repository at this point in the history
  • Loading branch information
billsacks committed Apr 4, 2024
1 parent dcddf3f commit 83cb698
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/clm_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module clm_driver
use clm_time_manager , only : get_prev_date, is_first_step
use clm_varpar , only : nlevsno, nlevgrnd
use clm_varorb , only : obliqr
use spmdMod , only : masterproc, mpicom
use spmdMod , only : masterproc, mpicom, iam
use decompMod , only : get_proc_clumps, get_clump_bounds, get_proc_bounds, bounds_type
use filterMod , only : filter, filter_inactive_and_active
use filterMod , only : setExposedvegpFilter
Expand Down Expand Up @@ -167,6 +167,12 @@ subroutine clm_drv(doalb, nextsw_cday, declinp1, declin, rstwr, nlend, rdate, ro

! Determine processor bounds and clumps for this processor

if (iam == 20) then
nstep = get_nstep()

write(iulog,*) 'WJS: driver loop: nstep, snocan(24) = ', nstep, water_inst%waterstatebulk_inst%snocan_patch(24)
end if

call get_proc_bounds(bounds_proc)
nclumps = get_proc_clumps()

Expand Down

0 comments on commit 83cb698

Please sign in to comment.