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 881 for branches/dev_001_SBC/NEMO/LIM_SRC/limthd_zdf.F90 – NEMO

Ignore:
Timestamp:
2008-04-08T11:45:52+02:00 (16 years ago)
Author:
ctlod
Message:

dev_001_SBC: Step I: change cpp ket name key_ice_lim into key_lim2 & change names inside modules with extension _2, see ticket: #110

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_SBC/NEMO/LIM_SRC/limthd_zdf.F90

    r717 r881  
    1 MODULE limthd_zdf 
     1MODULE limthd_zdf_2 
    22   !!====================================================================== 
    3    !!                       ***  MODULE limthd_zdf *** 
     3   !!                       ***  MODULE limthd_zdf_2 *** 
    44   !!                thermodynamic growth and decay of the ice  
    55   !!====================================================================== 
     
    77   !!            2.0  !  02-08 (C. Ethe, G. Madec) F90 
    88   !!---------------------------------------------------------------------- 
    9 #if defined key_ice_lim 
    10    !!---------------------------------------------------------------------- 
    11    !!   'key_ice_lim'                                     LIM sea-ice model 
    12    !!---------------------------------------------------------------------- 
    13    !!---------------------------------------------------------------------- 
    14    !!   lim_thd_zdf  : vertical accr./abl. and lateral ablation of sea ice 
     9#if defined key_lim2 
     10   !!---------------------------------------------------------------------- 
     11   !!   'key_lim2'                                    LIM 2.0 sea-ice model 
     12   !!---------------------------------------------------------------------- 
     13   !!---------------------------------------------------------------------- 
     14   !!   lim_thd_zdf_2 : vertical accr./abl. and lateral ablation of sea ice 
    1515   !!---------------------------------------------------------------------- 
    1616   USE par_oce          ! ocean parameters 
    1717   USE phycst           ! ??? 
    1818   USE ice_oce          ! ice variables 
    19    USE thd_ice 
    20    USE iceini 
    21    USE limistate 
     19   USE thd_ice_2 
     20   USE iceini_2 
     21   USE limistate_2 
    2222   USE in_out_manager 
    2323       
     
    2525   PRIVATE 
    2626 
    27    PUBLIC   lim_thd_zdf        ! called by lim_thd 
     27   PUBLIC   lim_thd_zdf_2        ! called by lim_thd_2 
    2828 
    2929   REAL(wp) ::   epsi20 = 1.e-20  ,  &  ! constant values 
     
    3939CONTAINS 
    4040 
    41    SUBROUTINE lim_thd_zdf( kideb , kiut ) 
     41   SUBROUTINE lim_thd_zdf_2( kideb , kiut ) 
    4242      !!------------------------------------------------------------------ 
    43       !!                ***  ROUTINE lim_thd_zdf  *** 
     43      !!                ***  ROUTINE lim_thd_zdf_2  *** 
    4444      !!               
    4545      !! ** Purpose : This routine determines the time evolution of snow  
     
    773773       END DO 
    774774       !  
    775     END SUBROUTINE lim_thd_zdf 
     775    END SUBROUTINE lim_thd_zdf_2 
    776776 
    777777#else 
     
    780780   !!---------------------------------------------------------------------- 
    781781CONTAINS 
    782    SUBROUTINE lim_thd_zdf          ! Empty routine 
    783    END SUBROUTINE lim_thd_zdf 
     782   SUBROUTINE lim_thd_zdf_2          ! Empty routine 
     783   END SUBROUTINE lim_thd_zdf_2 
    784784#endif 
    785785 
    786786   !!====================================================================== 
    787 END MODULE limthd_zdf 
     787END MODULE limthd_zdf_2 
Note: See TracChangeset for help on using the changeset viewer.