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
In SUBROUTINE W3EXNC the argument NCIDS should then be declared as either: INTEGER, INTENT(INOUT) :: NCIDS(NOGRP,NGRPP,NOSWLL + 1)
or with an assumed shape (I think) as: INTEGER, INTENT(INOUT) :: NCIDS(:,:,:)
Close this issue, as the suggested bug fix was quickly incorporated by @ajhenrique in the feature PR #119 and thereafter merged into develop, commit 5ab4301
Indeed @CarstenHansen , after asking if you had mistakenly added that comment to another thread I noticed that change would benefit applications at NCEP where we have NOSLL = 3. Serendipity. Thank you.
I am trying to understand how output of different variables may be divided to individual NetCDF files and noticed this issue:
In ww3_ounf.ftn the list of possible individual NetCDF file ID's is allocated as:
WW3/model/ftn/ww3_ounf.ftn
Line 385 in 39d1fb7
In SUBROUTINE W3EXNC the argument
NCIDS
should then be declared as either:INTEGER, INTENT(INOUT) :: NCIDS(NOGRP,NGRPP,NOSWLL + 1)
or with an assumed shape (I think) as:
INTEGER, INTENT(INOUT) :: NCIDS(:,:,:)
The present code assumes
NOSWLL == 5
:WW3/model/ftn/ww3_ounf.ftn
Line 760 in 39d1fb7
The text was updated successfully, but these errors were encountered: