Changes between Initial Version and Version 1 of l2g_state_pdaf


Ignore:
Timestamp:
Jan 21, 2016, 4:40:42 PM (8 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • l2g_state_pdaf

    v1 v1  
     1= l2g_state_pdaf =
     2
     3The page document the user-supplied call-back routine `l2g_state_pdaf`.
     4
     5The routine `l2g_state_pdaf` (called `U_l2g_state_pdaf` inside the PDAF core routines) is a call-back routine that has to be provided by the user.
     6The routine is used with all filter algorithms using domain-localization (LSEIK, LETKF, LESTKF) and is independent of the particular algorithm.
     7The routine is called during the loop over the local analysis domains in the analysis step.
     8It has to initialize the part of the global state vector `state_p` that corresponds to the local analysis domain with index `domain_p`. Provided to the routine is the state vector `state_l` for the local analysis domain.
     9
     10
     11The interface is the following:
     12{{{
     13SUBROUTINE l2g_state_pdaf(step, domain_p, dim_l, state_l, dim_p, state_p)
     14}}}
     15with
     16 * `step` : `integer, intent(in)`[[BR]] Current time step
     17 * `domain_p` : `integer, intent(in)`[[BR]] Index of current local analysis domain
     18 * `dim_p` : `integer, intent(in)`[[BR]] Dimension of state vector for parallel model sub-domain
     19 * `dim_l` : `integer, intent(in)`[[BR]] Dimension of state vector in local analysis domain
     20 * `state_l` : `integer, intent(in), dimension(dim_l)`[[BR]] State vector on local analysis domain
     21 * `state_p` : `integer, intent(out), dimension(dim_p)`[[BR]] State vector for parallel model sub-domain
     22
     23Hints:
     24 * In the simple case that a local analysis domain is a single point of the model grid, the operation in this routine would be to write into `state_p` the data (i.e. the different model fields) for the grid point corresponding to the index `domain_p`.