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_cfg in utils/tools/DOMAINcfg – NEMO

source: utils/tools/DOMAINcfg/namelist_cfg

Last change on this file was 15279, checked in by jchanut, 3 years ago

#2222 and #2638: Enable creating agrif meshes with different vertical grids (geopotential only as a start)

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