28 | | In the routine `init_pdaf_offline` a number of variables are defined that are used in the call to `PDAF_init` as described below in '[#RequiredargumentsforPDAF_init Required arguments for `PDAF_init`]'. (Please note: All names of subroutines that start with `PDAF_` are core routines of PDAF, while subroutines whose name end with `_pdaf` are generally user-supplied call-back routines) There are also a few variables that are initialized in `init_pdaf_offline` but not used in the call to `PDAF_init`. These are variables that are specific for the data assimilation system, but only shared in between the user-supplied routines. For the tutorial example, these variables are described below in the section '[#Othervariablesfortheassimilation Other variables for the assimilation]' |
| 28 | In the routine `init_pdaf_offline` a number of variables are defined that are used in the call to `PDAF_init` as described below in '[#RequiredargumentsforPDAF_init Required arguments for `PDAF_init`]'. (Please note: All names of subroutines that start with `PDAF_` are core routines of PDAF, while subroutines whose name end with `_pdaf` are generally user-supplied call-back routines) There are also a few variables that are initialized in `init_pdaf_offline` but not used in the call to `PDAF_init`. These are variables that are specific for the data assimilation system, but only shared in between the user-supplied routines. For the tutorial example, these variables are described below in the section '[#Othervariablesfortheassimilation Other variables for the assimilation]'. |
| 29 | |
| 30 | The PDAF offline mode is activated by calling the routine PDAF_set_offline_mode, whic is usually done at the end of the routine `init_pdaf_offline`. |
127 | | The only mode-based filter supplied with PDAF is currenly the SEEK filter. For this filter the initialization bases on the decomposition of the state error covariance matrix in the form '''P''' = '''VUV^T^'''. According to this decomposition, the array `ens_p` has to be initialized to hold the modes from matrix '''V''' and `Uinv` holds the inverse of matrix '''U'''. In addition `state_p` has to be initialized with the initial state estimate. If a model with domain decomposition is used, the part of all modes for the local sub-domain of the MPI process and the corresponding part of the state vector has to be initialized. |
| 129 | To use the offline mode, it has to be activated by calling `PDAF_set_offline_mode`. This is usally done at the end of `init_pdaf`. The routine has a simple interface as follows: |
| 130 | {{{ |
| 131 | SUBROUTINE PDAF_set_offline_mode(screen) |
| 132 | |
| 133 | INTEGER, INTENT(in) :: screen ! Control verbosity of routine |
| 134 | ! >0: display information output |
| 135 | }}} |
| 136 | here `screen` is usually the same variable as what is used as argument in the call to `PDAF_init`. |
| 137 | |
| 138 | '''Note: ''' |
| 139 | * Before PDAF V2.2 one had to activate the offline mode by setting `subtype=5`. This has been replaced by the call to `PDAF_set_offline_mode` to give users flexibility in specifying `subtype`. Up to PDAF V2.3.1 the use of `subtype=5` was still possible. In PDAF V3.0 we removed this possibility and the call to `PDAF_set_offline_mode` is mandatory. |
136 | | PDAF ++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
137 | | PDAF +++ PDAF +++ |
138 | | PDAF +++ Parallel Data Assimilation Framework +++ |
139 | | PDAF +++ +++ |
140 | | PDAF +++ Version 2.1 +++ |
141 | | PDAF +++ +++ |
142 | | PDAF +++ Please cite +++ |
143 | | PDAF +++ L. Nerger and W. Hiller, Computers and +++ |
144 | | PDAF +++ Geosciences, 2013, 55, 110-118, +++ |
145 | | PDAF +++ doi:10.1016/j.cageo.2012.03.026 +++ |
146 | | PDAF +++ when publishing work resulting from using PDAF +++ |
147 | | PDAF ++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
| 148 | PDAF ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
| 149 | PDAF +++ PDAF +++ |
| 150 | PDAF +++ Parallel Data Assimilation Framework +++ |
| 151 | PDAF +++ +++ |
| 152 | PDAF +++ Version 2.3.1 +++ |
| 153 | PDAF +++ +++ |
| 154 | PDAF +++ Please cite +++ |
| 155 | PDAF +++ L. Nerger and W. Hiller, Computers and Geosciences +++ |
| 156 | PDAF +++ 2013, 55, 110-118, doi:10.1016/j.cageo.2012.03.026 +++ |
| 157 | PDAF +++ when publishing work resulting from using PDAF +++ |
| 158 | PDAF +++ +++ |
| 159 | PDAF +++ PDAF itself can also be cited as +++ |
| 160 | PDAF +++ L. Nerger. Parallel Data Assimilation Framework +++ |
| 161 | PDAF +++ (PDAF). Zenodo. 2024. doi:10.5281/zenodo.7861812 +++ |
| 162 | PDAF ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |