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 821 for branches/dev_002_LIM/NEMO/LIM_SRC/limthd_lac.F90 – NEMO

Ignore:
Timestamp:
2008-03-06T12:22:15+01:00 (16 years ago)
Author:
rblod
Message:

Change name of modules and subroutines for LIM2 with suffix _2, add albedo_2 and flxblk_2, see ticket #71

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_002_LIM/NEMO/LIM_SRC/limthd_lac.F90

    r719 r821  
    1 MODULE limthd_lac 
    2 #if defined key_ice_lim 
    3    !!====================================================================== 
    4    !!                       ***  MODULE limthd_lac   *** 
     1MODULE limthd_lac_2 
     2#if defined key_lim2 
     3   !!====================================================================== 
     4   !!                       ***  MODULE limthd_lac_2   *** 
    55   !!                lateral thermodynamic growth of the ice  
    66   !!====================================================================== 
    77 
    88   !!---------------------------------------------------------------------- 
    9    !!   lim_lat_acr    : lateral accretion of ice 
     9   !!   lim_lat_acr_2    : lateral accretion of ice 
    1010   !! * Modules used 
    1111   USE par_oce          ! ocean parameters 
    1212   USE phycst 
    13    USE ice_oce         ! ice variables 
    14    USE thd_ice 
    15    USE iceini 
    16    USE limistate  
     13   USE ice_oce          ! ice variables 
     14   USE thd_ice_2 
     15   USE iceini_2 
     16   USE limistate_2  
    1717      
    1818   IMPLICIT NONE 
     
    2020 
    2121   !! * Routine accessibility 
    22    PUBLIC lim_thd_lac     ! called by lim_thd 
     22   PUBLIC lim_thd_lac_2   ! called by lim_thd_2 
    2323 
    2424   !! * Module variables 
     
    3535CONTAINS 
    3636     
    37    SUBROUTINE lim_thd_lac( kideb, kiut ) 
     37   SUBROUTINE lim_thd_lac_2( kideb, kiut ) 
    3838      !!------------------------------------------------------------------- 
    39       !!               ***   ROUTINE lim_thd_lac  *** 
     39      !!               ***   ROUTINE lim_thd_lac_2  *** 
    4040      !!   
    4141      !! ** Purpose : Computation of the evolution of the ice thickness and  
     
    220220      END DO 
    221221       
    222    END SUBROUTINE lim_thd_lac 
     222   END SUBROUTINE lim_thd_lac_2 
    223223#else 
    224224   !!====================================================================== 
    225    !!                       ***  MODULE limthd_lac   *** 
     225   !!                       ***  MODULE limthd_lac_2   *** 
    226226   !!                           no sea ice model 
    227227   !!====================================================================== 
    228228CONTAINS 
    229    SUBROUTINE lim_thd_lac           ! Empty routine 
    230    END SUBROUTINE lim_thd_lac 
     229   SUBROUTINE lim_thd_lac_2           ! Empty routine 
     230   END SUBROUTINE lim_thd_lac_2 
    231231#endif 
    232 END MODULE limthd_lac 
     232END MODULE limthd_lac_2 
Note: See TracChangeset for help on using the changeset viewer.