Version 1 (modified by 9 years ago) (diff) | ,
---|
init_obsvar_l_pdaf
The page documents the user-supplied call-back routine init_obsvar_l_pdaf
.
The routine init_obsvar_l_pdaf
(called U_init_obsvar_l
inside the PDAF core routines) is a call-back routine that has to be provided by the user.
The routine is called in the local filters during the loop over all local analysis domains by the routine that computes a local adaptive forgetting factor (PDAF_set_forget_l
). The routine has to initialize a local mean observation error variance for all observations used for the analysis in the specified local analysis domain.
The routine is only called if the local adaptive forgetting factor is used (type_forget=2
in the example implementation). When the routine is called it has to return the mean observation error variance for the local observation domain.
The interface is the following:
SUBROUTINE init_obsvar_l_pdaf(domain_p, step, dim_obs_l, obs_l, meanvar_l)
with
domain_p
:integer, intent(in)
Index of current local analysis domainstep
:integer, intent(in)
Current time stepdim_obs_l
:integer, intent(in)
Local dimension of observation vectorobs_l
:real, intent(in), dimension(dim_obs_p)
Local observation vectormeanvar_l
:real, intent(out)
Mean local observation error variance
Notes:
- If the local adaptive forgetting factor is not used, this routine has only to exist for the compilation, but it does not need functionality.