New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 335 for trunk/NEMO/TOP_SRC/trcdia.F90 – NEMO

Ignore:
Timestamp:
2005-11-14T13:08:42+01:00 (18 years ago)
Author:
opalod
Message:

nemo_v1_update_023 : CE + RB + CT : new evolution of modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/TOP_SRC/trcdia.F90

    r274 r335  
    77   !!========================================================================== 
    88   !!  TOP 1.0,  LOCEAN-IPSL (2005) 
    9    !! $Header$ 
    10    !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt 
    119   !!---------------------------------------------------------------------- 
    12       !!---------------------------------------------------------------------- 
    13       !! * Modules used 
    14       !! ============== 
     10#if defined key_passivetrc 
     11   !!---------------------------------------------------------------------- 
     12   !! * Modules used 
     13  
    1514   USE trcdit 
    1615 
     
    2524CONTAINS 
    2625 
    27 SUBROUTINE trc_dia(kt,kindic)   
    28    !!=========================================================================================== 
    29    !! 
    30    !!                       ROUTINE trcdii_wr 
    31    !!=========================================================================================== 
     26   SUBROUTINE trc_dia(kt,kindic)   
     27      !!=========================================================================================== 
     28      !! 
     29      !!                       ROUTINE trcdii_wr 
     30      !!=========================================================================================== 
    3231 
    33        INTEGER, INTENT( in ) :: kt, kindic 
     32      INTEGER, INTENT( in ) :: kt, kindic 
    3433 
    35    ! outputs for tracer concentration 
    36    ! --------------------------------  
     34      ! outputs for tracer concentration 
     35      ! --------------------------------  
    3736 
    3837      CALL trcdit_wr(kt,kindic) 
     
    4039#if defined key_trc_diatrd 
    4140 
    42    ! outputs for dynamical trends 
    43    ! ---------------------------- 
     41      ! outputs for dynamical trends 
     42      ! ---------------------------- 
    4443 
    4544      CALL trcdid_wr(kt,kindic) 
     
    4847#if defined key_trc_diaadd 
    4948 
    50    ! outputs for additional arrays 
    51    ! ----------------------------- 
     49      ! outputs for additional arrays 
     50      ! ----------------------------- 
    5251 
    5352      CALL trcdii_wr(kt,kindic) 
     
    5655#if defined key_trc_diabio 
    5756 
    58    ! outputs for biological trends 
    59    ! ----------------------------- 
     57      ! outputs for biological trends 
     58      ! ----------------------------- 
    6059 
    6160      CALL trcdib_wr(kt,kindic) 
     
    6362#endif 
    6463 
    65       END SUBROUTINE trc_dia 
     64   END SUBROUTINE trc_dia 
    6665 
    67 END MODULE trcdia  
     66#else 
     67   !!====================================================================== 
     68   !!  Empty module : No passive tracer 
     69   !!====================================================================== 
     70CONTAINS 
     71   SUBROUTINE trc_dia 
     72       
     73   END SUBROUTINE trc_dia    
     74#endif 
     75 
     76END MODULE trcdia 
Note: See TracChangeset for help on using the changeset viewer.