Changes between Version 4 and Version 5 of LnDevel


Ignore:
Timestamp:
Sep 3, 2010, 3:22:34 PM (14 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LnDevel

    v4 v5  
    99
    1010 * [ImplementAnalysislseik Implementation of the analysis for LSEIK]
     11
     12
     13= Implementation of the Analysis step for the SEIK filter =
     14
     15{{{
     16#!html
     17<div class="wiki-toc">
     18<h4>Implementation Guide</h4>
     19<ol><li><a href="ImplementationGuide">Main page</a></li>
     20<li><a href="AdaptParallelization">Adaptation of the parallelization</a></li>
     21<li><a href="InitPdaf">Initialization of PDAF</a></li>
     22<li><a href="ModifyModelforEnsembleIntegration">Modifications for ensemble integration</a></li>
     23<li><a href="ImplementationofAnalysisStep">Implementation of the analysis step</a></li>
     24<ol>
     25<li>Implementation for SEIK</li>
     26</ol>
     27<li><a href="AddingMemoryandTimingInformation">Memory and timing information</a></li>
     28</ol>
     29</div>
     30}}}
     31
     32[[PageOutline(2-3,Contents of this page)]]
     33
     34== Overview ==
     35
     36For the analysis step of the SEIK filter different operations related to the observations are needed. These operations are requested by PDAF by calling user-supplied routines. Intentionally, the operations are split into separate routines in order to keep the operations rather elementary. This procedure should simplify the implementation. The names of the required routines are specified in the call to the routine `PDAF_put_state_seik` that was discussed before. With regard to the parallelization, all these routines are executed by the filter processes (`filterpe=1`) only.
     37
     38The user-supplied routines for the SEIK filter are
     39 * [#U_init_dim_obsinit_dim_obs.F90 U_init_dim_obs]: The name of the user-supplied routine that provides the size of observation vector
     40 * [#U_obs_opobs_op.F90 U_obs_op]: The name of the user-supplied routine that acts as the observation operator on some state vector
     41 * [#U_init_obsinit_obs.F90 U_init_obs]: The name of the user-supplied routine that initializes the vector of observations
     42 * [#U_prodRinvAprodrinva.F90 U_prodRinvA]: The name of the user-supplied routine that computes the product of the inverse of the observation error covariance matrix with some matrix provided to the routine by PDAF. This operation occurs during the analysis step of the SEIK filter.
     43 * [#U_init_obsvarinit_obsvar.F90 U_init_obsvar]: The name of the user-supplied routine that provides a mean observation error variance to PDAF (This routine will only be executed, if an adaptive forgetting factor is used)
     44
     45Below the names of the corresponding routines in the template directory are provided in parentheses. The the routines in the example implementation have the same name but include '`_dummy_D`' in the name.
     46
     47== `U_init_dim_obs` (init_dim_obs.F90) ==
     48
     49This routine is used by all global filter algorithms (SEEK, SEIK, EnKF, ETKF).
     50
     51The interface for this routine is:
     52{{{
     53SUBROUTINE init_dim_obs(step, dim_obs_p)
     54
     55  INTEGER, INTENT(in)  :: step       ! Current time step
     56  INTEGER, INTENT(out) :: dim_obs_p  ! Dimension of observation vector
     57}}}
     58
     59The routine is called at the beginning of each analysis step.  It has to initialize the size `dim_obs_p` of the observation vector according to the current time step. Without parallelization `dim_obs_p` will be the size for the full model domain. When a domain-decomposed model is used, `dim_obs_p` will be the size of the observation vector for the sub-domain of the calling process.
     60
     61Some hints:
     62 * It can be useful to not only determine the size of the observation vector is determined at this point. One can also already gather information about the locations of the observations, which will be used later, e.g. to implement the observation operator. An array for the locations can be defined in a module like `mod_assimilation`.
     63
     64== `U_obs_op` (obs_op.F90) ==
     65
     66This routine is used by all global filter algorithms (SEEK, SEIK, EnKF, ETKF).
     67
     68The interface for this routine is:
     69{{{
     70SUBROUTINE obs_op(step, dim_p, dim_obs_p, state_p, m_state_p)
     71
     72  INTEGER, INTENT(in) :: step               ! Currrent time step
     73  INTEGER, INTENT(in) :: dim_p              ! PE-local dimension of state
     74  INTEGER, INTENT(in) :: dim_obs_p          ! Dimension of observed state
     75  REAL, INTENT(in)    :: state_p(dim_p)     ! PE-local model state
     76  REAL, INTENT(out) :: m_state_p(dim_obs_p) ! PE-local observed state
     77}}}
     78
     79The routine is called during the analysis step. It has to perform the operation of the observation operator acting on a state vector that is provided as `state_p`. The observed state has to be returned in `m_state_p`.
     80
     81For a model using domain decomposition, the operation is on the PE-local sub-domain of the model and has to provide the observed sub-state for the PE-local domain.
     82
     83Hint:
     84 * If the observation operator involves a global operation, e.g. some global integration, while using domain-decompostion one has to gather the information from the other model domains using MPI communication.
     85
     86== `U_init_obs` (init_obs.F90) ==
     87
     88This routine is used by all global filter algorithms (SEEK, SEIK, EnKF, ETKF).
     89
     90The interface for this routine is:
     91{{{
     92SUBROUTINE init_obs(step, dim_obs_p, observation_p)
     93
     94  INTEGER, INTENT(in) :: step             ! Current time step
     95  INTEGER, INTENT(in) :: dim_obs_p        ! PE-local dimension of obs. vector
     96  REAL, INTENT(out)   :: observation_p(dim_obs_p) ! PE-local observation vector
     97}}}
     98
     99The routine is called during the analysis step.
     100It has to provide the vector of observations in `observation_p` for the current time step.
     101
     102For a model using domain decomposition, the vector of observations that exist on the model sub-domain for the calling process has to be initialized.
     103
     104
     105== `U_prodRinvA` (prodrinva.F90) ==
     106
     107This routine is used by all filters whose algorithm uses the inverse of the observation error covariance matrix (SEEK, SEIK, and ETKF).
     108
     109The interface for this routine is:
     110{{{
     111SUBROUTINE prodRinvA(step, dim_obs_p, rank, obs_p, A_p, C_p)
     112
     113  INTEGER, INTENT(in) :: step                ! Current time step
     114  INTEGER, INTENT(in) :: dim_obs_p           ! PE-local dimension of obs. vector
     115  INTEGER, INTENT(in) :: rank                ! Rank of initial covariance matrix
     116  REAL, INTENT(in)    :: obs_p(dim_obs_p)    ! PE-local vector of observations
     117  REAL, INTENT(in)    :: A_p(dim_obs_p,rank) ! Input matrix from analysis routine
     118  REAL, INTENT(out)   :: C_p(dim_obs_p,rank) ! Output matrix
     119}}}
     120
     121The routine is called during the analysis step. In the algorithms the product of the inverse of the observation error covariance matrix with some matrix has to be computed. For the SEIK filter this matrix holds the observed part of the ensemble perturbations. The matrix is provided as `A_p`. The product has to be given as `C_p`.
     122
     123For a model with domain decomposition, `A_p` contains the part of the matrix that resides on the model sub-domain of the calling process. The product has to be computed for this sub-domain, too.
     124
     125Hints:
     126 * the routine does not require that the product is implemented as a real matrix-matrix product. Rather, the product can be implemented in its most efficient form. For example, if the observation error covariance matrix is diagonal, only the multiplication of the diagonal with matrix `A_p` has to be implemented.
     127 * The observation vector `obs_p` is provided through the interface for cases where the observation error variance is relative to the actual value of the observations.
     128
     129
     130
     131== `U_init_obsvar` (init_obsvar.F90) ==
     132
     133This routine is used by the global filter algorithms SEIK and  ETKF as well as the local filters LSEIK and LETKF. The routine is only called if the adaptive forgetting factor is used (`type_forget=1` in the example impementation).
     134
     135The interface for this routine is:
     136{{{
     137SUBROUTINE init_obsvar(step, dim_obs_p, obs_p, meanvar)
     138
     139  INTEGER, INTENT(in) :: step          ! Current time step
     140  INTEGER, INTENT(in) :: dim_obs_p     ! PE-local dimension of observation vector
     141  REAL, INTENT(in) :: obs_p(dim_obs_p) ! PE-local observation vector
     142  REAL, INTENT(out)   :: meanvar       ! Mean observation error variance
     143}}}
     144
     145The routine is called in the global filters during the analysis or
     146by the routine that computes an adaptive forgetting factor (PDAF_set_forget).
     147The routine has to initialize the mean observation error variance. 
     148For the global filters this should be the global mean.
     149
     150Hints:
     151 * For a model with domain-decomposition one might use the mean variance for the model sub-domain of the calling process. Alternatively one can compute a mean variance for the full model domain using MPI communication (e.g. the function `MPI_allreduce`).
     152 * The observation vector `obs_p` is provided to the rotine for the case that the observation error variance is relative to the value of the observations.