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 833 for trunk/NEMO/OPA_SRC/ice_oce.F90 – NEMO

Ignore:
Timestamp:
2008-03-07T14:51:35+01:00 (16 years ago)
Author:
rblod
Message:

Merge branche dev_002_LIM back to trunk ticket #70 and #71

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/ice_oce.F90

    r719 r833  
    1111   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt  
    1212   !!---------------------------------------------------------------------- 
    13 #if defined key_ice_lim 
     13#if defined key_lim2 || defined key_lim3 
    1414   !!---------------------------------------------------------------------- 
    15    !!   'key_ice_lim'   :                                     LIM ice model 
     15   !!   'key_lim2 or key_lim3 '   :             LIM 2.0 or 3.0 ice model 
    1616   !!---------------------------------------------------------------------- 
    1717   !! * Modules used 
     
    2323  
    2424   !! Shared module variables 
    25    LOGICAL, PUBLIC, PARAMETER ::   lk_ice_lim = .TRUE.    !: LIM ice model 
     25# if defined  key_lim2 
     26   LOGICAL, PUBLIC, PARAMETER ::   lk_lim2        = .TRUE.    !: LIM2 ice model 
     27   LOGICAL, PUBLIC, PARAMETER ::   lk_lim3        = .FALSE.   !: LIM3 ice model 
     28# else 
     29   LOGICAL, PUBLIC, PARAMETER ::   lk_lim2        = .FALSE.   !: LIM2 ice model 
     30   LOGICAL, PUBLIC, PARAMETER ::   lk_lim3        = .TRUE.    !: LIM3 ice model 
     31# endif 
    2632 
    2733   !!---------------------------------------------------------------------- 
     
    3137   REAL(wp), PUBLIC, DIMENSION(jpiglo,jpjglo) ::   &  !: cumulated fields 
    3238      fqsr_oce ,      &   !: Net short wave heat flux on free ocean  
    33       fqsr_ice ,      &   !: Net short wave het flux on sea ice  
     39      fqsr_ice ,      &   !: Net short wave heat flux on sea ice  
    3440      fqnsr_oce,      &   !: Net longwave heat flux on free ocean 
    3541      fqnsr_ice,      &   !: Net longwave heat flux on sea ice 
     
    4854      ftaux , ftauy  , &  !: wind stresses 
    4955      gtaux , gtauy       !: wind stresses 
     56 
     57# if defined key_lim3 
     58   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   &  !: field exchanges with ice model to ocean 
     59      catm_ice       , &  !: cloud cover 
     60      tatm_ice       , &  !: air temperature 
     61      icethi              !: icethickness 
     62# endif 
    5063    
    5164   REAL(wp), PUBLIC ::   &  !: 
     
    5770   !!   Default option                                 NO LIM sea-ice model 
    5871   !!---------------------------------------------------------------------- 
    59    LOGICAL, PUBLIC, PARAMETER ::   lk_ice_lim = .FALSE.  !: No LIM ice model 
     72   LOGICAL, PUBLIC, PARAMETER ::   lk_lim2        = .FALSE.  !: No LIM 2.0 ice model 
     73   LOGICAL, PUBLIC, PARAMETER ::   lk_lim3        = .FALSE.  !: No LIM 3.0 ice model 
    6074#endif 
    6175 
Note: See TracChangeset for help on using the changeset viewer.