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 2104 for branches/DEV_r2006_merge_TRA_TRC/NEMO/OPA_SRC/DIA/diaar5.F90 – NEMO

Ignore:
Timestamp:
2010-09-17T14:35:46+02:00 (14 years ago)
Author:
cetlod
Message:

update DEV_r2006_merge_TRA_TRC according to review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DEV_r2006_merge_TRA_TRC/NEMO/OPA_SRC/DIA/diaar5.F90

    r2082 r2104  
    44   !! AR5 diagnostics 
    55   !!====================================================================== 
    6    !! History : 3.2  !  2009-11  (S. Masson)  Original code 
     6   !! History :  3.2  !  2009-11  (S. Masson)  Original code 
     7   !!            3.3  !  2010-10  (C. Ethe, G. Madec) reorganisation of initialisation phase + merge TRC-TRA 
    78   !!---------------------------------------------------------------------- 
    89#if defined key_diaar5 
     
    1011   !!   'key_diaar5'  :                           activate ar5 diagnotics 
    1112   !!---------------------------------------------------------------------- 
    12    !!   exa_mpl       : liste of module subroutine (caution, never use the 
    13    !!   exa_mpl_init  : name of the module for a routine) 
    14    !!   exa_mpl_stp   : Please try to use 3 letter block for routine names 
     13   !!   dia_ar5       : AR5 diagnostics 
     14   !!   dia_ar5_init  : initialisation of AR5 diagnostics 
    1515   !!---------------------------------------------------------------------- 
    1616   USE oce            ! ocean dynamics and active tracers  
     
    3737#  include "domzgr_substitute.h90" 
    3838   !!---------------------------------------------------------------------- 
    39    !! NEMO/OPA 3.2 , LOCEAN-IPSL (2009)  
    40    !! $Id$  
     39   !! NEMO/OPA 3.3 , LOCEAN-IPSL (2010)  
     40   !! $Id$ 
    4141   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    4242   !!---------------------------------------------------------------------- 
     
    4848      !!                    ***  ROUTINE dia_ar5  *** 
    4949      !! 
    50       !! ** Purpose :   Brief description of the routine 
    51       !! 
    52       !! ** Method  :   description of the methodoloy used to achieve the 
    53       !!                objectives of the routine. Be as clear as possible! 
    54       !! 
    55       !! ** Action  : - first action (share memory array/varible modified 
    56       !!                in this routine 
    57       !!              - second action ..... 
    58       !!              - ..... 
    59       !! 
    60       !! References :   Author et al., Short_name_review, Year 
    61       !!                Give references if exist otherwise suppress these lines 
     50      !! ** Purpose :   compute and output some AR5 diagnostics 
     51      !! 
    6252      !!---------------------------------------------------------------------- 
    6353      INTEGER, INTENT( in ) ::   kt   ! ocean time-step index 
     
    155145      !!                  ***  ROUTINE dia_ar5_init  *** 
    156146      !!                    
    157       !! ** Purpose :   initialization of .... 
    158       !! 
    159       !! ** Method  :   blah blah blah ... 
    160       !! 
    161       !! ** input   :   Namlist namexa 
    162       !! 
    163       !! ** Action  :   ...   
     147      !! ** Purpose :   initialization for AR5 diagnostic computation 
     148      !! 
    164149      !!---------------------------------------------------------------------- 
    165150      INTEGER  ::   inum 
     
    206191   !!   Default option :                                         NO diaar5 
    207192   !!---------------------------------------------------------------------- 
    208  
    209193   LOGICAL, PUBLIC, PARAMETER :: lk_diaar5 = .FALSE.   ! coupled flag 
    210  
    211194CONTAINS 
    212  
     195   SUBROUTINE dia_ar5_init    ! Dummy routine 
     196   END SUBROUTINE dia_ar5_init 
    213197   SUBROUTINE dia_ar5( kt )   ! Empty routine 
    214       INTEGER, INTENT( in ) ::   kt      ! ocean time-step index 
     198      INTEGER ::   kt 
    215199      WRITE(*,*) 'dia_ar5: You should not have seen this print! error?', kt 
    216200   END SUBROUTINE dia_ar5 
Note: See TracChangeset for help on using the changeset viewer.