You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a potential source of uninitialised value errors in the model as S and D (the source and diagonal arrays) are INTENT(OUT) and not initialised prior to the potential return from the function:
There is a test in the Depth Induced Breaking source term (W3SDB1) that returns immediately from the subroutine if there is zero(ish) energy:
WW3/model/src/w3sdb1md.F90
Lines 236 to 240 in 8eb3596
This is a potential source of uninitialised value errors in the model as
S
andD
(the source and diagonal arrays) areINTENT(OUT)
and not initialised prior to the potential return from the function:WW3/model/src/w3sdb1md.F90
Line 208 in 8eb3596
The initisliastion of
S
andD
should be moved above the return statement.The text was updated successfully, but these errors were encountered: