Changes between Version 1 and Version 2 of PDAF_local_type


Ignore:
Timestamp:
Mar 21, 2025, 2:19:16 PM (4 weeks ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_local_type

    v1 v2  
    55The function is an alternative to the routine [wiki:PDAF_get_local_type]. Here the value is the return value of the function, while for `PDAF_get_local_type` the return value is an argument of the routine.
    66
    7 The function returns the information on the localization type of the selectd filter. With this one can distinguish filter using domain localization (LESTKF, LETKF, LSEIK, LNETF), covariance localization (LEnKF), or covariance localization with observation handling like domain localization (ENSRF/EAKF).
     7The function returns the information on the localization type of the selected filter. With this one can distinguish filters using domain localization (LESTKF, LETKF, LSEIK, LNETF), covariance localization (LEnKF), or covariance localization with observation handling like domain localization (ENSRF/EAKF).
    88
    9 The function can be called in init_dim_obs_OBSTYPE, of each observation module to control whether [wiki:PDAFomi_set_localize_covar] is called to initialize covariance localization.
     9The function can be called in `init_dim_obs_OBSTYPE`, of each observation module to control whether [wiki:PDAFomi_set_localize_covar] is called to initialize covariance localization.
    1010
    1111The interface is the following:
     
    1919 * (3) covariance localization. but observation handling like domain localization (ENSRF/EAKF)
    2020
    21 The return value can be directly used, e.g. as
     21
     22
     23**Notes:**
     24 * The function can also be used as an alternative to `PDAF_localfilter` in `assimilate_pdaf`.
     25 * The return value can be directly used, e.g. as
    2226{{{
    2327  IF (PDAF_local_type() > 0) THEN
    2428    CALL PDAFomi_set_localize_covar(...)
    2529}}}
    26 
    27 **Notes:**
    28  * The function can also be used as an alternative to `PDAF_localfilter` in `assimilate_pdaf`.