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 1229 for trunk/NEMO/LIM_SRC_3/ice.F90 – NEMO

Ignore:
Timestamp:
2008-12-01T08:04:11+01:00 (15 years ago)
Author:
smasson
Message:

define restart names in the namelist, see ticket:258

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC_3/ice.F90

    r1156 r1229  
    480480   !!-------------------------------------------------------------------------- 
    481481   !! Namelist namicerun read in iceini 
    482    LOGICAL , PUBLIC  ::     & !!! ** init namelist (namicerun) ** 
    483       ln_limdyn   = .TRUE., & !: flag for ice dynamics (T) or not (F) 
    484       ln_nicep    = .TRUE.    !: flag for sea-ice points output (T) or not (F) 
    485    REAL(wp), PUBLIC  ::   &  !: 
    486       hsndif = 0.e0    ,  &  !: computation of temp. in snow (0) or not (9999) 
    487       hicdif = 0.e0    ,  &  !: computation of temp. in ice (0) or not (9999) 
    488       cai    = 1.40e-3 ,  &  !: atmospheric drag over sea ice 
    489       cao    = 1.00e-3       !: atmospheric drag over ocean 
    490    REAL(wp), PUBLIC, DIMENSION(2)  ::  &  !: 
    491       acrit  = (/ 1.e-06 , 1.e-06 /)    !: minimum fraction for leads in 
    492    !                                   !  north and south hemisphere 
    493  
     482   CHARACTER(len=32)     , PUBLIC ::   cn_icerst_in  = "restart_ice_in"   !: suffix of ice restart name (input) 
     483   CHARACTER(len=32)     , PUBLIC ::   cn_icerst_out = "restart_ice"      !: suffix of ice restart name (output) 
     484   LOGICAL               , PUBLIC ::   ln_limdyn     = .TRUE.             !: flag for ice dynamics (T) or not (F) 
     485   LOGICAL               , PUBLIC ::   ln_nicep      = .TRUE.             !: flag for sea-ice points output (T) or not (F) 
     486   REAL(wp)              , PUBLIC ::   hsndif        = 0.e0               !: computation of temp. in snow (0) or not (9999) 
     487   REAL(wp)              , PUBLIC ::   hicdif        = 0.e0               !: computation of temp. in ice (0) or not (9999) 
     488   REAL(wp)              , PUBLIC ::   cai           = 1.40e-3            !: atmospheric drag over sea ice 
     489   REAL(wp)              , PUBLIC ::   cao           = 1.00e-3            !: atmospheric drag over ocean 
     490   REAL(wp), DIMENSION(2), PUBLIC ::   acrit  = (/ 1.e-06 , 1.e-06 /)     !: minimum fraction for leads in 
     491   !                                                                      !: north and south hemisphere 
    494492   !!-------------------------------------------------------------------------- 
    495493   !! * Ice diagnostics 
Note: See TracChangeset for help on using the changeset viewer.