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_ncar_cfg in NEMO/branches/2020/dev_r13648_ASINTER-04_laurent_bulk_ice/tests/STATION_ASF/EXPREF/ERA5/oce – NEMO

source: NEMO/branches/2020/dev_r13648_ASINTER-04_laurent_bulk_ice/tests/STATION_ASF/EXPREF/ERA5/oce/namelist_ncar_cfg @ 13893

Last change on this file since 13893 was 13893, checked in by laurent, 3 years ago

Improvements and better README for tests/STATION_ASF

File size: 19.5 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! NEMO/OCE  Configuration namelist : overwrite default values defined in SHARED/namelist_ref
3!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
4!!             STATION_ASF configuration, <FORCING> forcing
5!!======================================================================
6!!              ***  Domain & Run management namelists  ***           !!
7!!                                                                    !!
8!!   namrun       parameters of the run
9!!   namdom       space and time domain
10!!   namcfg       parameters of the configuration                       (default: user defined GYRE)
11!!   namwad       Wetting and drying                                    (default: OFF)
12!!   namtsd       data: temperature & salinity                          (default: OFF)
13!!   namcrs       coarsened grid (for outputs and/or TOP)               (ln_crs =T)
14!!   namc1d       1D configuration options                              ("key_c1d")
15!!   namc1d_dyndmp 1D newtonian damping applied on currents             ("key_c1d")
16!!   namc1d_uvd   1D data (currents)                                    ("key_c1d")
17!!======================================================================
18!
19!-----------------------------------------------------------------------
20&namusr_def    !   STATION_ASF user defined namelist
21!-----------------------------------------------------------------------
22   rn_dept1    =  1.0   ! depth (m) at which the prescribed SST is taken  == depth of first T point! (IMPORTANT for warm-layer impact, the deeper, the more pronounced!)
23   !                    ! [ERA5_NorthGreenland station = 1 m]
24/
25!-----------------------------------------------------------------------
26&namrun        !   parameters of the run
27!-----------------------------------------------------------------------
28   cn_exp      =  'STATION_ASF-NCAR_<FORCING>'  !  experience name
29   nn_it000    =    1   !  first time step
30   nn_itend    =    8760   !  last  time step => 3 years (including 1 leap!) at dt=3600s
31   nn_date0    = 20180101  !  date at nit_0000 (format yyyymmdd) used if ln_rstart=F or (ln_rstart=T and nn_rstctl=0 or 1)
32   nn_leapy    =       1   !  Leap year calendar (1) or not (0)
33   !
34   nn_stock    =    8760   ! 1 year at dt=3600s / frequency of creation of a restart file (modulo referenced to 1)
35   nn_write    =    8760   ! 1 year at dt=3600s / frequency of write in the output file   (modulo referenced to nn_it000)
36/
37!-----------------------------------------------------------------------
38&namdom        !   time and space domain / STATION_ASF
39!-----------------------------------------------------------------------
40   ln_linssh   = .true.    !  =T  linear free surface  ==>>  model level are fixed in time
41   rn_Dt       =  3600.    !  time step for the dynamics and tracer => frequency of atmospheric forcing
42   ln_meshmask = .false.
43/
44!-----------------------------------------------------------------------
45&namcfg        !   parameters of the configuration                      (default: use namusr_def in namelist_cfg)
46!-----------------------------------------------------------------------
47/
48!-----------------------------------------------------------------------
49&namc1d        !   1D configuration options / STATION_ASF
50!-----------------------------------------------------------------------
51   rn_lat1d    =   84. !  Column latitude    [ERA5_NorthGreenland station]
52   rn_lon1d    =  324. !  Column longitude   [ERA5_NorthGreenland station]
53/
54!-----------------------------------------------------------------------
55&namc1d_dyndmp !   U & V newtonian damping                              ("key_c1d" default: OFF)
56!-----------------------------------------------------------------------
57   ln_dyndmp   =  .false.  !  add a damping term (T) or not (F)
58/
59!-----------------------------------------------------------------------
60&namc1d_uvd    !   data: U & V currents                                 ("key_c1d" default: OFF)
61!-----------------------------------------------------------------------
62   !                       !  =T read U-V fields for:
63   ln_uvd_init   = .false.       !  ocean initialisation
64   ln_uvd_dyndmp = .false.       !  U-V restoring
65
66   cn_dir      = './'      !  root directory for the U-V data location
67   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
68   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
69   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
70   sn_ucur     = 'ucurrent'              ,         -1.       ,'u_current',   .false.   , .true. , 'monthly' ,  ''              ,  'Ume'   , ''
71   sn_vcur     = 'vcurrent'              ,         -1.       ,'v_current',   .false.   , .true. , 'monthly' ,  ''              ,  'Vme'   , ''
72/
73
74!!======================================================================
75!!            ***  Surface Boundary Condition namelists  ***          !!
76!!                                                                    !!
77!!                           STATION_ASF test-case                         !!
78!!                                                                    !!
79!!   namsbc          surface boundary condition manager                 (default: NO selection)
80!!   namsbc_flx      flux               formulation                     (ln_flx     =T)
81!!   namsbc_blk      Bulk formulae formulation                          (ln_blk     =T)
82!!   namsbc_cpl      CouPLed            formulation                     ("key_oasis3" )
83!!   namsbc_sas      Stand-Alone Surface module                         (SAS_SRC  only)
84!!   namsbc_iif      Ice-IF: use observed ice cover                     (nn_ice = 1   )
85!!   namtra_qsr      penetrative solar radiation                        (ln_traqsr  =T)
86!!   namsbc_ssr      sea surface restoring term (for T and/or S)        (ln_ssr     =T)
87!!   namsbc_rnf      river runoffs                                      (ln_rnf     =T)
88!!   namsbc_apr      Atmospheric Pressure                               (ln_apr_dyn =T)
89!!   namsbc_wave     external fields from wave model                    (ln_wave    =T)
90!!   namberg         iceberg floats                                     (ln_icebergs=T)
91!!======================================================================
92!
93!-----------------------------------------------------------------------
94&namsbc        !   Surface Boundary Condition manager                   (default: NO selection)
95!-----------------------------------------------------------------------
96   nn_fsbc     = 1         !!LOLO!  frequency of SBC module call
97   ln_blk      = .true.    !  Bulk formulation                          (T => fill namsbc_blk )
98   !
99   nn_ice      = 0  !LOLO  !  =0 no ice boundary condition
100      !                    !  =1 use observed ice-cover                 (  => fill namsbc_iif )
101      !                    !  =2 or 3 for SI3 and CICE, respectively
102   !   
103   ln_dm2dc    = .false.   !#lolo  daily mean to diurnal cycle on short wave
104/
105!-----------------------------------------------------------------------
106&namsbc_blk    !   namsbc_blk  generic Bulk formula / STATION_ASF       (ln_blk =T)
107!-----------------------------------------------------------------------
108   !                    !  bulk algorithm :
109   ln_NCAR      = .true.     ! "NCAR"      algorithm   (Large and Yeager 2008)
110   ln_COARE_3p0 = .false.    ! "COARE 3.0" algorithm   (Fairall et al. 2003)
111   ln_COARE_3p6 = .false.    ! "COARE 3.6" algorithm   (Edson et al. 2013)
112   ln_ECMWF     = .false.    ! "ECMWF"     algorithm   (IFS cycle 45r1)
113   ln_ANDREAS   = .false.    ! "ANDREAS"   algorithm   (Andreas et al. 2015)
114      rn_zqt       =  2.     !  Air temperature & humidity reference height (m)
115      rn_zu        = 10.     !  Wind vector reference height (m)
116      nn_iter_algo = 20      !  Number of iterations in bulk param. algo ("stable ABL + weak wind" requires more)
117      ln_skin_cs   = .false. !  use the cool-skin parameterization
118      ln_skin_wl   = .false. !  use the warm-layer parameterization
119   !
120   ln_humi_sph = .false. !  humidity "sn_humi" is specific humidity  [kg/kg]
121   ln_humi_dpt = .true.  !  humidity "sn_humi" is dew-point temperature [K]
122   ln_humi_rlh = .false. !  humidity "sn_humi" is relative humidity     [%]
123   ln_tair_pot = .false. !  air temperature read in "sn_tair" is already POTENTIAL TEMPERATURE, NOT ABSOLUTE (ECMWF => ln_tair_pot=.false.)
124   !
125   cn_dir      = './'      !  root directory for the bulk data location
126   !___________!_________________________!___________________!___________!_____________!________!___________!______________________________________!__________!_______________!
127   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ !       weights filename               ! rotation ! land/sea mask !
128   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                                      ! pairing  !    filename   !
129   sn_wndi     = '<SFORC>',  1.  ,  'u10'    ,   .true.    , .false. , 'yearly'  , ''   ,''   , ''
130   sn_wndj     = '<SFORC>',  1.  ,  'v10'    ,   .true.    , .false. , 'yearly'  , ''   ,''   , ''
131   sn_qsr      = '<SFORC>',  1.  ,  'ssrd'   ,   .false.   , .false. , 'yearly'  , ''  , ''   , ''
132   sn_qlw      = '<SFORC>',  1.  ,  'strd'   ,   .false.   , .false. , 'yearly'  , ''  , ''   , ''
133   sn_tair     = '<SFORC>',  1.  ,  't2m'    ,   .true.    , .false. , 'yearly'  , ''  , ''   , ''
134   sn_humi     = '<SFORC>',  1.  ,  'd2m'    ,   .true.    , .false. , 'yearly'  , ''  , ''   , ''
135   sn_prec     = '<SFORC>',  1.  ,  'tp'     ,   .false.   , .false. , 'yearly'  , ''  , ''   , ''
136   sn_snow     = '<SFORC>',  1.  ,  'sf'     ,   .false.   , .false. , 'yearly'  , ''  , ''   , ''
137   sn_slp      = '<SFORC>',  1.  ,  'msl'    ,   .true.    , .false. , 'yearly'  , ''  , ''   , ''
138/
139!-----------------------------------------------------------------------
140&namsbc_abl    !   Atmospheric Boundary Layer formulation           (ln_abl = T)
141!-----------------------------------------------------------------------
142/
143!-----------------------------------------------------------------------
144&namsbc_cpl    !   coupled ocean/atmosphere model                       ("key_oasis3")
145!-----------------------------------------------------------------------
146/
147!-----------------------------------------------------------------------
148&namsbc_sas    !   Stand-Alone Surface boundary condition / STATION_ASF
149!-----------------------------------------------------------------------
150   l_sasread   = .true.    !  =T Read in file ;  =F set all to 0. (see sbcssm)
151   !
152   cn_dir      = './'      !  root directory for the ocean data location
153   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
154   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
155   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
156   sn_usp  = '<SFORC>', 1.         , 'ssu'     ,   .true.    , .false. , 'yearly'  ,    ''            ,    ''    ,    ''
157   sn_vsp  = '<SFORC>', 1.         , 'ssv'     ,   .true.    , .false. , 'yearly'  ,    ''            ,    ''    ,    ''
158   sn_tem  = '<SFORC>', 1.         , 'sst'     ,   .true.    , .false. , 'yearly'  ,    ''            ,    ''    ,    ''
159   sn_sal  = '<SFORC>', 1.         , 'sss',        .true.    , .false. , 'yearly'  ,    ''            ,    ''    ,    ''
160   sn_ssh  = '<SFORC>', 1.         , 'ssh',        .true.    , .false. , 'yearly'  ,    ''            ,    ''    ,    ''
161/
162!!======================================================================
163!!               ***  Lateral boundary condition  ***                 !!
164!!                                                                    !!
165!!   namlbc        lateral momentum boundary condition                  (default: NO selection)
166!!   namagrif      agrif nested grid   (read by child model only)       ("key_agrif")
167!!   nam_tide      Tidal forcing                                        (default: OFF)
168!!   nambdy        Unstructured open boundaries                         (default: OFF)
169!!   nambdy_dta    Unstructured open boundaries - external data         (see  nambdy)
170!!   nambdy_tide   tidal forcing at open boundaries                     (default: OFF)
171!!======================================================================
172!
173!-----------------------------------------------------------------------
174&namlbc        !   lateral momentum boundary condition                  (default: NO selection)
175!-----------------------------------------------------------------------
176   rn_shlat    =    0.     !  free slip
177/
178!!======================================================================
179!!                ***  Top/Bottom boundary condition  ***             !!
180!!                                                                    !!
181!!   namdrg        top/bottom drag coefficient                          (default: NO selection)
182!!   namdrg_top    top    friction                                      (ln_OFF=F & ln_isfcav=T)
183!!   namdrg_bot    bottom friction                                      (ln_OFF=F)
184!!   nambbc        bottom temperature boundary condition                (default: OFF)
185!!   nambbl        bottom boundary layer scheme                         (default: OFF)
186!!======================================================================
187!
188!!======================================================================
189!!                        Tracer (T-S) namelists                      !!
190!!                                                                    !!
191!!   nameos        equation of state                                    (default: NO selection)
192!!   namtra_adv    advection scheme                                     (default: NO selection)
193!!   namtra_ldf    lateral diffusion scheme                             (default: NO selection)
194!!   namtra_mle    mixed layer eddy param. (Fox-Kemper param.)          (default: OFF)
195!!   namtra_eiv    eddy induced velocity param.                         (default: OFF)
196!!   namtra_dmp    T & S newtonian damping                              (default: OFF)
197!!======================================================================
198!
199!-----------------------------------------------------------------------
200&nameos        !   ocean Equation Of Seawater                           (default: NO selection)
201!-----------------------------------------------------------------------
202   ln_eos80    = .true.         !  = Use EOS80
203/
204!!======================================================================
205!!                      ***  Dynamics namelists  ***                  !!
206!!                                                                    !!
207!!   nam_vvl       vertical coordinate options                          (default: z-star)
208!!   namdyn_adv    formulation of the momentum advection                (default: NO selection)
209!!   namdyn_vor    advection scheme                                     (default: NO selection)
210!!   namdyn_hpg    hydrostatic pressure gradient                        (default: NO selection)
211!!   namdyn_spg    surface pressure gradient                            (default: NO selection)
212!!   namdyn_ldf    lateral diffusion scheme                             (default: NO selection)
213!!   namdta_dyn    offline TOP: dynamics read in files                  (OFF_SRC only)
214!!======================================================================
215!
216!!======================================================================
217!!                     vertical physics namelists                     !!
218!!                                                                    !!
219!!    namzdf        vertical physics manager                            (default: NO selection)
220!!    namzdf_ric    richardson number vertical mixing                   (ln_zdfric=T)
221!!    namzdf_tke    TKE vertical mixing                                 (ln_zdftke=T)
222!!    namzdf_gls    GLS vertical mixing                                 (ln_zdfgls=T)
223!!    namzdf_osm    OSM vertical diffusion                              (ln_zdfosm=T)
224!!    namzdf_iwm    tidal mixing parameterization                       (ln_zdfiwm=T)
225!!======================================================================
226!
227!!======================================================================
228!!                  ***  Diagnostics namelists  ***                   !!
229!!                                                                    !!
230!!   namtrd       dynamics and/or tracer trends                         (default: OFF)
231!!   namptr       Poleward Transport Diagnostics                        (default: OFF)
232!!   namhsb       Heat and salt budgets                                 (default: OFF)
233!!   namdiu       Cool skin and warm layer models                       (default: OFF)
234!!   namdiu       Cool skin and warm layer models                       (default: OFF)
235!!   namflo       float parameters                                      (default: OFF)
236!!   nam_diaharm  Harmonic analysis of tidal constituents               (default: OFF)
237!!   nam_diadct   transports through some sections                      (default: OFF)
238!!   nam_diatmb   Top Middle Bottom Output                              (default: OFF)
239!!   nam_dia25h   25h Mean Output                                       (default: OFF)
240!!   namnc4       netcdf4 chunking and compression settings             ("key_netcdf4")
241!!======================================================================
242!
243!!======================================================================
244!!               ***  Observation & Assimilation  ***                 !!
245!!                                                                    !!
246!!   namobs       observation and model comparison                      (default: OFF)
247!!   nam_asminc   assimilation increments                               ('key_asminc')
248!!======================================================================
249!
250!!======================================================================
251!!                  ***  Miscellaneous namelists  ***                 !!
252!!                                                                    !!
253!!   nammpp            Massively Parallel Processing                    ("key_mpp_mpi")
254!!   namctl            Control prints                                   (default: OFF)
255!!   namsto            Stochastic parametrization of EOS                (default: OFF)
256!!======================================================================
257!
258!-----------------------------------------------------------------------
259&nammpp        !   Massively Parallel Processing                        ("key_mpp_mpi")
260!-----------------------------------------------------------------------
261/
262!-----------------------------------------------------------------------
263&namctl        !   Control prints                                       (default: OFF)
264!-----------------------------------------------------------------------
265/
266!-----------------------------------------------------------------------
267&namsto        ! Stochastic parametrization of EOS                      (default: OFF)
268!-----------------------------------------------------------------------
269/
Note: See TracBrowser for help on using the repository browser.