-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partition number checking failing in ww3_ounf #2
Comments
This affects the ALLOCATE statement at line 384 in a similar fashion; the TABIPART array needs to be 1 element larger:
|
ukmo-ccbunney
referenced
this issue
in ukmo-waves/WW3
Mar 28, 2019
…g for zeroth wind partition. See Issue #2.
Pull request #3 raised. |
ajhenrique
pushed a commit
that referenced
this issue
Apr 4, 2019
Merging hotfix branch ukmo-waves:HF_ounfpart -> NOAA-EMC/WW3:HF_ounfpart: * Bugfix in ww3_ounf.ftn: NBIPART check against NOSWLL was not accouting for zeroth wind partition. See Issue #2. * Updated comments * Moved broken ww3_grid*.nml files into subdirectory within input dir. Updated info to stress that test needs to be run with -N flag.
The issue has been solved. To be reintegrated to the NOAA-EMC master pending regtests. |
ajhenrique
added a commit
that referenced
this issue
Apr 19, 2019
Merging Hotfixes branch HF_ounfpart into the WW3 master. * Bugfix in ww3_ounf.ftn: NBIPART check against NOSWLL was not accouting for zeroth wind partition. See Issue #2. * Updating link.wcoss_phase2 for grib compile, removing !$ lines in ww3_uprstr that broke compilation of codes with OMPH OMPG switch flags, added new global wave model switch. Added option for writing to fixed netcdf gridded output file when using NCO switch (the issue will be fixed more adequately in v7 following Issue #8). * DB1 depth-breaking_bugfix: added proper scaling coefficients for radian freq. [radHz]. See issue #7. Merge will lead to v6.07.1, tag and release will be updated accordingly.
ajhenrique
added a commit
that referenced
this issue
Apr 23, 2019
HF ounfpart integrates hotfixes from the NCEP/NOAA-EMC auth repo and the trusted repos UKMO and ERDC. The following hotfixes are implemented with this pull request: * Bugfix in ww3_ounf.ftn: NBIPART check against NOSWLL was not accouting for zeroth wind partition. See Issue #2. * Updating link.wcoss_phase2 for grib compile, removing !$ lines in ww3_uprstr that broke compilation of codes with OMPH OMPG switch flags, added new global wave model switch. * Added option for writing to fixed netcdf gridded output file when using NCO switch (the issue will be fixed more adequately in v7 following Issue #8). * DB1 depth-breaking_bugfix: added proper scaling coefficients for radian freq. [radHz]. See issue #7 . Hotfixes were tested using the full regression testing matrix at NCEP which resulted in differences only in regtests wher DB1 was employed, as expected.
CarstenHansen
added a commit
to CarstenHansen/WW3
that referenced
this issue
Jul 1, 2019
Bug #1: If namelists input files are used, a code block is not reached that writes info to NDSO about the last boundary file: "File nestI.ww3 Number of points .." (after the last line I == NML_OUTBND_COUNT%N_LINE). Bug NOAA-EMC#2: A code line "WRITE(NDSS,'(A)') NML_OUTBND_LINE(I-1)" writes garbage to file ww3_grid.scratch, because the NML_OUTBND_LINE elements are not strings. Implication: Affects the user's ability to control the configuration. Solution bug #1: Let NPO=0 mark that we have got the info for the last output b.c. file, and the do-loop over outbound lines will exit immediately after the block that writes the info. Solution bug NOAA-EMC#2: Ommit the write statement. The file ww3_grid.scratch isn't used when namelists input files are used. Therefore, also prepend a condition "IF (.NOT. FLGNML)" to the two statements "OPEN ( NDSS,FILE=TRIM(FNMPRE)//'ww3_grid.scratch',..." and "CLOSE ( NDSS,...". Remaining issue: Update manual section "4.4.3 The grid preprocessor"
Closed
JessicaMeixner-NOAA
referenced
this issue
in JessicaMeixner-NOAA/WW3
Dec 2, 2021
Merge CMake regtests branch
qingli411
pushed a commit
to qingli411/WW3
that referenced
this issue
Apr 30, 2022
Add new cap options to CMake
qingli411
pushed a commit
to qingli411/WW3
that referenced
this issue
May 7, 2022
updates to ww3 cap code for ww3/cice coupling
This was referenced Aug 23, 2022
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A bug in ww3_ounf is causing the netcdf gridded post-processing wrapper to fail. The line
IF(NBIPART .GT. NOSWLL) THEN
needs to be changed to
IF(NBIPART .GT. NOSWLL+1) THEN
this reflects the fact NOSWLL sets the number of swell partitions in addition to the windsea partition thus a total of NOSWLL+1 partitions.
@aliabdolali @ajhenrique @ukmo-ccbunney
The text was updated successfully, but these errors were encountered: