Changes between Version 7 and Version 8 of ImplementAnalysisseik


Ignore:
Timestamp:
Aug 27, 2010, 9:28:07 AM (14 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImplementAnalysisseik

    v7 v8  
    5757== `U_init_obs` (init_obs.F90) ==
    5858
     59This routine is used by all global filter algorithms (SEEK, SEIK, EnKF, ETKF).
     60
     61The interface for this routine is:
     62
    5963{{{
    6064SUBROUTINE init_obs(step, dim_obs_p, observation_p)
     
    6569}}}
    6670
    67 ! User-supplied routine for PDAF (SEEK/SEIK/EnKF/ETKF):
    68 !
    69 ! The routine is called during the analysis step.
    70 ! It has to provide the PE-local observation vector
    71 ! for the current time step.
     71The routine is called during the analysis step.
     72It has to provide the vector of observations in `observation_p` for the current time step.
     73
     74For a model using domain decomposition, the vector of observations that exist on the model sub-domain for the calling process has to be initialized.
    7275
    7376