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.
README.rst in NEMO/branches/2019/ENHANCE-03_domcfg – NEMO

source: NEMO/branches/2019/ENHANCE-03_domcfg/README.rst @ 13121

Last change on this file since 13121 was 11659, checked in by mathiot, 5 years ago

ENHANCE-03_domcfg: update README.rst (ticket #2143)

File size: 4.1 KB
RevLine 
[7421]1================================
2= HOW TO COMPILE
3================================
[6956]4The DOMAINcfg tool can be compiled using the maketools script in the NEMOGCM/TOOLS directory as follows:
5:::::::::::::::::::::::::::::::::
6./maketools -m $ARCH -n DOMAINcfg
7:::::::::::::::::::::::::::::::::
8where $ARCH indicates the arch file to be used from the directory NEMOGCM/ARCH.
[6955]9
[6956]10DOMAINcfg compiled will create "make_domain_cfg.exe" executable script (the main routine of this tool is make_domain_cfg.f90)
[7108]11
[7421]12================================
13= HOW TO RUN
14================================
15just run :
16:::::::::::::::::::::::::::::::::::::::::::::::::
[7828]17mpirun -np 1 ./make_domain_cfg.exe
[7421]18:::::::::::::::::::::::::::::::::::::::::::::::::
19NOTA: it can be run in multiproc mode, but in output there will be domain_cfg_00xx.nc files
20
21================================
22= HOW TO USE
23================================
241) copy in DOMAINcfg  directory namelist_cfg all settings (that you had in 3.6_stable) of the configuration for which you want prepare domain_cfg.nc file
[9079]25IMPORTANT : keep the namelist_ref committed inchanged. !!!
[7421]26
[11628]27NEW OPTION:
28* ln_e3_dep
[7421]29till nemo_v3.6_stable e3 were done like an analytical derivative of depth function
30now  e3=dk[depth] in discret sens
31
32If you want to create same e3[tuvw] like 3.6 you've to use "ln_e3_dep=.false."
33
34 ln_e3_dep   = .true.    ! =T : e3=dk[depth] in discret sens.
35   !                       !      ===>>> will become the only possibility in v4.0
36   !                       ! =F : e3 analytical derivative of depth function
37   !                       !      only there for backward compatibility test with v3.6
38   !
39
[11628]40* ln_domclo
41The definition of closed sea are now integrated into ./make_domain_cfg.exe. The need on an external python script and hard coded indices has been removed.
42ln_domclo=T will generate the masks needed to mask or correct
43the fwf unbalance over closed sea. If non defined closed sea are detected, a mask containing this will also be generated.
44The detection of the lake is done using a lat/lon seed and a flood filling algorithm (the default namelist should work for any resolution).
45The definition of the target area is done by defining a lat/lon position center, then all wet points at a defined distance of it will be selected.
46Options are available to select only coastal points if needed.
[11659]47For each lake, name, lon_src, lat_src, lon_trg, lat_trg, river mouth area, correction scheme, radius trg, id trg need to be defined.
48* lon/lat_src/trg are the seed location of the closed sea (src) and its river outflow (trg).
49* river mouth area is to defined is you spread the closed sea emp correction locally (circle with raduis 'radius trg' in m)
50  or along the coast point into a circle with raduis 'radius trg' (in m)
51  or globally (open sea mask)
52* correction scheme defined how you want to spread the closed sea correction
53  * glo : as emp globally
54  * rnf : as a runoff for the net precip and on emp for net evaporation case locally or along the coast
55  * emp : as emp locally or along the coast
56* id trg is a integer used to defined group of closed sea and their river outflow (for example all the great lake and the St Laurent outflow).
[11628]57
[7421]582) copy in DOMAINcfg directory same input files (of related configuration) required in v3.6_stable.
59
60DOMAINcfg package is EXACTLY what does exist in NEMO version 3.6 to define a model domain (both domain related namelist and initialization).
61DOMAINcfg tool creates a netcdf file "domain_cfg.nc" containing all the ocean domain informations required to define an ocean configuration,
62these files are :
63         
64    domain size
65    domain characteristics (periodic)
66    horizontal mesh
67    Coriolis parameter
68    depth and vertical scale factors
69
[6984]70FOR EXAMPLE
71- for AMM12 :
72            coordinates.nc
73            bathy_meter.nc
74            bathy_level.nc
75            amm12_rivers.nc
76            coordinates.bdy.nc
77            amm12_restart_oce.nc
78         directories:   bdydta/
79                        fluxes/
80- for ORCA2 :
81            coordinates.nc
82            bathy_meter.nc
83            bathy_level.nc
84            domain_def.xml
85            field_def.xml
86            iodef.xml
Note: See TracBrowser for help on using the repository browser.