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.
2_namelist_cfg in utils/tools/DOMAINcfg – NEMO

source: utils/tools/DOMAINcfg/2_namelist_cfg @ 14720

Last change on this file since 14720 was 14624, checked in by ldebreu, 3 years ago

AGFdomcfg: Update namelist files (jpiglo, jpjglo are replaced by NiGlo0, NjGlo0 version #2638

File size: 5.4 KB
Line 
1!! NEMO/OCE :   Configuration namelist_cfg used to overwrite defaults value defined in namelist_ref
2!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
3!! NEMO/OCE  :  1 - Domain & run manager (namrun, namcfg, namdom, namzgr, namzgr_sco )
4!!              2 - diagnostics      (namnc4)
5!!              3 - miscellaneous    (nammpp, namctl)
6!!
7!! namelist skeleton : egrep -E '(^/ *$|^! *$|^ *$|&nam.*|!---.*|!! .*|!!==.*|!!>>>.*)' namelist_ref > namelist_skl
8!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
9!-----------------------------------------------------------------------
10&namrun        !   parameters of the run
11!-----------------------------------------------------------------------
12/
13!-----------------------------------------------------------------------
14&namdom        !   space and time domain (bathymetry, mesh, timestep)
15!-----------------------------------------------------------------------
16   ln_read_cfg = .false.
17   nn_bathy = 2
18                           !  or compute (2) from external bathymetry
19   nn_interp = 1
20   cn_domcfg   = 'ORCA_R2_zps_domcfg_agrif.nc'               
21   cn_topo = 'GEBCO_2020.nc'
22   cn_bath = 'elevation'
23   cn_lon = 'lon'
24   cn_lat = 'lat'
25   rn_scale = -1
26   rn_bathy    =    0.     !  value of the bathymetry. if (=0) bottom flat at jpkm1
27   jphgr_msh   =       0               !  type of horizontal mesh
28   ppglam0     =  999999.0             !  longitude of first raw and column T-point (jphgr_msh = 1)
29   ppgphi0     =  999999.0             ! latitude  of first raw and column T-point (jphgr_msh = 1)
30   ppe1_deg    =  999999.0             !  zonal      grid-spacing (degrees)
31   ppe2_deg    =  999999.0             !  meridional grid-spacing (degrees)
32   ppe1_m      =  999999.0             !  zonal      grid-spacing (degrees)
33   ppe2_m      =  999999.0             !  meridional grid-spacing (degrees)
34   ppsur       =   -4762.96143546300   !  ORCA r4, r2 and r05 coefficients
35   ppa0        =     255.58049070440   ! (default coefficients)
36   ppa1        =     245.58132232490   !
37   ppkth       =      21.43336197938   !
38   ppacr       =       3.0             !
39   ppdzmin     =  999999.              !  Minimum vertical spacing
40   pphmax      =  999999.              !  Maximum depth
41   ldbletanh   =  .FALSE.              !  Use/do not use double tanf function for vertical coordinates
42   ppa2        =  999999.              !  Double tanh function parameters
43   ppkth2      =  999999.              !
44   ppacr2      =  999999.              !
45/
46!-----------------------------------------------------------------------
47&namcfg        !   parameters of the configuration
48!-----------------------------------------------------------------------
49   !
50   ln_e3_dep   = .true.    ! =T : e3=dk[depth] in discret sens.
51   !                       !      ===>>> will become the only possibility in v4.0
52   !                       ! =F : e3 analytical derivative of depth function
53   !                       !      only there for backward compatibility test with v3.6
54   !                       !
55   cp_cfg = 'dumb'
56   jp_cfg      =       2   !  resolution of the configuration
57   jpidta = 132
58   jpjdta = 140
59   jpkdta      =      31   !  number of levels      ( >= jpk )
60   Ni0glo = 132
61   Nj0glo = 140
62   jpkglo      =      31
63   jperio = 0
64   ln_use_jattr = .false.  !  use (T) the file attribute: open_ocean_jstart, if present
65                           !  in netcdf input files, as the start j-row for reading
66   ln_domclo = .false.     ! computation of closed sea masks (see namclo)
67/
68!-----------------------------------------------------------------------
69&namzgr        !   vertical coordinate                                  (default: NO selection)
70!-----------------------------------------------------------------------
71!-----------------------------------------------------------------------
72   ln_zco      = .false.   !  z-coordinate - full    steps
73   ln_zps      = .true.   !  z-coordinate - partial steps
74   ln_sco      = .false.   !  s- or hybrid z-s-coordinate
75   ln_isfcav   = .false.   !  ice shelf cavity             (T: see namzgr_isf)
76/
77!-----------------------------------------------------------------------
78&namzgr_isf    !   isf cavity geometry definition
79!-----------------------------------------------------------------------
80/
81!-----------------------------------------------------------------------
82&namzgr_sco    !   s-coordinate or hybrid z-s-coordinate                (default F)
83!-----------------------------------------------------------------------
84/
85!-----------------------------------------------------------------------
86&namclo ! (closed sea : need ln_domclo = .true. in namcfg)
87!-----------------------------------------------------------------------
88/
89!-----------------------------------------------------------------------
90&namlbc        !   lateral momentum boundary condition                  (default: NO selection)
91!-----------------------------------------------------------------------
92/
93!-----------------------------------------------------------------------
94&namagrif      !  AGRIF zoom                                            ("key_agrif")
95!-----------------------------------------------------------------------
96/
97!-----------------------------------------------------------------------
98&namnc4        !   netcdf4 chunking and compression settings            ("key_netcdf4")
99!-----------------------------------------------------------------------
100/
Note: See TracBrowser for help on using the repository browser.