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.
namini in NEMO/trunk/doc/namelists – NEMO

source: NEMO/trunk/doc/namelists/namini @ 13472

Last change on this file since 13472 was 13472, checked in by smasson, 4 years ago

trunk: commit changes from r4.0-HEAD from 13284 to 13449, see #2523

  • Property svn:mime-type set to text/x-fortran
File size: 3.3 KB
Line 
1!------------------------------------------------------------------------------
2&namini         !   Ice initialization
3!------------------------------------------------------------------------------
4   ln_iceini        = .true.          !  activate ice initialization (T) or not (F)
5   nn_iceini_file   =   0             !     0 = Initialise sea ice based on SSTs
6                                      !     1 = Initialise sea ice from single category netcdf file
7                                      !     2 = Initialise sea ice from multi category restart file
8   rn_thres_sst     =   2.0           !  max temp. above Tfreeze with initial ice = (sst - tfreeze)
9   rn_hti_ini_n     =   3.0           !  initial ice thickness       (m), North
10   rn_hti_ini_s     =   1.0           !        "            "             South
11   rn_hts_ini_n     =   0.3           !  initial snow thickness      (m), North
12   rn_hts_ini_s     =   0.3           !        "            "             South
13   rn_ati_ini_n     =   0.9           !  initial ice concentration   (-), North
14   rn_ati_ini_s     =   0.9           !        "            "             South
15   rn_smi_ini_n     =   6.3           !  initial ice salinity     (g/kg), North
16   rn_smi_ini_s     =   6.3           !        "            "             South
17   rn_tmi_ini_n     = 270.            !  initial ice temperature     (K), North
18   rn_tmi_ini_s     = 270.            !        "            "             South
19   rn_tsu_ini_n     = 270.            !  initial surface temperature (K), North
20   rn_tsu_ini_s     = 270.            !        "            "             South
21   rn_tms_ini_n     = 270.            !  initial snw temperature     (K), North
22   rn_tms_ini_s     = 270.            !        "            "             South
23   rn_apd_ini_n     =   0.2           !  initial pond fraction       (-), North
24   rn_apd_ini_s     =   0.2           !        "            "             South
25   rn_hpd_ini_n     =   0.05          !  initial pond depth          (m), North
26   rn_hpd_ini_s     =   0.05          !        "            "             South
27   rn_hld_ini_n     =   0.0           !  initial pond lid depth      (m), North
28   rn_hld_ini_s     =   0.0           !        "            "             South
29   ! -- for nn_iceini_file = 1
30   sn_hti = 'Ice_initialization'    , -12 ,'hti'   ,  .false.  , .true., 'yearly'  , '' , '', ''
31   sn_hts = 'Ice_initialization'    , -12 ,'hts'   ,  .false.  , .true., 'yearly'  , '' , '', ''
32   sn_ati = 'Ice_initialization'    , -12 ,'ati'   ,  .false.  , .true., 'yearly'  , '' , '', ''
33   sn_smi = 'Ice_initialization'    , -12 ,'smi'   ,  .false.  , .true., 'yearly'  , '' , '', ''
34   sn_tmi = 'Ice_initialization'    , -12 ,'tmi'   ,  .false.  , .true., 'yearly'  , '' , '', ''
35   sn_tsu = 'Ice_initialization'    , -12 ,'tsu'   ,  .false.  , .true., 'yearly'  , '' , '', ''
36   sn_tms = 'NOT USED'              , -12 ,'tms'   ,  .false.  , .true., 'yearly'  , '' , '', ''
37   !      melt ponds (be careful, sn_apd is the pond concentration (not fraction), so it differs from rn_apd)
38   sn_apd = 'NOT USED'              , -12 ,'apd'   ,  .false.  , .true., 'yearly'  , '' , '', ''
39   sn_hpd = 'NOT USED'              , -12 ,'hpd'   ,  .false.  , .true., 'yearly'  , '' , '', ''
40   sn_hld = 'NOT USED'              , -12 ,'hld'   ,  .false.  , .true., 'yearly'  , '' , '', ''
41   cn_dir='./'
42/
Note: See TracBrowser for help on using the repository browser.