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.
namelist_ice_cfg in NEMO/branches/UKMO/dev_r12745_HPC-02_Daley_Tiling_trial_public/cfgs/WED025/EXPREF – NEMO

source: NEMO/branches/UKMO/dev_r12745_HPC-02_Daley_Tiling_trial_public/cfgs/WED025/EXPREF/namelist_ice_cfg @ 12958

Last change on this file since 12958 was 12958, checked in by hadcv, 4 years ago

Merge in trunk changes to r12933

  • Property svn:executable set to *
File size: 6.6 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! SI3 namelist: 
3!!              1 - Generic parameters                 (nampar)
4!!              2 - Ice thickness discretization       (namitd)
5!!              3 - Ice dynamics                       (namdyn)
6!!              4 - Ice ridging/rafting                (namdyn_rdgrft)
7!!              5 - Ice rheology                       (namdyn_rhg)
8!!              6 - Ice advection                      (namdyn_adv)
9!!              7 - Ice surface boundary conditions    (namsbc)
10!!              8 - Ice thermodynamics                 (namthd)
11!!              9 - Ice heat diffusion                 (namthd_zdf)
12!!             10 - Ice lateral melting                (namthd_da)
13!!             11 - Ice growth in open water           (namthd_do)
14!!             12 - Ice salinity                       (namthd_sal)
15!!             13 - Ice melt ponds                     (namthd_pnd)
16!!             14 - Ice initialization                 (namini)
17!!             15 - Ice/snow albedos                   (namalb)
18!!             16 - Ice diagnostics                    (namdia)
19!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
20!
21!------------------------------------------------------------------------------
22&nampar         !   Generic parameters
23!------------------------------------------------------------------------------
24/
25!------------------------------------------------------------------------------
26&namitd         !   Ice discretization
27!------------------------------------------------------------------------------
28   ln_cat_hfn       = .true.          !  ice categories are defined by a function following rn_himean**(-0.05)
29      rn_himean     =   2.0           !  expected domain-average ice thickness (m)
30   rn_himin         =   0.01          !  minimum ice thickness (m) used in remapping
31/
32!------------------------------------------------------------------------------
33&namdyn         !   Ice dynamics
34!------------------------------------------------------------------------------
35   ln_landfast_L16  = .true.          !  landfast: parameterization from Lemieux 2016
36/
37!------------------------------------------------------------------------------
38&namdyn_rdgrft  !   Ice ridging/rafting
39!------------------------------------------------------------------------------
40/
41!------------------------------------------------------------------------------
42&namdyn_rhg     !   Ice rheology
43!------------------------------------------------------------------------------
44/
45!------------------------------------------------------------------------------
46&namdyn_adv     !   Ice advection
47!------------------------------------------------------------------------------
48   ln_adv_Pra       = .false.         !  Advection scheme (Prather)
49   ln_adv_UMx       = .true.          !  Advection scheme (Ultimate-Macho)
50      nn_UMx        =   5             !     order of the scheme for UMx (1-5 ; 20=centered 2nd order)
51/
52!------------------------------------------------------------------------------
53&namsbc         !   Ice surface boundary conditions
54!------------------------------------------------------------------------------
55/
56!------------------------------------------------------------------------------
57&namthd         !   Ice thermodynamics
58!------------------------------------------------------------------------------
59/
60!------------------------------------------------------------------------------
61&namthd_zdf     !   Ice heat diffusion
62!------------------------------------------------------------------------------
63/
64!------------------------------------------------------------------------------
65&namthd_da      !   Ice lateral melting
66!------------------------------------------------------------------------------
67/
68!------------------------------------------------------------------------------
69&namthd_do      !   Ice growth in open water
70!------------------------------------------------------------------------------
71   rn_hinew         =   0.02          !  thickness for new ice formation in open water (m), must be larger than rn_himin
72   ln_frazil        = .true.          !  Frazil ice parameterization (ice collection as a function of wind)
73/
74!------------------------------------------------------------------------------
75&namthd_sal     !   Ice salinity
76!------------------------------------------------------------------------------
77/
78!------------------------------------------------------------------------------
79&namthd_pnd     !   Melt ponds
80!------------------------------------------------------------------------------
81   ln_pnd           = .true.          !  activate melt ponds or not
82     ln_pnd_H12     = .true.          !  activate evolutive melt ponds (from Holland et al 2012)
83     ln_pnd_alb     = .true.          !  melt ponds affect albedo or not
84/
85
86!------------------------------------------------------------------------------
87&namini         !   Ice initialization
88!------------------------------------------------------------------------------
89   ln_iceini        = .true.          !  activate ice initialization (T) or not (F)
90   ln_iceini_file   = .true.          !  netcdf file provided for initialization (T) or not (F)
91   ! -- for ln_iceini_file = T
92   sn_hti = 'WED025_init_JRA_200001.nc', -12 ,'icethic_cea',  .false.  , .true., 'yearly'  , '' , '', ''
93   sn_hts = 'WED025_init_JRA_200001.nc', -12 ,'icesnow_cea',  .false.  , .true., 'yearly'  , '' , '', ''
94   sn_ati = 'WED025_init_JRA_200001.nc', -12 ,'ice_cover'  ,  .false.  , .true., 'yearly'  , '' , '', ''
95   sn_smi = 'NOT USED'              , -12 ,'smi'   ,  .false.  , .true., 'yearly'  , '' , '', ''
96   sn_tmi = 'NOT USED'              , -12 ,'tmi'   ,  .false.  , .true., 'yearly'  , '' , '', ''
97   sn_tsu = 'NOT USED'              , -12 ,'tsu'   ,  .false.  , .true., 'yearly'  , '' , '', ''
98   sn_tms = 'NOT USED'              , -12 ,'tms'   ,  .false.  , .true., 'yearly'  , '' , '', ''
99   !      melt ponds (be careful, sn_apd is the pond concentration (not fraction), so it differs from rn_apd)
100   sn_apd = 'NOT USED'              , -12 ,'apd'   ,  .false.  , .true., 'yearly'  , '' , '', ''
101   sn_hpd = 'NOT USED'              , -12 ,'hpd'   ,  .false.  , .true., 'yearly'  , '' , '', ''
102   cn_dir='./'
103/
104!------------------------------------------------------------------------------
105&namalb         !   albedo parameters
106!------------------------------------------------------------------------------
107/
108!------------------------------------------------------------------------------
109&namdia         !   Diagnostics
110!------------------------------------------------------------------------------
111/
Note: See TracBrowser for help on using the repository browser.