= Implementation of the analysis step = {{{ #!html

Implementation Guide

  1. Main page
  2. Adaptation of the parallelization
  3. Initialization of PDAF
  4. Modifications for ensemble integration
  5. Implementation of the analysis step
    1. Implementation for ESTKF
    2. Implementation for LESTKF
    3. Implementation for ETKF
    4. Implementation for LETKF
    5. Implementation for SEIK
    6. Implementation for LSEIK
    7. Implementation for SEEK
    8. Implementation for EnKF
    9. Implementation for LEnKF
    10. Implementation for NETF
    11. Implementation for LNETF
    12. Implementation for PF
  6. Memory and timing information
}}} The implementation of the analysis step requires that the user-supplied routines whose names are given in the call to the filter-specific put-state routine are implemented with full functionality. Several of the routines are general and hence usable for all filter algorithms. There are some differences between the available local and global filters. The routines are described in separate pages for each filter algorithm. The general routines will be repeated, but they are marked as general. Filter-specific implementations for global filters: * [ImplementAnalysisestkf Implementation of the analysis for the ESTKF] * [ImplementAnalysisetkf Implementation of the analysis for the ETKF] * [ImplementAnalysisseik Implementation of the analysis for the SEIK filter] * [ImplementAnalysisseek Implementation of the analysis for the SEEK filter] * [ImplementAnalysisenkf Implementation of the analysis for the EnKF] * [ImplementAnalysisnetf Implementation of the analysis for the NETF] * [ImplementAnalysispf Implementation of the analysis for the PF] Filter-specific implementations for local filters: * [ImplementAnalysislestkf Implementation of the analysis for the LESTKF] * [ImplementAnalysisletkf Implementation of the analysis for the LETKF] * [ImplementAnalysislseik Implementation of the analysis for the LSEIK filter] * [ImplementAnalysislenkf Implementation of the analysis for the LEnKF] * [ImplementAnalysislnetf Implementation of the analysis for the LNETF] (The filters ESTKF and LESTKF have been added with PDAF version 1.8; the filters LEnKF, NETF and LNETF have been addid with PDAF version 1.12) == Testing the full implementation == After the implementation of the user-supplied routines for the analysis step, the data assimilation system is fully implemented. In order to test the program one has to compile it without setting 'PDAF_NO_UPDATE'. To speed up the testing it can be useful to comment out the time stepping part. In that case only the model initialization and the assimilation cycle would be executed, without the usually costly time integration of the ensemble. One should then check if all user-supplied routines perform as they should.