Skip to content

Commit

Permalink
Merge pull request #112 from raphaeldussin/user/rd/fix_mask_bug
Browse files Browse the repository at this point in the history
slow/fast mask bug fix
  • Loading branch information
Hallberg-NOAA authored Mar 9, 2020
2 parents acef10e + 0e7b3dc commit 674739f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ice_model.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2723,7 +2723,7 @@ subroutine ice_model_init(Ice, Time_Init, Time, Time_step_fast, Time_step_slow,
Ice%fCS%Rad%t_skin(:,:,:) = 0.0
elseif (do_mask_restart) then
do k=1,CatIce
Ice%fCS%Rad%t_skin(:,:,k) = Ice%fCS%Rad%t_skin(:,:,k) * sG%mask2dT(:,:)
Ice%fCS%Rad%t_skin(:,:,k) = Ice%fCS%Rad%t_skin(:,:,k) * fG%mask2dT(:,:)
enddo
endif
if (init_rough) then
Expand Down

0 comments on commit 674739f

Please sign in to comment.