= Implementation Guide = {{{ #!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
  6. PDAF-OMI, the Observation Module Infrastructure
  7. Memory and timing information
  8. Ensemble Generation
  9. Ensemble Diagnostics
  10. Auxiliary routines
  11. Generate synthetic observations
  12. Filter-specific options
}}} This page contains the implementation guide for the online mode of PDAF in which the numerical model is coupled with PDAF into a single program. The [OfflineImplementationGuide implementation guide for the offline mode], in which separate programs for model integrations and assimilation step are executed, is provided on a [OfflineImplementationGuide separate page]. The differences between the online and offline modes is described on the page on the [GeneralImplementationConcept Implementation concept of PDAF]. For applied concrete examples on the implementation of a data assimilation system with PDAF, we recommend to first see our [PdafTutorial implementation tutorials]. The implementation guide here will then give a more complete, but also more abstract, guide for all options. == The implementation of PDAF with an existing model == For the online-mode of data assimilation, the numerical model has to be combined with PDAF into a single program to generate the assimilation system. The implementation of PDAF with an existing model can be performed in a few steps. A possible sequence is the following: 1. [AdaptParallelization Adaptation of the parallelization] 2. [InitPdaf Initialization of PDAF and the ensemble by PDAF_init] 3. [ModifyModelforEnsembleIntegration Modification of the model code for the ensemble integration] 4. [ImplementationofAnalysisStep Implementation of the analysis step] 5. [AddingMemoryandTimingInformation Adding memory and timing information] In Steps 1 to 3, PDAF is attached to the numerical model to allow it to perform ensemble integrations. Step 4 completes the data assimilation program with the analysis step. Finally, step 5 is optional to obtain information on the computing time and required memory. The implementation steps are described on the pages linked above. An example of the implementation is given in tutorial cose provided with PDAF in `tutorial/online_2D_serialmodel/` and `tutorial/online_2D_serialmodel/`. (The [PdafTutorial tutorial] also provides detail explanations of the implementation steps). Several subroutines that contain model and observation specific operations are called as call-back routines by PDAF. For this, PDAF defines interfaces for all routines. These routines need to be implemented by the user. The operations in all these routines are rather elementary like the initialization of the model's physical fields from a state vector provided by PDAF and the initialization of the vector of observations. The examples mentioned above also include example implementations for these routines. In addition, the directory `templates/` contains template implementations of the routines that can be used as a basis for new implementations. An overview of the available options for each filter that can be specified when PDAF is initialized is given on the [wiki:AvailableOptionsforInitPDAF overview page on options]. == Generating initial ensembles == To perform ensemble data assimilation one has to create an initial ensemble which is then used in the data assimilation process. There are various different ways to generate an ensemble (like random picking of model states, breeding, short-term integrations of perturbed model fields, second-order exact sampling from EOFs). PDAF provides routines to use snapshots from a model integration to first compute EOFs (empirical orthogonal functions) and then to use the EOFs to perform a constrained random transformation to obtain ensemble perturbations to which a central state (i.e. ensemble mean) is added. This second-order exact sampling (Pham, 2001) showed good performance in our own data assimilation applications. The ensemble generation is described on the separate page: 1. [EnsembleGeneration Ensemble Generation]