Changes between Initial Version and Version 1 of add_obs_error_pdaf


Ignore:
Timestamp:
Jan 21, 2016, 11:40:43 AM (8 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • add_obs_error_pdaf

    v1 v1  
     1= `add_obs_error_pdaf`=
     2
     3The page document the user-supplied call-back routine `add_obs_error_pdaf`.
     4
     5The routine `add_obs_error_pdaf` (called `U_add_obs_err` inside the PDAF core routines) is a call-back routine that has to be provided by the user.
     6The routine is used by the EnKF and called during the filter analysis step. The purpose of the routine is to add the observation error covariance matrix to the input/output matrix `C`. This matrix is the projection of the ensemble covariance matrix onto the observation space that is computed during the analysis step of the EnKF.
     7
     8The interface is the following:
     9{{{
     10SUBROUTINE add_obs_error_pdaf(step, dim_obs, C)
     11}}}
     12with
     13 * `step` : `integer, intent(in)`[[BR]] Current time step
     14 * `dim_obs` : `integer, intent(in)`[[BR]] Size of observation vector
     15 * `C` : `real, intent(inout), dimension(dim_obs,dim_obs)`[[BR]] Matrix to which the observation error covariance matrix is added
     16
     17The routine is called during the analysis step.
     18
     19The operation is for the global observation space. Thus, it is independent of whether the filter is executed with or without parallelization.
     20
     21Hints:
     22 * The routine does not require that the observation error covariance matrix is added as a full matrix. If the matrix is diagonal, only the diagonal elements have to be added.