Skip to content

Commit

Permalink
Fixing the whalo troubles for grids that are 2 wide/long.
Browse files Browse the repository at this point in the history
  • Loading branch information
kshedstrom committed Nov 2, 2023
1 parent 9bb4cd9 commit 6d9c2c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/MOM.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3013,10 +3013,10 @@ subroutine initialize_MOM(Time, Time_init, param_file, dirs, CS, &
call cpu_clock_begin(id_clock_pass_init)
call create_group_pass(tmp_pass_uv_T_S_h, CS%u, CS%v, G%Domain)
if (use_temperature) then
call create_group_pass(tmp_pass_uv_T_S_h, CS%tv%T, G%Domain, halo=3)
call create_group_pass(tmp_pass_uv_T_S_h, CS%tv%S, G%Domain, halo=3)
call create_group_pass(tmp_pass_uv_T_S_h, CS%tv%T, G%Domain, halo=CS%cont_stencil)
call create_group_pass(tmp_pass_uv_T_S_h, CS%tv%S, G%Domain, halo=CS%cont_stencil)
endif
call create_group_pass(tmp_pass_uv_T_S_h, CS%h, G%Domain, halo=3)
call create_group_pass(tmp_pass_uv_T_S_h, CS%h, G%Domain, halo=CS%cont_stencil)
call do_group_pass(tmp_pass_uv_T_S_h, G%Domain)
call cpu_clock_end(id_clock_pass_init)

Expand Down

0 comments on commit 6d9c2c1

Please sign in to comment.