Skip to content

Commit c0f40e2

Browse files
committed
Streaming filter
Bug fix.
1 parent f84da6a commit c0f40e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parameterizations/lateral/MOM_streaming_filter.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ subroutine Filt_accum(u, u1, grid, Time, US, CS)
125125
CS%s1_v(i,j) = c1 * CS%u1_v(i,j) + CS%s1_v(i,j)
126126
CS%u1_v(i,j) = -c1 * (CS%s1_v(i,j) - CS%a * u(i,j)) + c2 * CS%u1_v(i,j)
127127
enddo; enddo
128-
u1 => CS%u1_h
128+
u1 => CS%u1_v
129129
case default
130130
call MOM_error(FATAL, "MOM_streaming_filter: horizontal grid not supported")
131131
end select

0 commit comments

Comments
 (0)