Changes between Version 7 and Version 8 of ImplementAnalysisseik
- Timestamp:
- Aug 27, 2010, 9:28:07 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImplementAnalysisseik
v7 v8 57 57 == `U_init_obs` (init_obs.F90) == 58 58 59 This routine is used by all global filter algorithms (SEEK, SEIK, EnKF, ETKF). 60 61 The interface for this routine is: 62 59 63 {{{ 60 64 SUBROUTINE init_obs(step, dim_obs_p, observation_p) … … 65 69 }}} 66 70 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. 71 The routine is called during the analysis step. 72 It has to provide the vector of observations in `observation_p` for the current time step. 73 74 For a model using domain decomposition, the vector of observations that exist on the model sub-domain for the calling process has to be initialized. 72 75 73 76