Changes between Version 1 and Version 2 of ImplementationofAnalysisStepuntilOnePointSeven


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

--

Legend:

Unmodified
Added
Removed
Modified
  • ImplementationofAnalysisStepuntilOnePointSeven

    v1 v2  
    22
    33'''This version of the documentation is valid for PDAF until and including V1.7.'''
    4 
    5 The 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:
    64
    75{{{
     
    1412<li><a href="ModifyModelforEnsembleIntegrationuntilonePointSeven">Modifications for ensemble integration</a></li>
    1513<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>
    2414<li><a href="AddingMemoryandTimingInformation">Memory and timing information</a></li>
    2515</ol>
     
    2717}}}
    2818
    29 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.
    3019
    31 Several 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 
    33 Filter-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 
    39 Filter-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 
    45 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'.
    46 
    47 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.
    48 
    49 
     20The 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 [ImplementationofAnalysisStep current documentation].