Changes between Version 1 and Version 2 of doc/tec/nesting


Ignore:
Timestamp:
Mar 7, 2017 1:08:04 PM (8 years ago)
Author:
maronga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/tec/nesting

    v1 v2  
    33
    44== Job preparation ==
    5 The nesting system is activated by specifying a {{{&nestpar}}} NAMELIST in the _p3d file of the root domain, e.g.:
     5The following example provide a step-by-step tutorial on how to set up a nesting system with one parent (root) domain and two child domains.
     6
     71. Prepare parameter files for all domains, e.g. for run with topography and separate topography data for each domain:
     8{{{
     9testrun_p3d (root/parent domain)
     10testrun_01_p3d (child domain 1)
     11testrun_02_p3d (child domain 2)
     12testrun_topo
     13testrun_01_topo
     14testrun_02_topo
     15}}}
     16
     172. The nesting system is activated by specifying a {{{&nestpar}}} NAMELIST in the _p3d file of the '''root domain''', e.g.:
    618{{{
    719 &nestpar domain_layouts = 'root domain',      1,  -1,  24,    0.0,    0.0,
     
    1224/
    1325}}}
     26For details on the parameters, see [wiki:doc/app/nestpar#nestpar nestpar].
     27
     283. Add file connection statements for all child domains to the {{{.mrun.config}}} file,
     29{{{
     30#----------------------------------------------------------------------------
     31# List of input-files for nested model runs
     32#----------------------------------------------------------------------------
     33PARIN_01                  in:job        nest#      $base_data/$fname/INPUT   _01_p3d
     34PARIN_02                  in:job        nest#      $base_data/$fname/INPUT   _02_p3d
     35TOPOGRAPHY_DATA_01        in:locopt     nest#      $base_data/$fname/INPUT   _01_topo
     36TOPOGRAPHY_DATA_02        in:locopt     nest#      $base_data/$fname/INPUT   _02_topo
     37}}}
     38
     394. Execute {{{mrun}}} and specify the nesting input files, i.e.,
     40{{{
     41mrun -d testrun -r "d3# nest# ts# pr# ..." -X "72" ...
     42}}}
     43Make sure that the total number of PEs (here 72) the sum of the PEs allocated for the individual domains (3 x 24).