Changes between Version 23 and Version 24 of ImplementAnalysisenkf
- Timestamp:
- Jun 3, 2025, 5:27:03 PM (2 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImplementAnalysisenkf
v23 v24 52 52 == `PDAF_assimilate_enkf` == 53 53 54 The general aspects of the filter specific routines `PDAF_assimilate_*` have been described on the page [ ModifyModelforEnsembleIntegration Modification of the model code for the ensemble integration] and its sub-page on [InsertAnalysisStep inserting the analysis step]. The routine is used in the fully-parallel implementation variant of the data assimilation system. When the 'flexible' implementation variant is used, the routines `PDAF_put_state_*` is used as described further below. Here, we list once more the full interface of the routine. Subsequently, the full set of user-supplied routines specified in the call to `PDAF_assimilate_enkf` is explained.54 The general aspects of the filter specific routines `PDAF_assimilate_*` have been described on the page [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3 Modification of the model code for the ensemble integration]. The routine is used in the fully-parallel implementation variant of the data assimilation system. When the 'flexible' implementation variant is used, the routines `PDAF_put_state_*` is used as described further below. Here, we list once more the full interface of the routine. Subsequently, the full set of user-supplied routines specified in the call to `PDAF_assimilate_enkf` is explained. 55 55 56 56 The interface when using the EnKF is the following: … … 74 74 == `PDAF_put_state_enkf` == 75 75 76 When the 'flexible' implementation variant is chosen for the assimilation system, the routine `PDAF_put_state_enkf` has to be used instead of `PDAF_assimilate_enkf`. The general aspects of the filter specific routines `PDAF_put_state_*` have been described on the page [ ModifyModelforEnsembleIntegrationModification of the model code for the ensemble integration]. The interface of the routine is identical with that of `PDAF_assimilate_enkf` with the exception the specification of the user-supplied routines `U_distribute_state` and `U_next_observation` are missing.76 When the 'flexible' implementation variant is chosen for the assimilation system, the routine `PDAF_put_state_enkf` has to be used instead of `PDAF_assimilate_enkf`. The general aspects of the filter specific routines `PDAF_put_state_*` have been described on the page [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3 Modification of the model code for the ensemble integration]. The interface of the routine is identical with that of `PDAF_assimilate_enkf` with the exception the specification of the user-supplied routines `U_distribute_state` and `U_next_observation` are missing. 77 77 78 78 The interface when using the EnKF is the following: … … 85 85 == User-supplied routines == 86 86 87 Here all user-supplied routines are described that are required in the call to `PDAF_assimi alte_enkf`. For some of the generic routines, we link to the page on [ModifyModelforEnsembleIntegrationmodifying the model code for the ensemble integration].87 Here all user-supplied routines are described that are required in the call to `PDAF_assimilate_enkf`. For some of the generic routines, we link to the page on [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3 modifying the model code for the ensemble integration]. 88 88 89 89 To indicate user-supplied routines we use the prefix `U_`. In the tutorials in `tutorial/` and in the template directory `templates/` these routines exist without the prefix, but with the extension `_pdaf`. The files are named correspondingly. In the section titles below we provide the name of the template file in parentheses. … … 95 95 96 96 This routine is independent of the filter algorithm used. 97 See the page on [ InsertAnalysisStep#U_collect_statecollect_state_pdaf.F90 inserting the analysis step] for the description of this routine.97 See the page on [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3#U_collect_statecollect_state_pdaf.F90 inserting the analysis step] for the description of this routine. 98 98 99 99 … … 101 101 102 102 This routine is independent of the filter algorithm used. 103 See the page on [ InsertAnalysisStep#U_distribute_statedistribute_state_pdaf.F90 inserting the analysis step] for the description of this routine.103 See the page on [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3#U_distribute_statedistribute_state_pdaf.F90 inserting the analysis step] for the description of this routine. 104 104 105 105 … … 166 166 === `U_prepoststep` (prepoststep_ens_pdaf.F90) === 167 167 168 The general aspects of this routines have already been described on the [ ModifyModelforEnsembleIntegration#U_prepoststepprepoststep_ens_pdaf.F90 page on modifying the model code for the ensemble integration] for the SEIK filter. For completeness, the description is repeated specifically for the EnKF:168 The general aspects of this routines have already been described on the [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3#U_prepoststepprepoststep_ens_pdaf.F90 page on modifying the model code for the ensemble integration] for the SEIK filter. For completeness, the description is repeated specifically for the EnKF: 169 169 170 170 The interface of the routine is identical for all filters, but sizes can vary. Also, the particular operations that are performed in the routine can be specific for each filter algorithm. … … 252 252 253 253 This routine is independent of the filter algorithm used. 254 See the page on [ InsertAnalysisStep#U_next_observationnext_observation_pdaf.F90 inserting the analysis step] for the description of this routine.254 See the page on [wiki:OnlineModifyModelforEnsembleIntegration_PDAF3#U_next_observationnext_observation_pdaf.F90 inserting the analysis step] for the description of this routine. 255 255 256 256