Skip to content

Commit

Permalink
Fix dimensional scaling error
Browse files Browse the repository at this point in the history
  • Loading branch information
iangrooms committed May 2, 2024
1 parent bee7499 commit fb2b433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ALE/MOM_ALE.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ subroutine ALE_remap_velocities(CS, G, GV, h_old_u, h_old_v, h_new_u, h_new_v, u
do k=1,nz
v2h_tot = v2h_tot + h2(k) * (v_tgt(k)**2)
enddo
dv2h_tot(I,j) = GV%Rho0 * GV%H_to_m * v2h_tot / dt
dv2h_tot(I,j) = GV%Rho0 * v2h_tot / dt
endif

if ((CS%BBL_h_vel_mask > 0.0) .and. (CS%h_vel_mask > 0.0)) then
Expand Down

0 comments on commit fb2b433

Please sign in to comment.