| 1 | = PDAFomi_obs_op_gridavg = |
| 2 | |
| 3 | This page documents the routine `PDAFomi_obs_op_gridavg` of PDAF-OMI. |
| 4 | |
| 5 | The routine provides an 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]. |
| 6 | |
| 7 | || See the [wiki:OMI_observation_operators page describing PDAF-OMI observation operators] for a general overview.|| |
| 8 | |
| 9 | The interface is: |
| 10 | {{{ |
| 11 | SUBROUTINE PDAFomi_obs_op_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) :: state_p(:) ! Process-local model state provided by PDAF |
| 16 | REAL, INTENT(inout) :: obs_f_all(:) ! Full observed state for all observation types (array 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. |