Skip to content

Commit a2c5bca

Browse files
committed
Delete some comments to clean up the code
1 parent 65ec921 commit a2c5bca

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

columnphysics/icepack_fsd.F90

-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,6 @@ subroutine fsd_lateral_growth (dt, aice, &
592592
endif ! vi0new_lat > 0
593593

594594
! Use remaining ice volume as in standard model,
595-
! but ice cannot grow into the area that has grown laterally
596595
tot_latg = SUM(d_an_latg(:))
597596

598597
end subroutine fsd_lateral_growth

columnphysics/icepack_therm_itd.F90

+1-4
Original file line numberDiff line numberDiff line change
@@ -959,9 +959,6 @@ subroutine lateral_melt (dt, fpond, &
959959

960960
if (.not. any(rsiden(:) > c0)) return ! no lateral melt, get out now
961961

962-
! write(warnstr,*) 'LM ',rsiden(1)
963-
! call icepack_warnings_add(warnstr)
964-
965962
dfhocn = c0
966963
dfpond = c0
967964
dfresh = c0
@@ -1027,7 +1024,7 @@ subroutine lateral_melt (dt, fpond, &
10271024
! floe size distribution
10281025
if (tr_fsd) then
10291026
if (rsiden(n) > puny) then
1030-
if (aicen(n) > puny) then ! not sure if this should be aicen or aicen_init
1027+
if (aicen(n) > puny) then
10311028

10321029
! adaptive subtimestep
10331030
elapsed_t = c0

columnphysics/icepack_therm_vertical.F90

-2
Original file line numberDiff line numberDiff line change
@@ -696,8 +696,6 @@ subroutine frzmlt_bottom_lateral (dt, &
696696
rsiden(n) = rsiden(n) * xtmp ! xtmp is almost always 1 so usually nothing happens here
697697
enddo ! ncat
698698

699-
! write(warnstr,*) 'FBM ',rsiden(1), xtmp
700-
! call icepack_warnings_add(warnstr)
701699
endif
702700

703701
if (present(wlat)) wlat=wlat_loc

0 commit comments

Comments
 (0)