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 8306 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90 – NEMO

Ignore:
Timestamp:
2017-07-10T12:18:03+02:00 (7 years ago)
Author:
clem
Message:

step1: remove LIM2 from the code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r8226 r8306  
    3434   USE sbcice_if      ! surface boundary condition: ice-if sea-ice model 
    3535   USE sbcice_lim     ! surface boundary condition: LIM 3.0 sea-ice model 
    36    USE sbcice_lim_2   ! surface boundary condition: LIM 2.0 sea-ice model 
    3736   USE sbcice_cice    ! surface boundary condition: CICE    sea-ice model 
    3837   USE sbcisf         ! surface boundary condition: ice-shelf 
     
    117116#if defined key_agrif 
    118117      IF( Agrif_Root() ) THEN                ! AGRIF zoom (cf r1242: possibility to run without ice in fine grid) 
    119          IF( lk_lim2 )   nn_ice      = 2 
    120118         IF( lk_lim3 )   nn_ice      = 3 
    121119         IF( lk_cice )   nn_ice      = 4 
    122120      ENDIF 
    123121#else 
    124       IF( lk_lim2 )   nn_ice      = 2 
    125122      IF( lk_lim3 )   nn_ice      = 3 
    126123      IF( lk_cice )   nn_ice      = 4 
     
    201198      CASE( 0 )                        !- no ice in the domain 
    202199      CASE( 1 )                        !- Ice-cover climatology ("Ice-if" model)   
    203       CASE( 2 )                        !- LIM2 ice model 
    204          IF( .NOT.( ln_blk .OR. ln_cpl ) )   CALL ctl_stop( 'sbc_init : LIM2 sea-ice model requires ln_blk or ln_cpl = T' ) 
    205200      CASE( 3 )                        !- LIM3 ice model 
    206201         IF( nn_ice_embd == 0            )   CALL ctl_stop( 'sbc_init : LIM3 sea-ice models require nn_ice_embd = 1 or 2' ) 
     
    428423      SELECT CASE( nn_ice )                                       ! Update heat and freshwater fluxes over sea-ice areas 
    429424      CASE(  1 )   ;         CALL sbc_ice_if   ( kt )                ! Ice-cover climatology ("Ice-if" model) 
    430       CASE(  2 )   ;         CALL sbc_ice_lim_2( kt, nsbc )          ! LIM-2 ice model 
    431425      CASE(  3 )   ;         CALL sbc_ice_lim  ( kt, nsbc )          ! LIM-3 ice model 
    432426      CASE(  4 )   ;         CALL sbc_ice_cice ( kt, nsbc )          ! CICE ice model 
Note: See TracChangeset for help on using the changeset viewer.