Skip to content

Commit

Permalink
Jira NOAA-EMC#122 Fix error that grabs incorrect EL level for TAUX/TA…
Browse files Browse the repository at this point in the history
…UY calculation in CALTAU.f
  • Loading branch information
Tracy committed Aug 1, 2019
1 parent df8752c commit 0a1576b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comupp/src/unipost/CALTAU.f
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ SUBROUTINE CALTAU(TAUX,TAUY)
!
! COMPUTE U (EGRIDU) AND V (EGRIDV) WIND STRESSES.
!
ELSQR = EL(I,J,LMHK)*EL(I,J,LMHK)
ELSQR = EL(I,J,LMHK-1)*EL(I,J,LMHK-1)
TAUX(I,J) = RHO*ELSQR*DELUDZ*DELUDZ
TAUY(I,J) = RHO*ELSQR*DELVDZ*DELVDZ

Expand Down

0 comments on commit 0a1576b

Please sign in to comment.