Skip to content

Commit

Permalink
cleanup no longer needed write statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rfiorella committed Oct 1, 2024
1 parent aeb0bfe commit 5d18e7e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion components/elm/src/biogeophys/ActiveLayerMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ subroutine alt_calc(num_soilc, filter_soilc, &
melt_profile(:) = 0._r8

do j = nlevgrnd,1,-1 ! note, this will go from bottom to top
!write(iulog,*) "processing level j,",j,k_frz,excess_ice(c,j)
if (j .gt. k_frz + 1) then ! all layers below k_frz + 1 remain frozen
melt_profile(j) = 0.0_r8
else if (j .eq. k_frz + 1) then ! first layer below the 'thawed' layer
Expand Down
1 change: 0 additions & 1 deletion components/elm/src/main/surfrdUtilsMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ subroutine check_sums_equal_1_3d(arr, lb, name, caller)
if (found) then
write(iulog,*) trim(caller), ' ERROR: sum of ', trim(name), ' not 1.0 at nl=', nindx, ' and t=', tindx
write(iulog,*) 'sum is: ', sum(arr(nindx,t,:))
write(iulog,*) arr(nindx,t,:)
call endrun(msg=errMsg(__FILE__, __LINE__))
end if

Expand Down

0 comments on commit 5d18e7e

Please sign in to comment.