Changes between Initial Version and Version 1 of ImplementationofAnalysisStepuntilOnePointSeven


Ignore:
Timestamp:
Feb 6, 2012, 9:20:05 AM (12 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImplementationofAnalysisStepuntilOnePointSeven

    v1 v1  
     1= Implementation of the analysis step =
     2
     3'''This version of the documentation is valid for PDAF until and including V1.7.'''
     4
     5The implementation of the analysis step has not changed between versions 1.7 and 1.8. The only differences are that the new ESTKF and LESTKF algorithms have been added. Further, an addition sub type (`subtype=4`) of SEIK and LSEIK has been introduced. For the implementation of the analysis steps, please see the current documentation:
     6
     7{{{
     8#!html
     9<div class="wiki-toc">
     10<h4>Implementation Guide</h4>
     11<ol><li><a href="ImplementationGuideuntilonePointSeven">Main page</a></li>
     12<li><a href="AdaptParallelizationuntilonePointSeven">Adaptation of the parallelization</a></li>
     13<li><a href="InitPdafuntilonePointSeven">Initialization of PDAF</a></li>
     14<li><a href="ModifyModelforEnsembleIntegrationuntilonePointSeven">Modifications for ensemble integration</a></li>
     15<li>Implementation of the analysis step</li>
     16<ol>
     17<li><a href="ImplementAnalysisseik">Implementation for SEIK</a></li>
     18<li><a href="ImplementAnalysislseik">Implementation for LSEIK</a></li>
     19<li><a href="ImplementAnalysisetkf">Implementation for ETKF</a></li>
     20<li><a href="ImplementAnalysisletkf">Implementation for LETKF</a></li>
     21<li><a href="ImplementAnalysisseek">Implementation for SEEK</a></li>
     22<li><a href="ImplementAnalysisenkf">Implementation for EnKF</a></li>
     23</ol>
     24<li><a href="AddingMemoryandTimingInformation">Memory and timing information</a></li>
     25</ol>
     26</div>
     27}}}
     28
     29The 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.
     30
     31Several of the routines are general and hence usable for all filter algorithms. There are some differences between local (LSEIK and LETKF) and global filters (SEIK, SEEK, EnKF, ETKF). The routines are described in separate pages for each filter algorithm. The general routines will be repeated, but they are marked as general.
     32
     33Filter-specific implementations for global filters:
     34 * [ImplementAnalysisseik Implementation of the analysis for the SEIK filter]
     35 * [ImplementAnalysisetkf Implementation of the analysis for the ETKF]
     36 * [ImplementAnalysisseek Implementation of the analysis for the SEEK filter]
     37 * [ImplementAnalysisenkf Implementation of the analysis for the EnKF]
     38
     39Filter-specific implementations for local filters:
     40 * [ImplementAnalysislseik Implementation of the analysis for the LSEIK filter]
     41 * [ImplementAnalysisletkf Implementation of the analysis for the LETKF]
     42
     43== Testing the full implementation ==
     44
     45After 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'.
     46
     47To 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.
     48
     49