Changes between Initial Version and Version 1 of OMI_observation_modules_PDAF3


Ignore:
Timestamp:
May 27, 2025, 3:32:34 PM (8 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OMI_observation_modules_PDAF3

    v1 v1  
     1= PDAF-OMI Observation Modules =
     2
     3{{{
     4#!html
     5<div class="wiki-toc">
     6<h4>PDAF-OMI Guide</h4>
     7<ol><li><a href="PDAF_OMI_Overview_PDAF3">Overview</a></li>
     8<li><a href="OMI_Callback_obs_pdafomi_PDAF3">callback_obs_pdafomi.F90</a></li>
     9<li><a href="OMI_observation_modules_PDAF3">Observation Modules</a></li>
     10<li><a href="OMI_observation_operators_PDAF3">Observation operators</a></li>
     11<li><a href="ImplementationofAnalysisStep">Implementing the analysis step</a></li>
     12<li><a href="OMI_error_checking_PDAF3">Checking error status</a></li>
     13<li><a href="OMI_debugging_PDAF3">Debugging functionality</a></li>
     14<li><a href="nondiagonal_observation_error_covariance_matrices_PDAF3">Using nondiagonal R-matrices</a></<li>
     15<li><a href="OMI_additional_functionality_PDAF3">Additional OMI Functionality</a></li>
     16<li><a href="Porting_to_OMI_PDAF3">Porting an existing implemention to OMI</a></li>
     17</ol>
     18</div>
     19}}}
     20
     21
     22[[PageOutline(2-3,Contents of this page)]]
     23
     24== Overview ==
     25
     26The implementation of the observations with OMI is done in observation modules (obs-modules). For each observation type a separate module should be created.
     27
     28Each obs-module contains four routines (where 'TYPE' will be replaced by the name of the observation):
     29
     30 - `init_dim_obs_OBSTYPE` initializes all variables holding the information about one observation type. The information about the observation type is stored in a data structure (Fortran derived type).
     31 - `obs_op_OBSTYPE` applies the observation operator to a state vector. One can call an observation operator routine provided by PDAF, or one can to implement a new operator.
     32 - `init_dim_obs_l_OBSTYPE` calls a PDAF-OMI routine to initialize the observation information corresponding to a local analysis domain. One can set localization parameters, like the localization radius, for each observation type.
     33 - `localize_covar_OBSTYPE` calls a PDAF-OMI routine to apply covariance localization. One can set localization parameters, like the localization radius, for each observation type.
     34
     35The template file `obs_OBSTYPE_pdafomi_TEMPLATE.F90` shows the different steps needed when implementing these routines. The main work is to implement `init_dim_obs`, while the other routines mainly call a subroutine provided by PDAF-OMI.
     36
     37In the obs-module the subroutines are named according to the observation type. The template file uses generic names which can be replaced by the user. Having distinct names for each observation type is relevant to include the subroutine from the module in the call-back routine with ‘use’. In the header of each obs-module, the user can declare further variables, e.g. assim_OBSTYPE as a flag to control whether the observation type should be assimilated.
     38
     39'''Note:''' In contrast to the 'classical' implementation of observation routines for PDAF, the global and local filters use the same routines `init_dim_obs` and `obs_op`. PDAF-OMI recognizes whether a global or local filter is used and does the necessary operations by itself.
     40
     41== Data type obs_f ==
     42
     43To ensure the functionality within each obs-module, we rely on a derived data type called `obs_f` that contains all information about the observation. One instance of this data type is allocated in each obs-module with the generic variable name `thisobs`. A few of the elements of `obs_f` are initialized by the user when the observation information is initialized on `init_dim_obs_f`. Further variables is set in a call to the routine `PDAFomi_gather_obs`. This information is then used by all other routines in the obs-module. The template file `obs_OBSTYPE_pdafomi_TEMPLATE.F90` shows the different steps needed to initialize `thisobs`.
     44
     45The '''mandatory variables''' in `obs_f` that need to be set by the user are:
     46{{{
     47  TYPE obs_f
     48     ! ---- Mandatory variables to be set in INIT_DIM_OBS ----
     49     INTEGER :: doassim=0                 !< Whether to assimilate this observation type
     50     INTEGER :: disttype                  !< Type of distance computation to use for localization
     51                                          !   (0) Cartesian, (1) Cartesian periodic
     52                                          !   (2) simplified geographic, (3) geographic haversine function
     53                                          !   (10) Cartesian 2+1D factorized, (11) Cartesian periodic 2+1D factorized
     54                                          !   (12) simplified geographic 2+1D factorized
     55                                          ! (13) geographic haversine function  2+1D factorized
     56     INTEGER :: ncoord                    !< Number of coordinates use for distnce computation
     57     INTEGER, ALLOCATABLE :: id_obs_p(:,:) !< Indices of process-local observed field in state vector
     58     ...
     59  END TYPE obs_f
     60}}}
     61
     62In addition there are '''optional variables''' that the be used:
     63{{{
     64  TYPE obs_f
     65     ...
     66     ! ---- Optional variables - they can be set in INIT_DIM_OBS ----
     67     REAL, ALLOCATABLE :: icoeff_p(:,:)   !< Interpolation coefficients for obs. operator (optional)
     68     REAL, ALLOCATABLE :: domainsize(:)   !< Size of domain for periodicity (<=0 for no periodicity) (optional)
     69
     70     ! ---- Variables with predefined values - they can be changed in INIT_DIM_OBS  ----
     71     INTEGER :: obs_err_type=0            !< Type of observation error: (0) Gauss, (1) Laplace
     72     INTEGER :: use_global_obs=1          !< Whether to use (1) global full obs.
     73                                          !< or (0) obs. restricted to those relevant for a process domain
     74     ...
     75  END TYPE obs_f
     76}}}
     77
     78Apart from these variables, there is a number of variables that are set internally when the routine `PDAFomi_gather_obs` is called. The full data type can be seen on the [wiki:OMI_debugging_PDAF3 page on OMI debugging].
     79
     80
     81Next to the derived data type `obs_f`, there is a derived type `obs_l` for localization. This is only used internally. It will be filled in the routine `init_dim_obs_l` when calling `PDAFomi_init_dim_obs_l`.
     82
     83== `init_dim_obs_OBSTYPE` ==
     84
     85This is the main routine to initialize observation information.
     86
     87||= Please see the template file `templates/omi/obs_OBSTYPE_pdafomi_TEMPLATE.F90`[[br]] for a step-by-step description of the implementation steps. =||
     88
     89Each observation module uses the generic name '''thisobs''' for the variable with observation type `obs_f`. Elements of `thisobs` are accessed like
     90`thisobs%doassim`.
     91
     92The main variables that the filled in this routine are
     93 1. [wiki:OMI_observation_modules_PDAF3#thisobsdoassim thisobs%doassim]: Specify whether this observation type is assimilated
     94 1. [wiki:OMI_observation_modules_PDAF3#thisobsdisttype thisobs%disttype]: Specify the type of distance computation
     95 1. [wiki:OMI_observation_modules_PDAF3#thisobsncoord thisobs%ncoord]: Specify the number of dimensions used to compute distances
     96 1. [wiki:OMI_observation_modules_PDAF3#dim_obs_p dim_obs_p]: Count the number of available observations
     97 1. [wiki:OMI_observation_modules_PDAF3#obs_p obs_p]: Fill the vector of observations
     98 1. [wiki:OMI_observation_modules_PDAF3#ocoord_p ocoord_p]: store the coordinates of the observations (only actually used in case of localization)
     99 1. [wiki:OMI_observation_modules_PDAF3#ivar_obs_p ivar_obs_p]: store the inverse error variance of each observation for the default mode of OMI, which assumes a diagonal observation error covariance matrix
     100 1. [wiki:OMI_observation_modules_PDAF3#thisobsid_obs_p thisobs%id_obs_p]: store the indices of state vector elements that correspond to an observation (A single value for observation at grid points, or multiple values for derived quantities or interpolation; this is only used in the OMI-provided observation operators)
     101
     102When the observation operator performs interpolation, one further needs to initialize an array of interpolation coefficients ([wiki:OMI_observation_modules_PDAF3#thisobsicoeff_p thisobs%icoeff_p]). For Cartesian distance computation with periodicity one also needs to set [wiki:OMI_observation_modules#thisobsdomainsize thisobs%domainsize].
     103
     104Here one can also activate the [wiki:OMI_additional_functionality_PDAF3#Omittingobservationsthatarepotentialoutliers omission of observations that are too different from the ensemble mean]. This is activated by setting `thisobs%inno_omit>0.0`
     105
     106When parallel model with domain decomposition is used, the variables with suffix `_p` need to describe the observation information for a particular process domain. The following routine will perform the necessary operations to ensure that the parallelization is taken into account by PDAF.
     107
     108After these variables are filled, one calls
     109{{{
     110    CALL PDAFomi_gather_obs(thisobs, dim_obs_p, obs_p, ivar_obs_p, ocoord_p, &
     111         thisobs%ncoord, cradius, dim_obs)
     112}}}
     113This routine will complete all required initializations for OMI. As such it is mandatory to call the routine.
     114
     115The routine `PDAFomi_gather_obs` returns the number of observations `dim_obs` which is the return variable for PDAF. 
     116
     117Notes:
     118 * The value is `cradius` is only used if [wiki:OMI_observation_modules_PDAF3#thisobsuse_global_obs thisobs%use_global_obs=0].
     119 * `cradius` is always a single value. It should be set of the largest radius of the directions in which the process domain is split by parallelization. It defines the radius within which observations from neighboring process domains are taken into account.
     120
     121
     122== `obs_op_OBSTYPE` ==
     123
     124This routine applies the observation operator to a state vector. It returns the observed state vector to PDAF. The routine is used by all filters.
     125
     126PDAF-OMI provides several observation operators. For example the observation operator for observations that are grid point values is called as:
     127{{{
     128    CALL PDAFomi_obs_op_gridpoint(thisobs, state_p, ostate)
     129}}}
     130
     131Here, `state_p` is the state vector and `ostate` is the observed state vector.
     132
     133For more information on the available observation operators and on how to implement your own observation operator see the [wiki:OMI_observation_operators_PDAF3 documentation of observation operators for OMI].
     134
     135
     136== `init_dim_obs_l_OBSTYPE` ==
     137
     138This routine initializes local observation information. The routine is only used by the domain-localized filters (LESTKF, LETKF, LSEIK, LNETF, LKNETF).
     139
     140For the initialization the following routine is called:
     141{{{
     142    CALL PDAFomi_init_dim_obs_l(thisobs_l, thisobs, coords_l, &
     143         locweight, cradius, sradius, dim_obs_l)
     144}}}
     145
     146Here, `thisobs` and `thisobs_l` are the data-type variables `obs_f` and `obs_l`. `dim_obs_l`, the local size of the observation vector, is the direct output of the routine.
     147
     148''Implementation steps:''
     149 - Ensure that `coords_l` is filled in `init_dim_l_pdaf` and that the unit of `coords_l` is the same as that used fo rthe observation coordinates.
     150 - Specify the localization variables (These variables are usually set in `init_pdaf` and included with `use mod_assimilation`)
     151   - `locweight`: Type of localization (see table below)
     152   - `cradius`: The localization radius or directional radii (cut-off radius for the observations, weight is always =0 for distances > cradius)
     153   - `sradius`: The support radius (or directional redii) of the localization weight function
     154Note, that starting with PDAF V2.2.1 these three variables can be either scalar values - for isotropic localization-, or arrays - for non-isotropic localization and for additionally choose separate weights functions for the horizontal and vertical directions (see the notes below for more information)
     155
     156The setting of `locweight` influences the weight function for the localization. The choices are standardized as follows
     157
     158||= '''locweight''' =||= '''0''' =||= '''1''' =||= '''2''' =||= '''3''' =||= '''4''' =||
     159||= function =|| unit weight ||  exponential  ||  5-th order[[BR]]polynomial  ||  5-th order[[BR]]polynomial  ||  5-th order[[BR]]polynomial  ||
     160||= regulation =||  -  ||  -  ||  -  ||  regulation using[[BR]]mean variance  ||  regulation using variance[[BR]]of single observation point  ||
     161||= '''cradius''' =||||||||||||  weight=0 if distance > cradius  ||
     162||= '''sradius''' =||  no impact  ||  weight = exp(-d / sradius)  ||||||||  weight = 0 if d >= sradius[[BR]] else[[BR]] weight = f(sradius, distance)  ||
     163
     164Here, 'regulation' refers to the regulated localization introduced in Nerger, L., Janjić, T., Schröter, J., Hiller, W. (2012). A regulated localization scheme for ensemble-based Kalman filters. Quarterly Journal of the Royal Meteorological Society, 138, 802-812. ​[https://doi.org/10.1002/qj.945 doi:10.1002/qj.945].
     165
     166**Notes:**
     167- **isotropic localization**: If `cradius` and `sradius` are scalar values, the localization is isotropic. Thus, it uses the same `cradius` in all directions. If different localization scales should be applied e.g. in the vertical compared to the horizonal one needs to scale the vertical coordinates.
     168- **non-isotropic localization**: Nonisotropic localization was introduced with PDAF V2.2: `cradius` and `sradius` can be declared as vectors of length `thisobs%ncoords` and each element can get a different value. In this case, the values define a non-isotropic localization according to the values specified in `cradius` and `sradius`. PDAF-OMI will use these values to compute a directional localization radius.
     169- **2D+1D factorized non-isotropic localization**: With PDAF V2.2.1 a factorized 2D+1D localization can be specified (see [wiki:OMI_observation_modules#thisobsdisttype explanation of disttype]. If the non-isotropic localization is used one can specify different weight functions for the vertical and horizontal directions. This is achieved by declaring `loweight` as a vector of size 2. Now the first element specifies the weight function (according to the table above) for the horizontal direction and the second element specified the wieght function for the vertical direction. When 'locweight' is used as a scalar variable, it specified the weight function in the horizontal direction while the weight function in the vertical dircetion is a constant value of one.
     170- A common choice is to use `locweight=2` or `locweight=4` in combination with `cradius=sradius`. Choosing `sradius>cradius` is possible, but `sradius<cradius` should be avoided (one would set the weights of distant observation to zero, but would still assimilate them).
     171
     172== `localize_covar_OBSTYPE` ==
     173
     174This routine initializes local observation information. The routine is only used by the local EnKF (LEnKF).
     175
     176For the initialization the following routine is called:
     177{{{
     178    CALL PDAFomi_localize_covar(thisobs, dim_p, locweight, cradius, sradius, &
     179         coords_p, HP_p, HPH)
     180}}}
     181
     182Here, `thisobs` is the data-type variable `obs_f`. `HP_p` and `HPH` are the covariance matrices projected onto the observations. The localization will be applied to these variables.
     183
     184''Implementation steps:''
     185 - Ensure that `coords_p` is filled in `localize_covar_pdafomi`
     186 - Specify the localization variables (These variables are usually set in `init_pdaf` and included with `use mod_assimilation`)
     187   - `locweight`: Type of localization (see table above)
     188   - `cradius`: The localization radius (cut-off radius for the observations, weight is always =0 for distances > cradius)
     189   - `sradius`: The support radius of the localization weight function
     190Note, that starting with PDAF V2.2.1 these three variables can be either scalar values - for isotropic localization-, or arrays - for non-isotropic localization and for additionally choose separate weights functions for the horizontal and vertical directions (see the notes below for more information)
     191
     192**Notes:**
     193- **isotropic localization**: If `cradius` and `sradius` are scalar values, the localization is isotropic. Thus, it uses the same `cradius` in all directions. If different localization scales should be applied e.g. in the vertical compared to the horizonal one needs to scale the vertical coordinates.
     194- **non-isotropic localization**: Nonisotropic localization was introduced with PDAF V2.2: `cradius` and `sradius` can declared as vectors of length `thisobs%ncoords` and each element can get a different value. In this case, the values defined a non-isotropic localization according to the values specified in `cradius` and `sradius`.
     195- **non-isotropic localization**: Nonisotropic localization was introduced with PDAF V2.2: `cradius` and `sradius` can be declared as vectors of length `thisobs%ncoords` and each element can get a different value. In this case, the values define a non-isotropic localization according to the values specified in `cradius` and `sradius`. PDAF-OMI will use these values to compute a directional localization radius.
     196- **2D+1D factorized non-isotropic localization**: With PDAF V2.2.1 a factorized 2D+1D localization can be specified (see [wiki:OMI_observation_modules#thisobsdisttype explanation of disttype]. If the non-isotropic localization is used one can specify different weight functions for the vertical and horizontal directions. This is achieved by declaring `loweight` as a vector of size 2. Now the first element specifies the weight function (according to the table above) for the horizontal direction and the second element specified the wieght function for the vertical direction. When 'locweight' is used as a scalar variable, it specified the weight function in the horizontal direction while the weight function in the vertical dircetion is a constant value of one.
     197- A common choice for the localization is to use `locweight=2` or `locweight=4` in combination with `cradius=sradius`. Choosing `sradius>cradius` is possible, but `sradius<cradius` should be avoided (one would set the weights of distant observation to zero, but would still assimilate them).
     198- Particular for the LEnKF: When choosing `locweight=1` (exponential decrease) with a finite value of `cradius` if might be that the localized covariance matrices are no longer positive semidefinite. Mathematically consistent for `locweight=1` would be to set `cradius` so that the full model domain is covered. The width of the localization weight function is then defined by `sradius`. For `locweight>1` one should set `cradius=sradius`.
     199
     200== Additional routines for 3D-Var ==
     201
     202For the 3D-Var methods added with PDAF V2.0 two more routines are required in the observation module.
     203
     204=== `obs_op_lin_OBSTYPE` ===
     205
     206This routine applies the linearized observation operator to a state vector. It returns the observed state vector to PDAF. The routine is used only by the 3D-Var methods.
     207
     208'''Note:''' A separate routine for `obs_op_lin_OBSTYPE` is only required if the full observation operator in `obs_op_OBSTYPE` is nonlinear. If `obs_op_OBSTYPE` is linear, one can just insert calls to this operator in the routine `obs_op_lin_pdafomi` in `callback_obs_pdafomi.F90`.
     209
     210PDAF-OMI provides several linear observation operators. For example the observation operator for observations that are grid point values is called as:
     211{{{
     212    CALL PDAFomi_obs_op_gridpoint(thisobs, state_p, ostate)
     213}}}
     214
     215Here, `state_p` is the state vector and `ostate` is the observed state vector.
     216
     217For more information on the available observation operators and on how to implement your own observation operator see the [wiki:OMI_observation_operators_PDAF3 documentation of observation operators for OMI].
     218
     219=== `obs_op_adj_OBSTYPE` ===
     220
     221This routine applies the adjoint observation operator to an observation vector. It returns the state vector to PDAF. The routine is used only by the 3D-Var methods.
     222
     223PDAF-OMI provides consistent pairs of linear observation operators. For example the adjoint observation operator for observations that are grid point values is called as:
     224{{{
     225    CALL PDAFomi_obs_op_adj_gridpoint(thisobs, ostate, state_p)
     226}}}
     227
     228Here, `ostate` is the observation vector and `state_p` is the state vector.
     229
     230For more information on the available observation operators and on how to implement your own observation operator see the [wiki:OMI_observation_operators_PDAF3 documentation of observation operators for OMI].
     231
     232
     233== Implementing a new observation type ==
     234
     235To implement a new observation type, the approach is generally as follows:
     2361.      Create a copy of `obs_OBSTYPE_pdafomi_TEMPLATE.F90`
     2371.      Rename the module and its subroutines according to the observation (replacing ‘OBSTYPE’ by name of observation).
     2381.      Implement `init_dim_obs` for the observation type following the instructions in the template
     2391.      Adapt `obs_op` for the observation type
     2401.      Adapt `init_dim_obs_l` for the observation type (if using a domain_localized filter)
     2411.      Adapt `localize_covar` for the observation type (if using a the local EnKF)
     2421.      Add subroutine calls for the new observation type into the routines in `callback_obs_pdafomi.F90`
     243
     244
     245== Implementation hints for init_dim_obs ==
     246
     247=== `thisobs%doassim` ===
     248
     249Set this variable to 1 to let the filter assimilate this observation. The setting is usually conditional on the value of `assim_OBSTYPE` which is set in `init_pdaf`:
     250{{{
     251   IF (assim_OBSTYPE) thisobs%doassim = 1
     252}}}
     253
     254Starting with PDAF V2.3.1 one can also use
     255{{{
     256   IF (assim_OBSTYPE) CALL PDAFomi_set_doassim(thisobs, 1)
     257}}}
     258
     259=== `thisobs%ncoord` ===
     260
     261This variable specifies the dimension of the distance computations. Thus thisobs%ncoord=2 will lead to distance computations in 2 dimensions.
     262
     263This variable can either be set directly in the code, or, starting with PDAF V2.3.1 by calling [wiki:PDAFomi_set_ncoord].
     264
     265
     266=== `thisobs%disttype` ===
     267
     268This variable specifies the type of distance computation. Possible choices are
     269 - 0: Cartesian distance in ncoord dimension
     270 - 1: Cartesian distance in ncoord dimensions with periodicity (Needs specification of thisobs%domainsize(ncoord))
     271 - 2: Approximate geographic distance in meters with horizontal coordinates in radians (latitude: -pi/2 to +pi/2; longitude -pi/+pi or 0 to 2pi)
     272 - 3: Geographic distance computation in meters using haversine formula with horizontal coordinates in radians (latitude: -pi/2 to +pi/2; longitude -pi/+pi or 0 to 2pi)
     273With PDAF V2.2.1, a **2D+1D factorized localization** was introduced for 3-dimensional applications. With the factorized localization, the horizontal distance (components 1 and 2) is treated separately from the vertical direction (3rd component). This is available for both isoptropic and non-isotropic localization and activated using the choices
     274 - 10: Cartesian distance 2D+1D factorized in 3 dimensions
     275 - 11: Cartesian distance 2D+1D factorized in 3 dimensions with periodicity (Needs specification of thisobs%domainsize(ncoord))
     276 - 12: Approximate geographic distance 2D+1D factorized in meters with horizontal coordinates in radians (latitude: -pi/2 to +pi/2; longitude -pi/+pi or 0 to 2pi) and vertical in unit chosen by the user.
     277 - 13: Geographic distance computation 2D+1D factorized in meters using haversine formula with horizontal coordinates in radians (latitude: -pi/2 to +pi/2; longitude -pi/+pi or 0 to 2pi) and vertical in unit as chosen by the user.
     278
     279**Notes:**
     280- When disttype>=10 is specified with isotropic localization the weight function for the vertical direction is constant with a valu eof one. For non-isotropic localization, the weight functions can be separately specified for the vertical and horizontal directions. (see the [wiki:OMI_observation_modules_PDAF3#init_dim_obs_l_OBSTYPE description of init_dim_obs_l_OBSTYPE] for information on how to specify the ono-isotropic localization.
     281- For 0 and 1 (likewise 10, 11) any distance unit can be used. The computed distance will be in the same unit. For 2 and 3 the horizontal input coordinates are in radians and the distance is computed in meters. Essential is that the grid point coordinates and observation coordinates use the same unit.
     282- For 3-dimensional localization, the unit of the vertical direction can be chosen by the user. However, for geographic ditances, the unit should be chosen to be 'compatible' with the unit in the horizontal (meter). When isotropic localization is used, the unit for the vertical direction can be scaled do that the length scales in the vertical and horizontal directions are the same  (this, e.g., allows to use pressure as the distance measure in the vertical in atmospheric models). For non-isotropic localization, the units can differ without scaling. In ccase of the factorized 2D+1D localization (disttype>=10), the units in the horizontal and vertical directions are independent.
     283
     284See `/models/lorenz96/` for an example using case 1 with periodicity in one dimension.
     285
     286This variable can either be set directly in the code, or, starting with PDAF V2.3.1 by calling [wiki:PDAFomi_set_disttype].
     287
     288
     289=== `dim_obs_p` ===
     290
     291This is a single integer value giving the number of observations. With a parallel model using domain-decomposition this will be the number of observations  for the process sub-domain. For observation files holding all observations one can read these and then check which observation redice within the process sub-domain. `dim_obs_p` will be used to allocate further arrays and as input argument to `PDAFomi_gather_obs`.
     292
     293=== `obs_p` ===
     294
     295This should be a vector of real values. It will be used as an argument to `PDAFomi_gather_obs`. The order of the entries has to be consistent in the arrays `thisobs%id_obs_p`, `obs_p`, `ivar_obs_p`, and `ocoord_p`.
     296
     297
     298=== `ocoord_p` ===
     299
     300This should be a rank-2 array of real values with size (thisobs%ncoord, dim_obs_p). It will be used as an argument to `PDAFomi_gather_obs`. The order of the entries has to be consistent in the arrays `thisobs%id_obs_p`, `obs_p`, `ivar_obs_p`, and `ocoord_p`.
     301
     302The coordinates of the observation with index `k` are given by `ocoord_p(:,k)`.
     303
     304'''Note:''' The observation coordinate values  will only be used in case of the local filters or for computing interpolation coefficients. The array has always to be allocated because it is used in the call to PDAFomi_gather_obs.
     305
     306'''Note:''' The unit of `ocoord_p` and `coords_l` (in `init_dim_obs_l`) has to be the same. For geographic coordinate computations (thisobs%disttype=2 or =3) the unit used by PDAF-OMI is radian.
     307
     308
     309=== `ivar_obs_p` ===
     310
     311The default mode of PDAF-OMI uses a **diagonal observation error covariance matrix R**. The observation error variances can vary. `ivar_obs_p` is used to specify the inverse observation error variances.
     312This should be a vector of real values. It will be used as an argument to `PDAFomi_gather_obs`. The order of the entries has to be consistent in the arrays `thisobs%id_obs_p`, `obs_p`, `ivar_obs_p`, and `ocoord_p`.
     313
     314If **non-diagonal observation error covariance matrices** are used, which is supported from PDAF 2.3, `ivar_obs_p` still has to be allocated and initialized. However, since the handling of **R** is ddone in a call-back routine if **R** is non-diagonal, it is up to the user whether this information is used. For more information see the **[wiki:nondiagonal_observation_error_covariance_matrices_PDAF3 page on using non-diagonal R-matrices with OMI]**.
     315
     316
     317=== `thisobs%id_obs_p` ===
     318
     319This array is allocated as
     320{{{
     321   ALLOCATE(thisobs%id_obs_p(NROWS, dim_obs_p))
     322}}}
     323For a fixed value of the second index the NROWS are the indices of the elements of the state vector that are treated in the observation operator.
     324The value of NROWS depends on the observation operator used for an observation. Examples:
     325 - Using observations that are grid points values:
     326   - NROWS=1
     327   - The entry is the index of a single element of the state vector
     328 - Using observations that are determined by bi-linear interpolation of 4 grid points:
     329   - NROWS=4
     330   - The entries are the indices of four elements of the state vector
     331
     332'''Notes:'''
     333 * This array is only used in the observation operators provided by PDAF-OMI. If you don't use these observation operators, you might not need this array.
     334
     335||Starting from PDAF V2.3.1 one can also call [wiki:PDAFomi_set_id_obs_p] to initialize thisobs%id_obs_p. One provides a user-specified array of indices. The routine then allocates thisobs%id_obs_p and fills it with the provided indices. This should be particularly usable when not using Fortran. ||
     336
     337=== `thisobs%domainsize` ===
     338
     339This array has to be allocated as
     340{{{
     341   ALLOCATE(thisobs%domainsize(thisobs%ncoord))
     342}}}
     343Here one has to specify the size of the domain in each of its thisobs%ncoord dimensions. The information is used to compute the Cartesian distance with periodicity.
     344
     345Setting one dimension to 0 or a negative value indicates that there is no periodicity in this direction.
     346
     347|| '''Note:''' Starting from PDAF V2.3.1 one can also call [wiki:PDAFomi_set_domainsize] to initialize thisobs%domainsize. One provides a user-specified array of domain sizes. The routine then allocates thisobs%domainsize and fills it with the provided values. This should be particularly usable when not using Fortran. ||
     348
     349
     350=== `thisobs%icoeff_p` ===
     351
     352This array is allocate the in same way as `thisobs%id_obs_p`:
     353
     354{{{
     355   ALLOCATE(thisobs%icoeff_p(NROWS, dim_obs_p))
     356}}}
     357The value of NROWS has to be the same as for `thisobs%id_obs_p`. For a fixed value of the second index the NROWS of the array hold the interpolation coefficients corresponding to the indices specified in `thisobs%id_obs_p`.
     358
     359Please see the [wiki:OMI_observation_operators_PDAF3 documentation of OMI observation operators] for information on how to initialize the array `thisobs%icoeff_p` using functions provided by PDAF-OMI.
     360
     361||Starting from PDAF V2.3.1 one can also call [wiki:PDAFomi_set_icoeff_p] to initialize thisobs%icoeff_p. One provides a user-specified array of interpolation coefficients. The routine then allocates thisobs%icoeff_p and fills it with the provided coefficients. This should be particularly usable when not using Fortran. ||
     362
     363
     364=== `thisobs%obs_err_type` ===
     365
     366The particle filter methods NETF, LNETF and PF can handle observations with non-Gaussian errors. PDAF-OMI supports the following two choices:
     367 - 0: Gaussian errors (''default value'')
     368 - 1: double-exponential (Laplace) errors
     369
     370This variable can either be set directly in the code, or, starting with PDAF V2.3.1 by calling [wiki:PDAFomi_set_obs_err_type].
     371
     372
     373=== `thisobs%use_global_obs` ===
     374
     375In the domain-localized filters (LESTK, LETKF, LSEIK, LNETF) observations are assimilated that are located within the localization around some grid point. When a model uses parallelization with domain-decomposition some of these observations might belong to a different process-domain. In the default mode (`thisobs%use_global_obs`=1) PDAF-OMI gathers all globally available observations so that each process has access to all observations. It can be more efficient to limit the observations on a process-domain to those observations that are located inside the domain or within the localization radius around it. Then, in the local analyses less observations have to be checked for their distance. Setting `thisobs%use_global_obs=0` activates this feature. However, it needs additional preparations to make PDAF-OMI aware of the limiting coordinates of a process sub-domain.
     376
     377This variable can either be set directly in the code, or, starting with PDAF V2.3.1 by calling [wiki:PDAFomi_set_use_global_obs].
     378
     379The use of this feature is described in the [wiki:OMI_use_global_obs_PDAF3 documentation on using domain-limited observations].
     380
     381
     382
     383=== `thisobs%inno_omit` ===
     384
     385Setting this variable to a value > 0.0 activates the functionality that observations are omitted (made irrelevant) from the analysis update if the difference of their value and the ensemble mean to too large. For more information see the [wiki:OMI_additional_functionality_PDAF3#Omittingobservationsthatarepotentialoutliers page on additional OMI functionality].
     386
     387This variable can either be set directly in the code, or, starting with PDAF V2.3.1 by calling [wiki:PDAFomi_set_inno_omit].
     388