Changes between Initial Version and Version 1 of PDAFomi_obs_op_adj_gridavg


Ignore:
Timestamp:
Dec 18, 2021, 1:16:16 PM (2 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAFomi_obs_op_adj_gridavg

    v1 v1  
     1= PDAFomi_obs_op_adj_gridavg =
     2
     3This page documents the routine `PDAFomi_obs_op_gridavg` of PDAF-OMI.
     4
     5The routine provides an adjoint observation operator for observations that are the average of some grid point values in the state vector. It is usually called in `obs_op_OBSTYPE` in an [wiki:OMI_observation_modules OMI observation module] if a 3D-Var method is used.
     6
     7|| See the [wiki:OMI_observation_operators page describing PDAF-OMI observation operators] for a general overview.||
     8
     9The interface is:
     10{{{
     11  SUBROUTINE PDAFomi_obs_op_adj_gridavg(thisobs, nrows, state_p, obs_f_all)
     12
     13    TYPE(obs_f), INTENT(inout) :: thisobs  ! Data type with full observation
     14    INTEGER, INTENT(in) :: nrows           ! Number of values to be averaged
     15    REAL, INTENT(in)    :: obs_f_all(:)    ! Full observed state for all observation types (array provided by PDAF)
     16    REAL, INTENT(inout) :: state_p(:)      ! Process-local model state provided by PDAF
     17}}}
     18
     19'''Note:'''
     20 * The necessary index information for the observation operator was initialized in `init_obs_OBSTYPE` of the observation module.