Changes between Initial Version and Version 2 of Ticket #510


Ignore:
Timestamp:
05/04/11 17:41:35 (13 years ago)
Author:
arango
Comment:

Yes, great catch. I missed this one. Thank you.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #510

    • Property ResolutionFixed
    • Property Status newclosed
  • Ticket #510 – Description

    initial v2  
    1 If I run the model using a NRREC value different than 0, the subroutine def_his() always expects an existing NetCDF history and it results in:
     1If I run the model using a '''NRREC''' value different than 0, the subroutine '''def_his()''' always expects an existing NetCDF history and it results in:
    22
    33{{{
     
    99}}}
    1010
    11 The problem seems due to the missing initialization of the parameter idefHIS in Modules/mod_ncparam.F. Please, note that in releases prior to 553 this parameter was initialized to -1.
     11The problem seems due to the missing initialization of the parameter '''idefHIS''' in '''Modules/mod_ncparam.F'''. Please, note that in releases prior to '''553''' this parameter was initialized to '''-1'''.
    1212
    13 Looking at Nonlinear/output.F the following lines of code are never executed due to the limiting condition over idefHIS (which is never assigned, hence it's always 0):
     13Looking at Nonlinear/output.F the following lines of code are never executed due to the limiting condition over '''idefHIS''' (which is never assigned, hence it's always 0):
    1414
    1515{{{
     
    2222}}}
    2323
    24 In the same subroutine the following if/then construct results in the assignment of NewFile which will be always .FALSE. whenever NRREC is not equal to 0:
     24In the same subroutine the following if/then construct results in the assignment of '''!NewFile''' which will be always '''.FALSE.''' whenever '''NRREC''' is not equal to 0:
    2525
    2626{{{
     
    4444    99            END IF
    4545}}}
    46 As a workaround I re-introduced the initialization of at least the following two parameters inside Modules/mod_ncparam.F:
     46As a workaround I re-introduced the initialization of at least the following two parameters inside '''Modules/mod_ncparam.F''':
    4747
    4848{{{
     
    5353}}}
    5454
    55 This lets the first aforementioned block of code (output.F: line 77) to correctly set the idefHIS(ng) parameter and in the subsequent if/then construct the NewFile parameter is permitted to be .TRUE.
     55This lets the first aforementioned block of code ('''output.F''': line 77) to correctly set the '''idefHIS(ng)''' parameter and in the subsequent if/then construct the '''!NewFile''' parameter is permitted to be '''.TRUE.'''
    5656
    5757Thank you,