Changes between Version 6 and Version 7 of OMI_observation_modules


Ignore:
Timestamp:
Nov 23, 2020, 11:32:47 AM (3 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OMI_observation_modules

    v6 v7  
    141141   - `local_range`: The localization weight radius
    142142   - `srange`: The support radius of the localization
     143
     144== Implementing a new observation type ==
     145
     146To implement a new observation type, the approach is generally as follows:
     1471.      Create a copy of obs_TYPE_pdafomi_TEMPLATE.F90
     1481.      Rename the module and its subroutines according to the observation (replacing ‘TYPE’ by name of observation).
     1491.      Implement init_dim_obs for the observation type following the instructions in the template
     1501.      Adapt obs_obs for the observation type
     1511.      Adapt init_dim_obs_l for the observation type (if using a domain_localized filter)
     1521.      Adapt localize_covar for the observation type (if using a the local EnKF)
     1531.      Add subroutine calls for the new observation type into the routines in callback_obs_pdafomi.F90