Changes between Version 10 and Version 11 of ImplementFilterAnalysisOverviewPDAF3
- Timestamp:
- May 29, 2025, 6:03:11 PM (5 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImplementFilterAnalysisOverviewPDAF3
v10 v11 56 56 * `init_dim_l`: This routine determines the state vector size for the local analysis domain and initializes the index information to fill a local state vector 57 57 58 There might be two additional routines:58 In the special case, that the implementation does not use the recommend functionality of `PDAF3_assimilate` but `PDAF3_assimilate_local` instead, there are two additional routines: 59 59 * `g2l_state_pdaf`: This routine initializes a local state vector from the global state vector 60 60 * `l2g_state_pdaf`: This routine initializes elements of the global analysis state vector from a local state vector. 61 these routines are used in the special case, that the implementation does not use the recommend functionality of [wiki:PDAFlocal_overview PDAFlocal] . 61 See [wiki:ImplementAnalysisPDAF3UniversalLocal[ for more information. 62 63 For the covariance localization in the LEnKF and EnsRF/EAKF filters, there is the routine [wiki:PDAFomi_set_localize_covar], which is called in the observation-specific `init_dim_obs` routine of each observation module. 62 64 63 65 == Code examples in tutorial == … … 69 71 The implementations are described in detail in the [PdafTutorial PDAF tutorial slide sets]. 70 72 73 The template files in 74 {{{ 75 templates/ 76 }}} 77 provide the requires files without functionality. They contain instructions on what needs to be implemented and can help in the implementation steps. 78 79 71 80 == Documention of the required implementations == 72 81