Changes between Version 10 and Version 11 of AdaptParallelization


Ignore:
Timestamp:
Aug 23, 2010, 3:33:05 PM (14 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdaptParallelization

    v10 v11  
    4848The routine defines several more variables that are declared and held in the module `mod_parallel`. It can be useful to use this module with the model code as some of these variables are required when the initialization routine of PDAF (`PDAF_init`) is called.
    4949
     50== Arguments of `init_parallel_pdaf` ==
     51
     52The routine `init_parallel_pdaf` has two arguments, which are the following:
     53{{{
     54SUBROUTINE init_parallel_pdaf(dim_ens, screen)
     55}}}
     56 * `dim_ens`: An integer defining the ensemble size. This allows to check the consistency of the ensemble size with the number of processes of the program. If the ensemble size is specified after the call to `init_parallel_pdaf` (as in the example) it is recommended to set this argument to 0. In this case no consistency check is performed.
     57 * `screen`: An integer defining whether information output is written to the screen (i.e. standard output). The following choices are available:
     58  * 0: quite mode - no information is displayed.
     59  * 1: Display standard information about the configuration of the processes (recommended)
     60  * 2: Display detailed information for debugging
     61
     62
    5063== Compiling the extended program ==
    5164