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 1465 for trunk/NEMO/OPA_SRC/SBC/sbc_ice.F90 – NEMO

Ignore:
Timestamp:
2009-06-11T09:29:51+02:00 (15 years ago)
Author:
smasson
Message:

supress ice_oce module, see ticket:448

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/sbc_ice.F90

    r1463 r1465  
    1111   !!---------------------------------------------------------------------- 
    1212   USE par_oce          ! ocean parameters 
    13 #if defined key_lim3 
     13# if defined key_lim3 
    1414   USE par_ice          ! ice parameters 
    15 #endif 
    16 #if defined key_lim2 
     15# endif 
     16# if defined key_lim2 
    1717   USE par_ice_2        ! ice parameters 
    18 #endif 
     18# endif 
    1919 
    2020   IMPLICIT NONE 
    2121   PRIVATE 
     22 
     23# if defined  key_lim2 
     24   LOGICAL         , PUBLIC, PARAMETER ::   lk_lim2        = .TRUE.    !: LIM-2 ice model 
     25   LOGICAL         , PUBLIC, PARAMETER ::   lk_lim3        = .FALSE.   !: no LIM-3 
     26   CHARACTER(len=1), PUBLIC            ::   cice_grid      = 'B'       !: 'B'-grid ice-velocity 
     27# endif 
     28# if defined  key_lim3 
     29   LOGICAL         , PUBLIC, PARAMETER ::   lk_lim2        = .FALSE.   !: no LIM-2 
     30   LOGICAL         , PUBLIC, PARAMETER ::   lk_lim3        = .TRUE.    !: LIM-3 ice model 
     31   CHARACTER(len=1), PUBLIC            ::   cice_grid      = 'C'       !: 'C'-grid ice-velocity 
     32# endif 
    2233 
    2334   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpl) ::   qns_ice   !: non solar heat flux over ice  [W/m2] 
     
    3546   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   emp_ice     !: solid freshwater budget over ice: sublivation - snow 
    3647 
     48# if defined key_lim3 
     49   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tatm_ice    !: air temperature 
     50# endif 
     51 
    3752#else 
     53 
    3854   !!---------------------------------------------------------------------- 
    39    !!   Empty module                                   NO LIM sea-ice model 
     55   !!   Default option                      NO LIM 2.0 or 3.0 sea-ice model 
    4056   !!---------------------------------------------------------------------- 
     57   LOGICAL         , PUBLIC, PARAMETER ::   lk_lim2        = .FALSE.  !: no LIM-2 ice model 
     58   LOGICAL         , PUBLIC, PARAMETER ::   lk_lim3        = .FALSE.  !: no LIM-3 ice model 
     59   CHARACTER(len=1), PUBLIC            ::   cice_grid      = '-'      !: no grid ice-velocity 
     60 
    4161#endif 
    4262 
Note: See TracChangeset for help on using the changeset viewer.