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

    r701 r881  
    1 MODULE limhdf 
     1MODULE limhdf_2 
    22   !!====================================================================== 
    3    !!                    ***  MODULE limhdf   *** 
    4    !! LIM ice model : horizontal diffusion of sea-ice quantities 
     3   !!                    ***  MODULE limhdf_2   *** 
     4   !! LIM 2.0 ice model : horizontal diffusion of sea-ice quantities 
    55   !!====================================================================== 
    6 #if defined key_ice_lim 
     6#if defined key_lim2 
    77   !!---------------------------------------------------------------------- 
    8    !!   'key_ice_lim'                                     LIM sea-ice model 
     8   !!   'key_lim2'                                    LIM 2.0 sea-ice model 
    99   !!---------------------------------------------------------------------- 
    10    !!   lim_hdf  : diffusion trend on sea-ice variable 
     10   !!   lim_hdf_2  : diffusion trend on sea-ice variable 
    1111   !!---------------------------------------------------------------------- 
    1212   !! * Modules used 
     
    1414   USE ice_oce         ! ice variables 
    1515   USE in_out_manager 
    16    USE ice 
     16   USE ice_2 
    1717   USE lbclnk 
    1818   USE lib_mpp 
     
    2323 
    2424   !! * Routine accessibility 
    25    PUBLIC lim_hdf    ! called by lim_tra 
     25   PUBLIC lim_hdf_2    ! called by lim_tra_2 
    2626 
    2727   !! * Module variables 
     
    4040CONTAINS 
    4141 
    42    SUBROUTINE lim_hdf( ptab ) 
     42   SUBROUTINE lim_hdf_2( ptab ) 
    4343      !!------------------------------------------------------------------- 
    44       !!                  ***  ROUTINE lim_hdf  *** 
     44      !!                  ***  ROUTINE lim_hdf_2  *** 
    4545      !! 
    4646      !! ** purpose :   Compute and add the diffusive trend on sea-ice 
     
    171171      ENDIF 
    172172 
    173    END SUBROUTINE lim_hdf 
     173   END SUBROUTINE lim_hdf_2 
    174174 
    175175#else 
    176176   !!---------------------------------------------------------------------- 
    177    !!   Default option          Dummy module           NO LIM sea-ice model 
     177   !!   Default option          Dummy module       NO LIM 2.0 sea-ice model 
    178178   !!---------------------------------------------------------------------- 
    179179CONTAINS 
    180    SUBROUTINE lim_hdf         ! Empty routine 
    181    END SUBROUTINE lim_hdf 
     180   SUBROUTINE lim_hdf_2       ! Empty routine 
     181   END SUBROUTINE lim_hdf_2 
    182182#endif 
    183183 
    184184   !!====================================================================== 
    185 END MODULE limhdf 
     185END MODULE limhdf_2 
Note: See TracChangeset for help on using the changeset viewer.