Changes between Initial Version and Version 1 of PDAFomi_obs_op_adj_gridpoint


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

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAFomi_obs_op_adj_gridpoint

    v1 v1  
     1= PDAFomi_obs_op_adj_gridpoint =
     2
     3This page documents the routine `PDAFomi_obs_op_adj_gridpoint` of PDAF-OMI.
     4
     5The routine provides an adjoint observation operator for observations that are grid point values in the state vector. It is usually called in `obs_op_adj_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_gridpoint(thisobs, state_p, obs_f_all)
     12
     13    TYPE(obs_f), INTENT(inout) :: thisobs      ! Data type with full observation
     14    REAL, INTENT(in)           :: obs_f_all(:) ! Full observed state for all observation types (array provided by PDAF)
     15    REAL, INTENT(inout)        :: state_p(:)   ! Process-local model state provided by PDAF
     16}}}
     17
     18'''Note:'''
     19 * The necessary index information for the observation operator was initialized in `init_obs_OBSTYPE` of the observation module.