Skip to content

Commit 43bda37

Browse files
committed
Clean-up after rebase
Fix a few small issues after rebasing onto MALI-Dev/develop
1 parent 6d73a85 commit 43bda37

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

components/mpas-albany-landice/src/Registry.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,6 +1227,7 @@ is the value of that variable from the *previous* time level!
12271227
/>
12281228
<var name="calvingThicknessFromThreshold" type="real" dimensions="nCells Time" units="m" time_levs="1"
12291229
description="thickness of ice that calves on a given timestep for only processes that generate calving based on a threshold. This includes mask calving, damage calving, iceberg and small island detection, and velocity speed limit."
1230+
/>
12301231
<var name="groundedCalvingThickness" type="real" dimensions="nCells Time" units="m" time_levs="1"
12311232
description="thickness of grounded ice that calves on a given timestep (less than or equal to ice thickness)"
12321233
/>
@@ -1312,7 +1313,6 @@ is the value of that variable from the *previous* time level!
13121313
<var name="damageSource" type="real" dimensions="nCells Time" units="s^{-1}" time_levs="1"
13131314
description="damage source term"
13141315
/>
1315-
/>
13161316
<var name="basalWaterThickness" type="real" dimensions="nCells Time" units="m" time_levs="1"
13171317
description="thickness of basal water"
13181318
/>
@@ -1385,6 +1385,7 @@ is the value of that variable from the *previous* time level!
13851385
/>
13861386
<var name="dtFaceMeltingCFLratio" type="real" dimensions="Time" units="none" time_levs="1" default_value="0.0"
13871387
description="ratio of timestep being used to the maximum timestep calculated for the face-melting CFL condition. This metric can be used to assess the accuracy of the face-melting CFL calculation being lagged by a timestep."
1388+
/>
13881389
<var name="groundedFaceMeltingThickness" type="real" dimensions="nCells Time" units="m" time_levs="1"
13891390
description="Equivalent plan-view averaged thickness of grounded ice that melts on a given timestep from front ablation (less than or equal to ice thickness). Used in mass budget calculations."
13901391
/>

components/mpas-albany-landice/src/analysis_members/mpas_li_global_stats.F

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ subroutine li_compute_global_stats(domain, memberName, timeLevel, err)
208208
real (kind=RKIND), pointer :: iceThicknessMax, iceThicknessMin, iceThicknessMean
209209
real (kind=RKIND), pointer :: totalSfcMassBal, totalBasalMassBal
210210
real (kind=RKIND), pointer :: totalGroundedSfcMassBal, totalFloatingSfcMassBal
211-
real (kind=RKIND), pointer :: totalFaceMeltingFlux
212211
real (kind=RKIND), pointer :: totalGroundedBasalMassBal, totalFloatingBasalMassBal
213212
real (kind=RKIND), pointer :: totalGroundedCalvingFlux, totalFloatingCalvingFlux
214213
real (kind=RKIND), pointer :: totalFaceMeltingFlux, &

components/mpas-albany-landice/src/mode_forward/mpas_li_calving.F

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3765,7 +3765,7 @@ subroutine mask_calving(domain, err)
37653765
dCalvingThickness(:) = 0.0_RKIND
37663766
37673767
! update mask
3768-
call li_calculate_mask(meshPool, velocityPool, geometryPool, err_tmp)
3768+
call li_calculate_mask(meshPool, velocityPool, geometryPool, domain, err_tmp)
37693769
err = ior(err, err_tmp)
37703770
37713771
localMaskCellCount = 0

components/mpas-albany-landice/src/mode_forward/mpas_li_time_integration_fe.F

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ subroutine prepare_advection(domain, err)
281281
real (kind=RKIND), dimension(:,:), pointer :: layerNormalVelocity
282282
real (kind=RKIND), pointer :: calvingCFLdt, faceMeltingCFLdt
283283
real (kind=RKIND), dimension(:), pointer :: groundedToFloatingThickness
284-
real (kind=RKIND), pointer :: calvingCFLdt
285284
integer, pointer :: processLimitingTimestep
286285
integer, dimension(:), pointer :: edgeMask
287286

0 commit comments

Comments
 (0)