Changes between Version 1 and Version 2 of PDAF3_put_state_global
- Timestamp:
- Mar 23, 2025, 3:27:32 PM (9 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PDAF3_put_state_global
v1 v2 13 13 The interface for using the global filters is: 14 14 {{{ 15 SUBROUTINE PDAF omi_put_state_global(U_collect_state, &15 SUBROUTINE PDAF3_put_state_global(U_collect_state, & 16 16 U_init_dim_obs_pdafomi, U_obs_op_pdafomi, & 17 17 U_prepoststep, status) … … 24 24 * `status`: The integer status flag. It is zero, if `PDAFomi_put_state_global` is exited without errors. 25 25 26 **Note:** 27 * The routine is identical to the routine `PDAFomi_put_state_global` of PDAF 2. The new name reflect consistency with `PDAF3_assimilate_global`. If one has used `PDAFomi_put_state_global` before one can just adapt the name of the called routine. 28 26 29 The user-supplied call-back routines are described on the page on [ImplementAnalysisGlobal implementing the analysis step of the global filters]. 27 30 28 31 It is recommended that the value of `status_pdaf` is checked in the program after PDAFomi_assimilate_global is executed. Only if its value is 0 the initialization was successful. 29 30 PDAF also has a [PdafSimplifiedInterface Simplified Interface] providing the routine `PDAFomi_put_state_global_si`. In the simplified interface, the name of the user-supplied routines have predefined names and do not appear in the call to `PDAFomi_put_state_global_si`. More information on the pre-defined names is provided in the [ImplementAnalysisGlobal page on implementing the analysis step of the global filters].31