Skip to content

Commit 8628e1a

Browse files
committed
Fix typo in PR #106
Fixes typo in PR #106 that accidentally got merged.
1 parent c54c6db commit 8628e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2225,7 +2225,7 @@ subroutine ocean_connection_N(domain)
22252225
call mpas_pool_get_subpool(block % structs, 'hydro', hydroPool)
22262226
call mpas_pool_get_array(geometryPool, 'bedTopography', bedTopography)
22272227
call mpas_pool_get_array(hydroPool, 'effectivePressure', effectivePressure)
2228-
call mpas_pool_get_array(hydroPool, 'iceThicknessHydro', thickness)
2228+
call mpas_pool_get_array(hydroPool, 'thickness', thickness)
22292229
22302230
effectivePressure = rhoi * gravity * thickness - rhoi * gravity * max(0.0_RKIND, -1.0_RKIND * rhoo/rhoi * bedTopography)
22312231
effectivePressure = max(effectivePressure, 0.0_RKIND) ! This is just to zero out N in the open ocean to avoid confusion

0 commit comments

Comments
 (0)