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 @ 13204

Last change on this file since 13204 was 13204, checked in by smasson, 4 years ago

tools: update with tools_dev_r12970_AGRIF_CMEMS

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