Changes between Version 9 and Version 10 of PDAFomi_additional_functionality


Ignore:
Timestamp:
Nov 26, 2024, 9:05:34 AM (18 hours ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAFomi_additional_functionality

    v9 v10  
    6262=== Activating observation omission ===
    6363
    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.
     64Whether 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}}}
     69For the default value `thisobs%inno_omit=0.0` no observation are omitted.
     70To 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.
    7171
    7272To omit an observation, its inverse observation error variance is set by default to the very small value
     
    8383PDAFomi     --- Exclude obs. type ID   1  if innovation^2 >     3.00 times obs. error variance
    8484}}}
     85(Note that is line is a bit misleading. It's actually 'if innovation > 3.00 times obs. error standard deviation')
    8586
    8687=== Statistics about omitted observations ===