Skip to content

Commit

Permalink
fix doxygen line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Dussin authored and Raphael Dussin committed Jul 30, 2024
1 parent dbf7860 commit b547dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parameterizations/lateral/MOM_internal_tides.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1303,9 +1303,9 @@ subroutine itidal_lowmode_loss(G, GV, US, CS, Nb, Rho_bot, Ub, En, TKE_loss_fixe

! Calculate TKE loss rate; units of [H Z2 T-3 ~> W m-2] here.
if (GV%Boussinesq .or. GV%semi_Boussinesq) then
TKE_loss_tot = q_itides * GV%RZ_to_H * GV%Z_to_H * TKE_loss_fixed(i,j) * Nb(i,j) * Ub(i,j,fr,m)**2
TKE_loss_tot = q_itides * GV%RZ_to_H*GV%Z_to_H*TKE_loss_fixed(i,j)*Nb(i,j)*Ub(i,j,fr,m)**2
else
TKE_loss_tot = q_itides * (GV%RZ_to_H * GV%RZ_to_H * Rho_bot(i,j)) * TKE_loss_fixed(i,j) * Nb(i,j) * Ub(i,j,fr,m)**2
TKE_loss_tot = q_itides * (GV%RZ_to_H*GV%RZ_to_H*Rho_bot(i,j))*TKE_loss_fixed(i,j)*Nb(i,j)*Ub(i,j,fr,m)**2
endif

! Update energy remaining (this is a pseudo implicit calc)
Expand Down

0 comments on commit b547dff

Please sign in to comment.