Changes between Initial Version and Version 1 of Ticket #637


Ignore:
Timestamp:
04/21/14 15:55:13 (10 years ago)
Author:
arango
Comment:

Yes, thank you for reporting this one. The impact of this bug is very minimal since the state variables were already masked. However, it is good to correct this. I can believe that the compilers didn't pick-up this one.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #637

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

    initial v1  
    1 not sure why this was not seen before. but most likely because the idiag index was not exceeded. There is a bug in step3d_uv, line 937 needs to be in an idiag loop the code now has:
    2 
     1Not sure why this was not seen before. But most likely because the '''idiag''' index was not exceeded. There is a bug in '''step3d_uv.F''', line 937 needs to be in an '''idiag''' loop the code now has:
     2{{{
    33# if defined DIAGNOSTICS_UV && defined MASKING
    44          DO k=1,N(ng)
     
    88          END DO
    99# endif
    10 
     10}}}
    1111but it really needs to be:
    1212
     13{{{
    1314# if defined DIAGNOSTICS_UV && defined MASKING
    1415          DO k=1,N(ng)
     
    2021          END DO
    2122# endif
    22 
    23 -john
     23}}}