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 834 for trunk/NEMO/LIM_SRC_3/limtrp.F90 – NEMO

Ignore:
Timestamp:
2008-03-07T18:11:35+01:00 (16 years ago)
Author:
ctlod
Message:

Clean comments and useless lines, see ticket:#72

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC_3/limtrp.F90

    r825 r834  
    66#if defined key_lim3 
    77   !!---------------------------------------------------------------------- 
    8    !!   'key_lim3' :                                   LIM sea-ice model 
     8   !!   'key_lim3'                                      LIM3 sea-ice model 
    99   !!---------------------------------------------------------------------- 
    1010   !!   lim_trp      : advection/diffusion process of sea ice 
     
    2626   USE lib_mpp 
    2727   USE par_ice 
    28    USE limicepoints 
    2928 
    3029   IMPLICIT NONE 
     
    5049#  include "vectopt_loop_substitute.h90" 
    5150   !!---------------------------------------------------------------------- 
    52    !!   LIM 2.0,  UCL-LOCEAN-IPSL (2005) 
     51   !!   LIM 3.0,  UCL-ASTR-LOCEAN-IPSL (2008) 
    5352   !! $Header: /home/opalod/NEMOCVSROOT/NEMO/LIM_SRC/limtrp.F90,v 1.5 2005/03/27 18:34:42 opalod Exp $ 
    5453   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt 
     
    7574      !!--------------------------------------------------------------------- 
    7675      !! * Local Variables 
    77       INTEGER  ::   ji, jj, jk, jl, index, layer, &  ! dummy loop indices 
     76      INTEGER  ::   ji, jj, jk, jl, layer, &  ! dummy loop indices 
    7877                    initad           ! number of sub-timestep for the advection 
    7978      INTEGER  ::   ji_maxu, ji_maxv, jj_maxu, jj_maxv 
     
    8180      REAL(wp) ::  &                               
    8281         zindb  ,  & 
    83          zacrith, & 
    84          zindsn , & 
    85          zindic , & 
    86          zusvosn, & 
    87          zusvoic, & 
    88          zignm  , & 
    89          zindhe , & 
    90          zvbord , & 
    91          zcfl   , & 
    92          zusnit , & 
    93          zrtt, ztsn, ztic1, ztic2, zsal, zage, & 
    94          zq, zbigval, ze1, ze2, ze, & 
     82         zindsn ,  & 
     83         zindic ,  & 
     84         zusvosn,  & 
     85         zusvoic,  & 
     86         zvbord ,  & 
     87         zcfl   ,  & 
     88         zusnit ,  & 
     89         zrtt, zsal, zage, & 
     90         zbigval, ze, & 
    9591         zmaxu, zmaxv 
    9692 
     
    10197      REAL(wp), DIMENSION(jpi,jpj,jpl):: &  ! temporary workspace 
    10298         zs0ice, zs0sn, zs0a   ,         & 
    103          zs0c0 , zs0c1 , zs0c2 ,         & 
     99         zs0c0 ,                         & 
    104100         zs0sm , zs0oi 
    105101 
     
    554550         END DO ! jl 
    555551 
    556 !-----------------------------------------------------------------------------! 
    557 ! 6) Correct age  
    558 !-----------------------------------------------------------------------------! 
    559  
    560 !        DO jl = 1, jpl 
    561 !           DO jj = 1, jpj 
    562 !              DO ji = 1, jpi 
    563 !                 IF (old_a_i(ji,jj,jl).eq.0.00) THEN 
    564 !                     o_i(ji,jj,jl) = MAX( MIN( rdt_ice*float(numit)/86400.0, o_i(ji,jj,jl) ), 0.0 ) 
    565 !                 ENDIF 
    566 !              END DO 
    567 !           END DO 
    568 !        END DO 
    569  
    570  
    571552      ENDIF 
    572553 
Note: See TracChangeset for help on using the changeset viewer.