Changes between Version 2 and Version 3 of PDAF_set_debug_flag
- Timestamp:
- Jun 10, 2025, 9:21:51 AM (7 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PDAF_set_debug_flag
v2 v3 17 17 18 18 '''Notes: ''' 19 * To enable syntax checking one can include the interface defintion from 'PDAF_interfaces_module'. For this one has to use-include the routine by20 {{{21 USE PDAF_interfaces_module, only: PDAF_set_debug_flag22 }}}23 19 * For the localized filters, we recommend to activate the debugging only for single local analysis domain. Thus one can select some value of `domain_p`, e.g. in `init_dim_l_pdaf` and then call `PDAF_set_debug_flag` using `debugval=domain_p`, thus 24 20 {{{ … … 34 30 * For the global filters only the first 6 elements of state vectors are shown in order to keep the outputs compact. 35 31 * When implementing an application with PDAF it can be useful to activate the debug output in `init_pdaf` so that debug output from `PDAF_init` is shown. In particular one can see whether the input parameters or ensemble states have their correct values inside PDAF. If this is not the case, it might be that PDAF and the use code are compiled with different precision of the floating point (REAL) variables. 32 * For PDAF 2: To enable syntax checking one can include the interface defintion from 'PDAF_interfaces_module'. For this one has to use-include the routine by 33 {{{ 34 USE PDAF_interfaces_module, only: PDAF_set_debug_flag 35 }}}