Changes between Version 2 and Version 3 of FeaturesofPdaf


Ignore:
Timestamp:
Sep 6, 2010, 9:28:21 AM (14 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FeaturesofPdaf

    v2 v3  
    33 * PDAF is implemented in Fortran90. However, the standard interface also supports models that are written in C or C++.
    44 * The parallelization uses the MPI (Message Passing Interface) standard.
    5  * The core routines are fully independent of the model code. They can be compiled seperately and can be used as a library
     5 * The core routines are fully independent of the model code. They can be compiled seperately and can be used as a library.
    66
    77== Filter algorithms ==
     
    1919 * EnKF (The classical formulation with perturbed observations by Evensen (1994)
    2020
     21
     22== Simplifying the implementation ==
     23
     24PDAF simplifies the implementation of data assimilation systems using existing model code by the following:
     25
     26 1. PDAF provides fully implemented, parallelized, and optimized ensemble-based algorithms for data assimilation. Currently, these are ensemble-based Kalman filters like the LSEIK, LETKF, and EnKF methods.
     27 1. PDAF is attached to the model source code by minimal changes to the code. These changes only concern the general part of the code, but not the numerics of the model. In addition, a small set of routines is required that are specific to the model or the observations to be assimilated. These routines can be implemented like routines of the model.
     28 1. PDAF is called through a well-defined standard interface. This allows, for example, to switch between the LSEIK and LETKF methods without additional coding.
     29 1. PDAF provides parallelization support for the data assimilation system. If your numerical model is already parallelized, PDAF enables the data assimilation system to run several model tasks in parallel within a single executable. However, PDAF can also be used without parallelization, for example to test small systems.
     30 1. PDAF does not require that your model can be called as a subroutine. Rather PDAF is added to the model and the formed data assimilation system can be executed pretty much like the model-program would without data assimilation.
     31