Changes between Version 6 and Version 7 of OfflineInitPdaf


Ignore:
Timestamp:
Apr 2, 2025, 10:50:44 AM (27 hours ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OfflineInitPdaf

    v6 v7  
    2626In the offline mode, the routine `init_pdaf_offline` is executed after the initialization of the parallelization. (Note: In the main program of the example implementation (`main_offine.F90`) we added a call to a routine `initialize` in between for clarity of the implementation. As no real model initialization is conducted, this routine simply initializes the size of the model state. This initialization could also be performed in `init_pdaf_offline`.)
    2727
    28 In the routine `init_pdaf_offline` a number of variables are defined that are used in the call to `PDAF_init` as described below in '[#RequiredargumentsforPDAF_init Required arguments for `PDAF_init`]'. (Please note: All names of subroutines that start with `PDAF_` are core routines of PDAF, while subroutines whose name end with `_pdaf` are generally user-supplied call-back routines) There are also a few variables that are initialized in `init_pdaf_offline` but not used in the call to `PDAF_init`. These are variables that are specific for the data assimilation system, but only shared in between the user-supplied routines. For the tutorial example, these variables are described below in the section '[#Othervariablesfortheassimilation Other variables for the assimilation]'
     28In the routine `init_pdaf_offline` a number of variables are defined that are used in the call to `PDAF_init` as described below in '[#RequiredargumentsforPDAF_init Required arguments for `PDAF_init`]'. (Please note: All names of subroutines that start with `PDAF_` are core routines of PDAF, while subroutines whose name end with `_pdaf` are generally user-supplied call-back routines) There are also a few variables that are initialized in `init_pdaf_offline` but not used in the call to `PDAF_init`. These are variables that are specific for the data assimilation system, but only shared in between the user-supplied routines. For the tutorial example, these variables are described below in the section '[#Othervariablesfortheassimilation Other variables for the assimilation]'.
     29
     30The PDAF offline mode is activated by calling the routine PDAF_set_offline_mode, whic is usually done at the end of the routine `init_pdaf_offline`.
    2931
    3032The example implementation and the template version allow to parse all variables through a command line parser. This method provides a convenient way to define an experiment and could also be used for other models. The parser module is provided by the file `tutorial/offline_2D_serial/parser_mpi.F90`
     
    5961  * 100: GENOBS
    6062  * 200: 3DVAR
    61  * `subtype`: An integer defining the sub-type of the filter algorithm (always 5 for the offline mode)
     63 * `subtype`: An integer defining the sub-type of the filter algorithm
    6264 * `step_null`: Always 0 for the offline mode.
    6365 * `filter_param_i`: Integer array collecting several variables for PDAF. The first two variables are mandatory and equal for all filters. Further variables are optional (see example code). The mandatory variables are in the following order:
     
    116118=== Initialization for ensemble-based filters ===
    117119
    118 Generally, we work with ensemble-based filters (an exception is only the SEEK filter and the parameterized 3D-Var). For these filters only the array `ens_p` needs to be initialized by the ensemble of model states. If a model with domain decomposition is used, the full ensemble for the local sub-domain of the MPI process has to be initialized.
     120Generally, we work with ensemble-based filters (an exception is only the parameterized 3D-Var). For the ensemble-based filters only the array `ens_p` needs to be initialized by the ensemble of model states. If a model with domain decomposition is used, the full ensemble for the local sub-domain of the MPI process has to be initialized.
    119121
    120122The arrays `state_p` and `Uinv` are allocated to their correct sizes because they are used during the assimilation cycles. They are not yet initialized and it is allowed to use these arrays in the initialization. An exception from this is EnKF for which `Uinv` is allocated only with size (`1`,`1`), because `Uinv` is not using for EnKF.
     
    123125
    124126
    125 === Initialization for mode-based filters (deprecated in PDAF V2.x) ===
     127== Activating the offline mode with `PDAF_set_offline_mode` ==
    126128
    127 The only mode-based filter supplied with PDAF is currenly the SEEK filter. For this filter the initialization bases on the decomposition of the state error covariance matrix in the form '''P''' = '''VUV^T^'''. According to this decomposition, the array `ens_p` has to be initialized to hold the modes from matrix '''V''' and `Uinv` holds the inverse of matrix '''U'''. In addition `state_p` has to be initialized with the initial state estimate.  If a model with domain decomposition is used, the part of all modes for the local sub-domain of the MPI process and the corresponding part of the state vector has to be initialized.
     129To use the offline mode, it has to be activated by calling `PDAF_set_offline_mode`. This is usally done at the end of `init_pdaf`. The routine has a simple interface as follows:
     130{{{
     131  SUBROUTINE PDAF_set_offline_mode(screen)
     132
     133    INTEGER, INTENT(in) :: screen            ! Control verbosity of routine
     134                                             ! >0: display information output
     135}}}
     136here `screen` is usually the same variable as what is used as argument in the call to `PDAF_init`.
     137
     138'''Note: '''
     139 * Before PDAF V2.2 one had to activate the offline mode by setting `subtype=5`. This has been replaced by the call to `PDAF_set_offline_mode` to give users flexibility in specifying `subtype`. Up to PDAF V2.3.1 the use of `subtype=5` was still possible. In PDAF V3.0 we removed this possibility  and the call to `PDAF_set_offline_mode` is mandatory.
    128140
    129141== Testing the PDAF initialization ==
     
    134146Standard output from PDAF_init should look like the following:
    135147{{{
    136 PDAF    ++++++++++++++++++++++++++++++++++++++++++++++++++++++
    137 PDAF    +++                      PDAF                      +++
    138 PDAF    +++      Parallel Data Assimilation Framework      +++
    139 PDAF    +++                                                +++
    140 PDAF    +++                 Version 2.1                    +++
    141 PDAF    +++                                                +++
    142 PDAF    +++                 Please cite                    +++
    143 PDAF    +++     L. Nerger and W. Hiller, Computers and     +++
    144 PDAF    +++         Geosciences, 2013, 55, 110-118,        +++
    145 PDAF    +++         doi:10.1016/j.cageo.2012.03.026        +++
    146 PDAF    +++ when publishing work resulting from using PDAF +++
    147 PDAF    ++++++++++++++++++++++++++++++++++++++++++++++++++++++
     148PDAF    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     149PDAF    +++                       PDAF                         +++
     150PDAF    +++       Parallel Data Assimilation Framework         +++
     151PDAF    +++                                                    +++
     152PDAF    +++                  Version 2.3.1                     +++
     153PDAF    +++                                                    +++
     154PDAF    +++                   Please cite                      +++
     155PDAF    +++ L. Nerger and W. Hiller, Computers and Geosciences +++
     156PDAF    +++ 2013, 55, 110-118, doi:10.1016/j.cageo.2012.03.026 +++
     157PDAF    +++   when publishing work resulting from using PDAF   +++
     158PDAF    +++                                                    +++
     159PDAF    +++          PDAF itself can also be cited as          +++
     160PDAF    +++  L. Nerger. Parallel Data Assimilation Framework   +++
     161PDAF    +++  (PDAF). Zenodo. 2024. doi:10.5281/zenodo.7861812  +++
     162PDAF    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    148163
    149164
     
    158173
    159174PDAF    ESTKF configuration
    160 PDAF          filter sub-type = 5
    161 PDAF            --> offline mode
     175PDAF          filter sub-type = 0
     176PDAF            --> Standard ESTKF
    162177PDAF            --> Deterministic ensemble transformation
    163178PDAF            --> Use fixed forgetting factor: 1.00
     
    173188PDAF     #PEs     1
    174189PDAF        N    40
     190
     191PDAF: Call routine for ensemble initialization
     192
     193PDAF: Initialization completed
     194PDAF    Activate PDAF offline mode
    175195}}}
    176196