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/limmsh.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/limmsh.F90

    r699 r881  
    1 MODULE limmsh 
     1MODULE limmsh_2 
    22   !!====================================================================== 
    3    !!                     ***  MODULE  limmsh  *** 
    4    !! LIM ice model :   definition of the ice mesh parameters 
     3   !!                     ***  MODULE  limmsh_2  *** 
     4   !! LIM 2.0 ice model :   definition of the ice mesh parameters 
    55   !!====================================================================== 
    6 #if defined key_ice_lim 
    7    !!---------------------------------------------------------------------- 
    8    !!   'key_ice_lim'                                     LIM sea-ice model 
    9    !!---------------------------------------------------------------------- 
    10    !!   lim_msh   : definition of the ice mesh 
     6#if defined key_lim2 
     7   !!---------------------------------------------------------------------- 
     8   !!   'key_lim2'                                     LIM 2.0sea-ice model 
     9   !!---------------------------------------------------------------------- 
     10   !!   lim_msh_2   : definition of the ice mesh 
    1111   !!---------------------------------------------------------------------- 
    1212   !! * Modules used 
    1313   USE phycst 
    1414   USE dom_oce 
    15    USE dom_ice 
     15   USE dom_ice_2 
    1616   USE lbclnk 
    1717   USE in_out_manager 
     
    2121 
    2222   !! * Accessibility 
    23    PUBLIC lim_msh      ! routine called by ice_ini.F90 
     23   PUBLIC lim_msh_2      ! routine called by ice_ini_2.F90 
    2424 
    2525   !!---------------------------------------------------------------------- 
     
    3131CONTAINS 
    3232 
    33    SUBROUTINE lim_msh 
     33   SUBROUTINE lim_msh_2 
    3434      !!------------------------------------------------------------------- 
    35       !!                  ***  ROUTINE lim_msh  *** 
     35      !!                  ***  ROUTINE lim_msh_2  *** 
    3636      !!               
    3737      !! ** Purpose : Definition of the charact. of the numerical grid 
     
    6262      IF(lwp) THEN 
    6363         WRITE(numout,*) 
    64          WRITE(numout,*) 'lim_msh : LIM sea-ice model, mesh initialization' 
    65          WRITE(numout,*) '~~~~~~~' 
     64         WRITE(numout,*) 'lim_msh_2 : LIM 2.0 sea-ice model, mesh initialization' 
     65         WRITE(numout,*) '~~~~~~~~~' 
    6666      ENDIF 
    6767       
     
    245245      area(:,:) = e1t(:,:) * e2t(:,:) 
    246246       
    247    END SUBROUTINE lim_msh 
     247   END SUBROUTINE lim_msh_2 
    248248 
    249249#else 
     
    252252   !!---------------------------------------------------------------------- 
    253253CONTAINS 
    254    SUBROUTINE lim_msh           ! Dummy routine 
    255    END SUBROUTINE lim_msh 
     254   SUBROUTINE lim_msh_2           ! Dummy routine 
     255   END SUBROUTINE lim_msh_2 
    256256#endif 
    257257 
    258258   !!====================================================================== 
    259 END MODULE limmsh 
     259END MODULE limmsh_2 
Note: See TracChangeset for help on using the changeset viewer.