Changes between Version 2 and Version 3 of PDAF_get_local_type


Ignore:
Timestamp:
Mar 24, 2025, 9:54:32 AM (3 months ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_get_local_type

    v2 v3  
    11= PDAF_get_local_type =
    22
    3 This page documents the routine `PDAF_get_local_type` of PDAF, which are introduced with PDAF 3.0.
     3This page documents the routine `PDAF_get_local_type` of PDAF, which was introduced with PDAF 3.0.
    44
    55The routine is an alternative to the function [wiki:PDAF_local_type]. In the routine the return value is an argument of the routine, wile for the function the value is the return value of the function, which can be more directly used.
     
    1111The interface is the following:
    1212{{{
    13   SUBROUTINE FUNCTION PDAF_local_type(localtype)
     13SUBROUTINE FUNCTION PDAF_local_type(localtype)
     14
     15  INTEGER, INTENT(out) :: localtype !< Localization type of the filter
     16                       !<  (0) no localization; global filter
     17                       !<  (1) domain localization (LESTKF, LETKF, LNETF, LSEIK)
     18                       !<  (2) covariance localization (LEnKF)
     19                       !<  (3) covariance loc. but observation handling like domain localization (ENSRF)
    1420}}}
    15 with argument:
    16 {{{
    17   Integer, Intent(Out) :: Localtype !< Localization Type Of The Filter
    18                                     !< (0) No Localization; Global Filter
    19                                     !< (1) Domain Localization (LESTKF, LETKF, LNETF, LSEIK)
    20                                     !< (2) Covariance Localization (LEnKF)
    21                                     !< (3) Covariance Loc. But Observation Handling Like Domain Localization (ENSRF/EAKF)
    2221
    23 `localtype` can be directly used, e.g. as
     22The value of `localtype` can be directly used, e.g. as
    2423{{{
    2524  IF (localtype > 0) THEN