Skip to content

Commit

Permalink
Simple logic fix for time interpolation of boundary nodes at the end …
Browse files Browse the repository at this point in the history
…of W3XYPFSNIMP. (#1005)
  • Loading branch information
dpzimmer authored May 5, 2023
1 parent 7229a4c commit a09335e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/src/w3profsmd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ SUBROUTINE W3XYPFSNIMP ( ISP, C, LCALC, RD10, RD20, DT, AC)
DO IBI=1, NBI
IP = MAPSF(ISBPI(IBI),1)
AC(IP) = ( RD1*BBPI0(ISP,IBI) + RD2*BBPIN(ISP,IBI) ) &
*IOBPA(IP)*(1-IOBPD(ITH,IP)) / CG(IK,ISBPI(IBI)) * CLATS(ISBPI(IBI))
*IOBPA(IP)*IOBPD(ITH,IP) / CG(IK,ISBPI(IBI)) * CLATS(ISBPI(IBI))
END DO
END IF

Expand Down

0 comments on commit a09335e

Please sign in to comment.