Changes between Version 2 and Version 3 of PDAF_get_local_type
- Timestamp:
- Mar 24, 2025, 9:54:32 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PDAF_get_local_type
v2 v3 1 1 = PDAF_get_local_type = 2 2 3 This page documents the routine `PDAF_get_local_type` of PDAF, which areintroduced with PDAF 3.0.3 This page documents the routine `PDAF_get_local_type` of PDAF, which was introduced with PDAF 3.0. 4 4 5 5 The 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. … … 11 11 The interface is the following: 12 12 {{{ 13 SUBROUTINE FUNCTION PDAF_local_type(localtype) 13 SUBROUTINE 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) 14 20 }}} 15 with argument:16 {{{17 Integer, Intent(Out) :: Localtype !< Localization Type Of The Filter18 !< (0) No Localization; Global Filter19 !< (1) Domain Localization (LESTKF, LETKF, LNETF, LSEIK)20 !< (2) Covariance Localization (LEnKF)21 !< (3) Covariance Loc. But Observation Handling Like Domain Localization (ENSRF/EAKF)22 21 23 `localtype` can be directly used, e.g. as22 The value of `localtype` can be directly used, e.g. as 24 23 {{{ 25 24 IF (localtype > 0) THEN