Changes between Initial Version and Version 1 of PDAF_gather_obs_f


Ignore:
Timestamp:
Dec 20, 2017, 5:26:48 PM (6 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_gather_obs_f

    v1 v1  
     1= PDAF_gather_obs_f =
     2
     3This page documents the routine `PDAF_gather_obs_f` of PDAF, which was introduced with PDAF V1.13.
     4
     5In the local filters (LESKTF, LETKF, LSEIK, LNETF) this routine gathers the full observation vector dimension from process-local observation vectors of size dim_obs_p and returns the full vector.
     6
     7The routine depends on `PDAF_gather_dim_obs_f` which defines the process-local observation dimensions.
     8
     9The routine is typically used in the routines `init_dim_obs_f_pdaf` and `obs_op_f_pdaf` if the analysis step of the local filters is parallelized.
     10
     11The interface is the following:
     12{{{
     13  SUBROUTINE PDAF_gather__obs_f(obs_p, obs_f, status)
     14}}}
     15with the following arguments:
     16 * `obs_p` : `integer, intent(in)`[[BR]] Process-local observation vector
     17 * `obs_f` : `integer, intent(out)`[[BR]] Full observation vector
     18 * `status` : `integer, intent(out)`[[BR]] Status flag (0 for no error)
     19
     20Notes:
     21 * The routine `PDAF_gather_dim_obs_f` has to be called once before using `PDAF_gather_obs_f` because it internally initializes the local observation dimensions for gathering. The most recent call to `PDAF_gather_dim_obs_f` defines the dimensions used here.