64 | | To use this omission functionality one has to augment [wiki:OMI_observation_modules#init_dim_obs_OBSTYPE init_dim_obs_OBSTYPE] in the observation modules as follows: [[BR]] |
65 | | Set the variable |
66 | | {{{ |
67 | | REAL :: thisobs%inno_omit=0.0 ! Omit observation if innovation larger this factor times |
68 | | ! observation standard deviation (only active for >0) |
69 | | }}} |
70 | | to a value > 0.0. This activates the omission and specifies the omission limit. If inno_omit=2.0, an observation would be omitted if the absolute value of the difference between the observed ensemble mean state and the observation value is larger than 2 times the observation error standard deviation. |
| 64 | Whether observations are omitted is controlled by the variable |
| 65 | {{{ |
| 66 | REAL :: thisobs%inno_omit ! Omit observation if absolute innovation is larger this factor times (default=0.0) |
| 67 | ! observation standard deviation (only active for >0) |
| 68 | }}} |
| 69 | For the default value `thisobs%inno_omit=0.0` no observation are omitted. |
| 70 | To use this omission functionality set in [wiki:OMI_observation_modules#init_dim_obs_OBSTYPE init_dim_obs_OBSTYPE] in the observation modules `thisobs%inno_omit` to a value > 0.0. This activates the omission and specifies the omission limit. If thisobs%inno_omit=2.0, an observation would be omitted if the absolute value of the difference between the observed ensemble mean state and the observation value is larger than 2 times the observation error standard deviation. |