Changes between Initial Version and Version 1 of Ticket #668
- Timestamp:
- 06/23/15 23:16:51 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #668
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #668 – Description
initial v1 1 After a restart, check_multifile picks the wrong BRY and FRC input files if the first file does not contain the data for the starting time (time(ng))1 After a restart, '''check_multifile''' picks the wrong '''BRY''' and '''FRC''' input files if the first file does not contain the data for the starting time ('''time(ng)''') 2 2 3 Lines 74-88 of check_multifile.Fin ROMS/Utilities:3 Lines 74-88 of '''check_multifile.F''' in ROMS/Utilities: 4 4 {{{ 5 5 ! Set the appropriate file counter to use during initialization or … … 20 20 }}} 21 21 22 If the restart time is greater than the TMIN of the first input file, ''IF (time(ng).ge.Tmin)'' THEN is TRUE, and the EXIT statement is triggered after the first input file is set to be read. However, if first input file doesn't contain time(ng) the first file will still be set. The model will produce an error while trying to read the input files because it can't find the data corresponding to time(ng)in the input file.22 If the restart time is greater than the '''TMIN''' of the first input file, '''IF (time(ng).ge.Tmin) THEN''' is TRUE, and the '''EXIT''' statement is triggered after the first input file is set to be read. However, if first input file doesn't contain '''time(ng)''' the first file will still be set. The model will produce an error while trying to read the input files because it can't find the data corresponding to '''time(ng)''' in the input file. 23 23 24 If you remove the EXIT statement, the other input files will also be checked and the last file that still has ''time(ng).ge. TMIN'' will be used.24 If you remove the '''EXIT''' statement, the other input files will also be checked and the last file that still has '''time(ng).ge. TMIN''' will be used. 25 25 26 Remove the "EXIT"from line 83 (for boundary multifile input) and line 156 (for forcing multifile input) and the model will pick the right input file, even after a restart.26 Remove the '''EXIT''' from line 83 (for boundary multifile input) and line 156 (for forcing multifile input) and the model will pick the right input file, even after a restart.