Changes between Version 30 and Version 31 of ImplementationofAnalysisStep
- Timestamp:
- May 16, 2025, 8:06:23 PM (35 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImplementationofAnalysisStep
v30 v31 34 34 #!html 35 35 <div class="wiki-toc"> 36 <h4>Implementation Guide</h4> 37 <ol><li><a href="ImplementationGuide">Main page</a></li> 38 <li><a href="AdaptParallelization">Adaptation of the parallelization</a></li> 39 <li><a href="InitPdaf">Initialization of PDAF</a></li> 40 <li><a href="ModifyModelforEnsembleIntegration">Modifications for ensemble integration</a></li> 41 <li><a href="PDAF_OMI_Overview">PDAF-OMI Overview</a></li> 36 <h4>Offline Mode: Implementation Guide</h4> 37 <ol><li><a href="OfflineImplementationGuide">Main page</a></li> 38 <li><a href="OfflineAdaptParallelization">Adaptation of the parallelization</a></li> 39 <li><a href="OfflineInitPdaf">Initialization of PDAF</a></li> 40 <li>Implementation of the analysis step</li> 41 <li><a href="OfflineAddingMemoryandTimingInformation">Memory and timing information</a></li> 42 </ol> 42 43 </div> 43 44 }}} … … 64 65 == Implementation of the analysis step without OMI == 65 66 66 PDAF-OMI was introduced with version 1.16 of PDAF. While we recommend using OMI, the [wiki: ImplementationofAnalysisStep_noOMI implementation of the analysis step without OMI] is still possible.67 PDAF-OMI was introduced with version 1.16 of PDAF. While we recommend using OMI, the [wiki:OfflineImplementationofAnalysisStep_noOMI implementation of the analysis step without OMI] is still possible. 67 68 68 69 … … 71 72 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'. 72 73 73 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.74 74 75