Skip to content

Commit

Permalink
Update call to icepack_aggregate in ice_prescribed_mod.F90 (#980)
Browse files Browse the repository at this point in the history
Was missed as part of the BGC + Icepack interface update.
  • Loading branch information
NickSzapiro-NOAA authored Oct 10, 2024
1 parent 6428405 commit 68b2610
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions cicecore/drivers/mct/cesm1/ice_prescribed_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,7 @@ subroutine ice_prescribed_phys
! compute aggregate ice state and open water area
!--------------------------------------------------------------------
if (tmask(i,j,iblk)) &
call icepack_aggregate(ncat = ncat, &
aicen = aicen(i,j,:,iblk), &
call icepack_aggregate(aicen = aicen(i,j,:,iblk), &
trcrn = trcrn(i,j,1:ntrcr,:,iblk), &
vicen = vicen(i,j,:,iblk), &
vsnon = vsnon(i,j,:,iblk), &
Expand All @@ -559,7 +558,6 @@ subroutine ice_prescribed_phys
vice = vice (i,j, iblk), &
vsno = vsno (i,j, iblk), &
aice0 = aice0(i,j, iblk), &
ntrcr = ntrcr, &
trcr_depend = trcr_depend(1:ntrcr), &
trcr_base = trcr_base(1:ntrcr,:), &
n_trcr_strata = n_trcr_strata(1:ntrcr), &
Expand Down
4 changes: 1 addition & 3 deletions cicecore/drivers/nuopc/cmeps/ice_prescribed_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,7 @@ subroutine ice_prescribed_phys()
!--------------------------------------------------------------------
! compute aggregate ice state and open water area
!--------------------------------------------------------------------
call icepack_aggregate(ncat = ncat, &
aicen = aicen(i,j,:,iblk), &
call icepack_aggregate(aicen = aicen(i,j,:,iblk), &
trcrn = trcrn(i,j,1:ntrcr,:,iblk), &
vicen = vicen(i,j,:,iblk), &
vsnon = vsnon(i,j,:,iblk), &
Expand All @@ -456,7 +455,6 @@ subroutine ice_prescribed_phys()
vice = vice (i,j, iblk), &
vsno = vsno (i,j, iblk), &
aice0 = aice0(i,j, iblk), &
ntrcr = ntrcr, &
trcr_depend = trcr_depend(1:ntrcr), &
trcr_base = trcr_base(1:ntrcr,:), &
n_trcr_strata = n_trcr_strata(1:ntrcr), &
Expand Down

0 comments on commit 68b2610

Please sign in to comment.