Skip to content

Commit

Permalink
fix recent bug preventing compiling (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
apcraig authored Nov 15, 2021
1 parent bfdef30 commit 58c20f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cicecore/cicedynB/dynamics/ice_dyn_shared.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@ subroutine strain_rates_T (nx_block, ny_block, &

! shearing strain rate = 2*e_12
shearT = (dxT(i,j)**2)*(uvelN(i,j)/dxN(i,j) - uvelN(i,j-1)/dxN(i,j-1)) &
+ (dyT(i,j)**2)*(vvelE(i,j)/dyN(i,j) - vvelE(i-1,j)/dyE(i-1,j))
+ (dyT(i,j)**2)*(vvelE(i,j)/dyE(i,j) - vvelE(i-1,j)/dyE(i-1,j))

! Delta (in the denominator of zeta, eta)
DeltaT = sqrt(divT**2 + e_factor*(tensionT**2 + shearT**2))
Expand Down

0 comments on commit 58c20f7

Please sign in to comment.