Version 3 (modified by 9 years ago) (diff) | ,
---|
g2l_state_pdaf
The page document the user-supplied call-back routine g2l_state_pdaf
.
The routine g2l_state_pdaf
(called U_g2l_state
inside the PDAF core routines) is a call-back routine that has to be provided by the user.
The routine is used with all filter algorithms using domain-localization (LSEIK, LETKF, LESTKF) and is independent of the particular algorithm.
The routine is called during the loop over the local analysis domains in the analysis step. It has to provide the local state vector that corresponds to the specified local analysis domain. Provided to the routine is the state vector state_p
. With a domain decomposed model, this is the state for the process-local model sub-domain.
The interface is the following:
SUBROUTINE g2l_state_pdaf(step, domain_p, dim_p, state_p, dim_l, state_l)
with
step
:integer, intent(in)
Current time stepdomain_p
:integer, intent(in)
Index of current local analysis domaindim_p
:integer, intent(in)
Dimension of state vector for parallel model sub-domaindim_l
:integer, intent(in)
Dimension of state vector in local analysis domainstate_p
:integer, intent(in), dimension(dim_p)
State vector for parallel model sub-domainstate_l
:integer, intent(out), dimension(dim_l)
State vector on local analysis domain
Hints:
- 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 take out of
state_p
the data (i.e. the different model fields) for the grid point corresponding to the indexdomain_p
.