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_240pts in NEMO/trunk/tests/ICEADV/EXPREF – NEMO

source: NEMO/trunk/tests/ICEADV/EXPREF/namelist_ice_cfg_240pts @ 10413

Last change on this file since 10413 was 10413, checked in by clem, 5 years ago

merge dev_r9947_SI3_advection with the trunk. All sette tests passed. There is probably a conservation issue with the new advection scheme that I should solve but the routine icedyn_adv_umx.F90 is going to change anyway in the next couple of weeks. At worst, the old routine can be plugged without harm

File size: 6.1 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! SI3 configuration namelist: Overwrites SHARED/namelist_ice_ref
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 forcing                (namforcing)
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   jpl              =   1             !  number of ice  categories
25   nlay_i           =   2             !  number of ice  layers
26   ln_icedyn        = .true.          !  ice dynamics (T) or not (F)
27   ln_icethd        = .false.         !  ice thermo   (T) or not (F)
28/
29!------------------------------------------------------------------------------
30&namitd         !   Ice discretization
31!------------------------------------------------------------------------------
32/
33!------------------------------------------------------------------------------
34&namdyn         !   Ice dynamics
35!------------------------------------------------------------------------------
36   ln_dynFULL       = .false.         !  dyn.: full ice dynamics               (rheology + advection + ridging/rafting + correction)
37   ln_dynRHGADV     = .false.         !  dyn.: no ridge/raft & no corrections  (rheology + advection)
38   ln_dynADV        = .true.          !  dyn.: only advection w prescribed vel.(rn_uvice + advection)
39      rn_uice       =   1.            !        prescribed ice u-velocity
40      rn_vice       =   0.            !        prescribed ice v-velocity
41/
42!------------------------------------------------------------------------------
43&namdyn_rdgrft  !   Ice ridging/rafting
44!------------------------------------------------------------------------------
45/
46!------------------------------------------------------------------------------
47&namdyn_rhg     !   Ice rheology
48!------------------------------------------------------------------------------
49/
50!------------------------------------------------------------------------------
51&namdyn_adv     !   Ice advection
52!------------------------------------------------------------------------------
53   ln_adv_Pra       = .false.         !  Advection scheme (Prather)
54   ln_adv_UMx       = .true.          !  Advection scheme (Ultimate-Macho)
55      nn_UMx        =   20             !     order of the scheme for UMx (1-5 ; 20=centered 2nd order)
56/
57!------------------------------------------------------------------------------
58&namforcing     !   Ice surface forcing
59!------------------------------------------------------------------------------
60/
61!------------------------------------------------------------------------------
62&namthd         !   Ice thermodynamics
63!------------------------------------------------------------------------------
64/
65!------------------------------------------------------------------------------
66&namthd_zdf     !   Ice heat diffusion
67!------------------------------------------------------------------------------
68/
69!------------------------------------------------------------------------------
70&namthd_da      !   Ice lateral melting
71!------------------------------------------------------------------------------
72/
73!------------------------------------------------------------------------------
74&namthd_do      !   Ice growth in open water
75!------------------------------------------------------------------------------
76/
77!------------------------------------------------------------------------------
78&namthd_sal     !   Ice salinity
79!------------------------------------------------------------------------------
80/
81!------------------------------------------------------------------------------
82&namthd_pnd     !   Melt ponds
83!------------------------------------------------------------------------------
84/
85!------------------------------------------------------------------------------
86&namini         !   Ice initialization
87!------------------------------------------------------------------------------
88   ln_iceini        = .true.          !  activate ice initialization (T) or not (F)
89   ln_iceini_file   = .true.          !  netcdf file provided for initialization (T) or not (F)
90
91   sn_hti = 'initice_240pts'                 , -12 ,'hti'   ,  .false.  , .true., 'yearly'  , '' , '', ''
92   sn_hts = 'initice_240pts'                 , -12 ,'hts'   ,  .false.  , .true., 'yearly'  , '' , '', ''
93   sn_ati = 'initice_240pts'                 , -12 ,'ati'   ,  .false.  , .true., 'yearly'  , '' , '', ''
94   sn_tsu = 'initice_240pts'                 , -12 ,'tsu'   ,  .false.  , .true., 'yearly'  , '' , '', ''
95   sn_tmi = 'initice_240pts'                 , -12 ,'tmi'   ,  .false.  , .true., 'yearly'  , '' , '', ''
96   sn_smi = 'initice_240pts'                 , -12 ,'smi'   ,  .false.  , .true., 'yearly'  , '' , '', ''
97   cn_dir='./'
98/
99!------------------------------------------------------------------------------
100&namalb         !   albedo parameters
101!------------------------------------------------------------------------------
102/
103!------------------------------------------------------------------------------
104&namdia         !   Diagnostics
105!------------------------------------------------------------------------------
106/
Note: See TracBrowser for help on using the repository browser.