Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure binary identical restart files when using EAP #632

Merged
merged 2 commits into from
Sep 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
initialized all eap history variables to zero on land
  • Loading branch information
TillRasmussen committed Sep 10, 2021
commit 0d8dcac2421b6d38e2aa84ed63789e8a56f94473
15 changes: 11 additions & 4 deletions cicecore/cicedynB/dynamics/ice_dyn_eap.F90
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,18 @@ subroutine eap (dt)
do j = 1, ny_block
do i = 1, nx_block
if (icetmask(i,j,iblk)==0) then
if (tmask(i,j,iblk)) then
! structure tensor
a11_1(i,j,iblk) = p5
a11_2(i,j,iblk) = p5
a11_3(i,j,iblk) = p5
a11_4(i,j,iblk) = p5
a11_1(i,j,iblk) = p5
a11_2(i,j,iblk) = p5
a11_3(i,j,iblk) = p5
a11_4(i,j,iblk) = p5
else
a11_1(i,j,iblk) = c0
a11_2(i,j,iblk) = c0
a11_3(i,j,iblk) = c0
a11_4(i,j,iblk) = c0
endif
a12_1(i,j,iblk) = c0
a12_2(i,j,iblk) = c0
a12_3(i,j,iblk) = c0
Expand Down