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_mpp on Ticket #1704 – Attachment – NEMO

Ticket #1704: namelist_mpp

File namelist_mpp, 1.2 KB (added by lovato, 8 years ago)

Revised offline decomposition tool NAMELIST example

Line 
1! ---------------------------------------------------------------------
2! nam_mpprep : mpp_domain_decomposition namelist
3! ---------------------------------------------------------------------
4!
5! jprocmin   = minimum number of proc to test (min allowed is 1)
6! jprocmax   = maximum number of proc to test
7!
8! jpiglo     = overall size of the domain (x-direction)
9! jpjglo     = overall size of the domain (y-direction)
10! jpkglo     = overall size of the domain (z-direction)
11!
12! gridname   = reference name of domain grid (e.g. ORCA2)
13! ln_mesh    = input file is mesh_mask (force clvar='tmask')
14! cbathy     = name of the input bathymetric file
15! clvar      = name of the data variable in input file
16! ln_zcord   = comply with nemo for z-coordinates bathymetry parsing
17! rn_hmin    = min value for bathymetry
18!
19! ln_order   = order possible combinations of PES by ocean only total
20!
21! ---------------------------------------------------------------------
22&nam_mpprep
23    jprocmin =   1
24    jprocmax =  1000
25!
26    jpiglo   =  362
27    jpjglo   =  292
28    jpkglo   =   46
29!
30    gridname = 'tn1v1'
31    ln_mesh  = .true.
32    cbathy   = 'tn1v1_mesh_mask.nc'
33    clvar    = 'Bathymetry'
34    ln_zcord = .true.     
35    rn_hmin  = 2
36!
37    ln_order = .true.
38/