Changes between Initial Version and Version 1 of OMI_ImplementationofAnalysisStep


Ignore:
Timestamp:
Nov 23, 2020, 7:12:26 PM (3 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OMI_ImplementationofAnalysisStep

    v1 v1  
     1= Implementation of the analysis step with OMI =
     2
     3{{{
     4#!html
     5<div class="wiki-toc">
     6<h4>Implementation Guide</h4>
     7<ol><li><a href="ImplementationGuide">Main page</a></li>
     8<li><a href="AdaptParallelization">Adaptation of the parallelization</a></li>
     9<li><a href="InitPdaf">Initialization of PDAF</a></li>
     10<li><a href="ModifyModelforEnsembleIntegration">Modifications for ensemble integration</a></li>
     11<li><a href="ImplementationofAnalysisStep">Implementation of the analysis step</a></li>
     12<ol>
     13<li><a href="ImplementAnalysisGlobal">Implementation for Global Filters</a></li>
     14<li><a href="ImplementAnalysisLocal">Implementation for Local Filters</a></li>
     15<li><a href="ImplementAnalysislenkfOmi">Implementation for LEnKF</a></li>
     16</ol>
     17</div>
     18}}}
     19
     20The 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.
     21
     22Several 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.
     23
     24Filter-specific implementations for global filters:
     25 * [ImplementAnalysisestkf Implementation of the analysis for the ESTKF]
     26 * [ImplementAnalysisetkf Implementation of the analysis for the ETKF]
     27 * [ImplementAnalysisseik Implementation of the analysis for the SEIK filter]
     28 * [ImplementAnalysisseek Implementation of the analysis for the SEEK filter]
     29 * [ImplementAnalysisenkf Implementation of the analysis for the EnKF]
     30 * [ImplementAnalysisnetf Implementation of the analysis for the NETF]
     31 * [ImplementAnalysispf Implementation of the analysis for the PF]
     32
     33Filter-specific implementations for domain-local filters:
     34 * [ImplementAnalysislestkf Implementation of the analysis for the LESTKF]
     35 * [ImplementAnalysisletkf Implementation of the analysis for the LETKF]
     36 * [ImplementAnalysislseik Implementation of the analysis for the LSEIK filter]
     37 * [ImplementAnalysislnetf Implementation of the analysis for the LNETF]
     38
     39Filter-specific implementation for filter with covariance localization:
     40 * [ImplementAnalysislenkf Implementation of the analysis for the LEnKF]
     41
     42(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)
     43
     44== Testing the full implementation ==
     45
     46After 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'.
     47
     48To 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.
     49
     50