Changes between Initial Version and Version 1 of Ticket #440


Ignore:
Timestamp:
07/01/10 03:44:33 (14 years ago)
Author:
arango
Comment:

Yes, good catch. Thank you.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #440

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

    initial v1  
    1 In set_avg.F, subroutine set_avg_tile, line 103, there is a "USE mod_grid" statement inside an "#ifdef SOLVE3D" block. But later, beginning at line 150, there is a call to vorticity_tile in which several components of GRID(ng) are passed, some not inside an "#ifdef SOLVE3D" block. So compilation of this module fails when SOLVE3D is not defined.
     1In '''set_avg.F''', subroutine '''set_avg_tile''', line 103, there is a '''USE mod_grid''' statement inside an '''#ifdef SOLVE3D''' block. But later, beginning at line 150, there is a call to '''vorticity_tile''' in which several components of '''GRID(ng)''' are passed, some not inside an '''#ifdef SOLVE3D''' block. So compilation of this module fails when '''SOLVE3D''' is not defined.
    22
    3 The solution: move "USE mod_grid" outside the "#ifdef SOLVE3D" block.
     3The solution: move '''USE mod_grid''' outside the '''#ifdef SOLVE3D''' block.