Skip to content
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

Hotfix/hf master #45

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion model/aux/bash/ww3_ounf_inp2nml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ cat >> $nmlfile << EOF
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
7 changes: 6 additions & 1 deletion model/bin/make_makefile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
shared mpp mpiexp thread GSE prop \
stress s_ln source stab s_nl snls s_bot s_db miche s_tr s_bs \
dstress s_ice s_is reflection s_xx \
wind windx rwind curr currx mgwind mgprop mggse \
wind windx wcor rwind curr currx mgwind mgprop mggse \
subsec tdyn dss0 pdif tide refrx ig rotag arctic nnt mprf \
cou oasis agcm ogcm igcm trknc setup pdlib memck uost
do
Expand Down Expand Up @@ -247,6 +247,11 @@
windx ) TY='one'
ID='wind interpolation in space'
OK='WNX0 WNX1 WNX2' ;;
#sort:wcor:
wcor ) TY='upto1'
ID='wind speed correction'
TS='WCOR'
OK='WCOR' ;;
#sort:rwind:
rwind ) TY='upto1'
ID='wind vs. current definition'
Expand Down
5 changes: 4 additions & 1 deletion model/ftn/w3triamd.ftn
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,10 @@ CONTAINS
DO IBC = 1, N_OUTSIDE_BOUNDARY
IX = OUTSIDE_BOUNDARY(IBC)
!write(*,*) 'TEST1', IX, TMPSTA(1,IX), CCON(IX), COUNTCON(IX), ZBIN(1,IX), ZLIM
IF (IX.NE.0) THEN ! There was a bug in the mesh conversion, OUTSIDE_BOUNDARY(IBC) should not be zero

! OUTSIDE_BOUNDARY(IBC) is defined over the full nodes NODES indexes
! whereas TMPSTA and ZBIN are defined over the clean up list of nodes NX
IF ((IX.NE.0).AND.(IX.LE.NX)) THEN
IF ((TMPSTA(1,IX).EQ.1).AND.(STATUS(IX).EQ.0) &
.AND.(ZBIN(1,IX).LT.ZLIM)) TMPSTA(1,IX)=2
END IF
Expand Down
19 changes: 10 additions & 9 deletions model/ftn/ww3_ounf.ftn
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,9 @@
IOUT, S3, IRET, HASNC4, &
NBIPART, CNTIPART, NCVARTYPE, IPART, &
RTDNX, RTDNY
INTEGER :: TOUT(2), TDUM(2), &
NCIDS(NOGRP,NGRPP,6), STOPDATE(8)
INTEGER :: TOUT(2), TDUM(2), STOPDATE(8)
!
INTEGER, ALLOCATABLE :: TABIPART(:)
INTEGER, ALLOCATABLE :: TABIPART(:), NCIDS(:,:,:)
!
!/S INTEGER, SAVE :: IENT = 0
!
Expand Down Expand Up @@ -383,6 +382,7 @@
! Alternative processing of TABIPART to capture requests
! greater than NOSWLL (C.Bunney):
ALLOCATE(TABIPART(NOSWLL + 1))
ALLOCATE(NCIDS(NOGRP,NGRPP,NOSWLL + 1))
NBIPART=0
DO I=1,30
IF(STRINGIPART(I:I) .EQ. ' ') CYCLE
Expand Down Expand Up @@ -874,17 +874,21 @@

! 1.2 Sets the date as ISO8601 convention
! S3 defines the number of characters in the date for the filename
! S3=4-> YYYY, S3=6 -> YYYYMM, S3=10 -> YYYYMMDDHH
! S3=0 -> field, S3=4-> YYYY, S3=6 -> YYYYMM, S3=10 -> YYYYMMDDHH
! Setups min and max date format
IF (S3.LT.4) S3=4
IF (S3.GT.0 .AND. S3.LT.4) S3=4
IF (S3.GT.10) S3=10
!
! Defines the format of FILETIME
S5=S3-8
S4=S3
OLDTIMEID=TIMEID
! if S3=>nodate then filetime='field'
IF (S3.EQ.0) THEN
S4=5
TIMEID="field"
! if S3=>YYYYMMDDHH then filetime='YYYYMMDDTHHZ'
IF (S3.EQ.10) THEN
ELSE IF (S3.EQ.10) THEN
S4=S4+2 ! add chars for ISO8601 : day T hours Z
WRITE(FORMAT1,'(A,I1,A,I1,A)') '(I8.8,A1,I',S5,'.',S5,',A1)'
WRITE (TIMEID,FORMAT1) TIME(1), 'T', &
Expand Down Expand Up @@ -3398,9 +3402,6 @@
FNAMENC(S1+S2+1:S1+S2+3) = '.nc'
FNAMENC(S1+S2+4:S1+S2+6) = ' '

!/NCO ! For NCEP application, requires fixed netcdf file name
!/NCO FNAMENC='ww3.gridded.nc'

! If the flag frequency is .TRUE., defines the fourth dimension
IF (FLFRQ) THEN
UNITVAR(:)=UNITS
Expand Down
1 change: 0 additions & 1 deletion model/ftn/ww3_shel.ftn
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,6 @@
ELSE IF ( J .EQ. 6 ) THEN
! IPRT: IX0, IXN, IXS, IY0, IYN, IYS
CALL NEXTLN ( COMSTR , NDSI , NDSEN )
READ (NDSI,*,END=2001,ERR=2002) IPRT, PRTFRM
!/DEBUGINIT write(740+IAPROC,*), 'Before reading IPRT'
!/DEBUGINIT write(740+IAPROC,*), 'Before read 2002, case 10'
READ (NDSI,*) IPRT, PRTFRM
Expand Down
2 changes: 1 addition & 1 deletion model/inp/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion model/nml/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTART = '19000101 000000' ! Stop date for the output field
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_01/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_02/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_03/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_04/input/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_04/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_05/input/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_05/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_06/input/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_06/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_07/input/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_07/input/ww3_ounf_rect1.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_07/input/ww3_ounf_zcmpl.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_highres_multi/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_highres_multi/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_highres_shel/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_highres_shel/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_highres_shel_IC1/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_highres_shel_IC1/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_lowres_multi/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_lowres_multi/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_lowres_shel/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_lowres_shel/ww3_ounf.nml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! FIELD%TIMESTRIDE = '0' ! Time stride for the output field
! FIELD%TIMESTOP = '29001231 000000' ! Stop date for the output field
! FIELD%TIMECOUNT = '1000000000' ! Number of time steps
! FIELD%TIMESPLIT = 6 ! [4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%TIMESPLIT = 6 ! [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
! FIELD%LIST = 'unset' ! List of output fields
! FIELD%PARTITION = '0 1 2 3' ! List of wave partitions ['0 1 2 3 4 5']
! FIELD%SAMEFILE = T ! All the variables in the same file [T|F]
Expand Down
2 changes: 1 addition & 1 deletion regtests/mww3_test_08/i_lowres_shel_IC1/ww3_ounf.inp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$
$ -------------------------------------------------------------------- $
$ File prefix
$ number of characters in date [4(yearly),6(monthly),8(daily),10(hourly)]
$ number of characters in date [0(nodate),4(yearly),6(monthly),8(daily),10(hourly)]
$ IX and IY ranges [regular:IX NX IY NY, unstructured:IP NP 1 1]
$
ww3.
Expand Down
Loading