Skip to content

Commit

Permalink
Delete some comments to clean up the code
Browse files Browse the repository at this point in the history
  • Loading branch information
dabail10 committed Oct 30, 2024
1 parent 65ec921 commit a2c5bca
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion columnphysics/icepack_fsd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,6 @@ subroutine fsd_lateral_growth (dt, aice, &
endif ! vi0new_lat > 0

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

end subroutine fsd_lateral_growth
Expand Down
5 changes: 1 addition & 4 deletions columnphysics/icepack_therm_itd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -959,9 +959,6 @@ subroutine lateral_melt (dt, fpond, &

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

! write(warnstr,*) 'LM ',rsiden(1)
! call icepack_warnings_add(warnstr)

dfhocn = c0
dfpond = c0
dfresh = c0
Expand Down Expand Up @@ -1027,7 +1024,7 @@ subroutine lateral_melt (dt, fpond, &
! floe size distribution
if (tr_fsd) then
if (rsiden(n) > puny) then
if (aicen(n) > puny) then ! not sure if this should be aicen or aicen_init
if (aicen(n) > puny) then

! adaptive subtimestep
elapsed_t = c0
Expand Down
2 changes: 0 additions & 2 deletions columnphysics/icepack_therm_vertical.F90
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,6 @@ subroutine frzmlt_bottom_lateral (dt, &
rsiden(n) = rsiden(n) * xtmp ! xtmp is almost always 1 so usually nothing happens here
enddo ! ncat

! write(warnstr,*) 'FBM ',rsiden(1), xtmp
! call icepack_warnings_add(warnstr)
endif

if (present(wlat)) wlat=wlat_loc
Expand Down

0 comments on commit a2c5bca

Please sign in to comment.