Changes between Initial Version and Version 1 of Ticket #269
- Timestamp:
- 01/22/09 18:34:40 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #269
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #269 – Description
initial v1 10 10 }}} 11 11 12 The problem seems to be that in ROMS/Nonlinear/get_idata.F at line 101, NTC(ng)(i.e. the number of tidal consttituents) is set to 012 The problem seems to be that in '''ROMS/Nonlinear/get_idata.F''' at line 101, '''NTC(ng)''' (i.e. the number of tidal consttituents) is set to 0 13 13 {{{ 14 14 IF (iic(ng).eq.0) THEN … … 25 25 and it never acquires any other value. (In my application it should be 1.) Therefore all the subsequent read requests return 0 data values. 26 26 27 As an ad hoc fix, setting NTC(ng) to 1 in get_idata.Fcauses sensible tidal forcing data to be read from the file27 As an ad hoc fix, setting '''NTC(ng)''' to 1 in '''get_idata.F''' causes sensible tidal forcing data to be read from the file 28 28 {{{ 29 29 GET_NGFLD - tidal period … … 34 34 (Min = 2.47094957E+00 Max = 5.79200999E+00) 35 35 }}} 36 I don't know how NTC(ng)should get its value, however.36 I don't know how '''NTC(ng)''' should get its value, however.