Changes between Version 5 and Version 6 of AddFilterAlgorithm
- Timestamp:
- Nov 11, 2011, 4:13:37 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AddFilterAlgorithm
v5 v6 9 9 == Internal Interface of PDAF == 10 10 11 The internal interface of PDAF is s cructured as follows ('X' is the name of the filter algorithm):11 The internal interface of PDAF is stcructured as follows ('X' is the name of the filter algorithm): 12 12 13 13 The routine `PDAF_init` calls … … 34 34 * `PDAF_X_update` 35 35 * This routine contains the actual assimilation or analysis step of the filter algorithm. 36 37 When `PDAF_init` is called, the filter algorithm is chosen by its ID number. Internally to PDAF, each filter is identified by a string that is defined in `PDAF_init_filters`. The interface routines have a very simple structure. In general, they select the filter-specific routine based on the string identifying the filters. When a filter algorithm is added a line for the corresponding filter-specific routine has to be inserted to each of the interface routines.