Changes between Initial Version and Version 1 of Ticket #668


Ignore:
Timestamp:
06/23/15 23:16:51 (9 years ago)
Author:
arango
Comment:

Thank you for reporting this problem and suggesting a good solution.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #668

    • Property ResolutionFixed
    • Property Status newclosed
  • 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))
     1After 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)''')
    22
    3 Lines 74-88 of check_multifile.F in ROMS/Utilities:
     3Lines 74-88 of '''check_multifile.F''' in ROMS/Utilities:
    44{{{
    55!  Set the appropriate file counter to use during initialization or
     
    2020}}}
    2121
    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.
     22If 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.
    2323
    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.
     24If 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.
    2525
    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.
     26Remove 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.