Changes between Version 33 and Version 34 of OMI_observation_modules
- Timestamp:
- Feb 21, 2023, 4:02:35 PM (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OMI_observation_modules
v33 v34 115 115 {{{ 116 116 CALL PDAFomi_gather_obs(thisobs, dim_obs_p, obs_p, ivar_obs_p, ocoord_p, & 117 thisobs%ncoord, local_range, dim_obs)117 thisobs%ncoord, cradius, dim_obs) 118 118 }}} 119 119 This routine will complete all required initializations for OMI. As such it is mandatory to call the routine. … … 121 121 The routine `PDAFomi_gather_obs` returns the number of observations `dim_obs` which is the return variable for PDAF. 122 122 123 Note: The value is ` local_range` is only used if [wiki:OMI_observation_modules#thisobsuse_global_obs thisobs%use_global_obs=0].123 Note: The value is `cradius` is only used if [wiki:OMI_observation_modules#thisobsuse_global_obs thisobs%use_global_obs=0]. 124 124 125 125 … … 145 145 {{{ 146 146 CALL PDAFomi_init_dim_obs_l(thisobs_l, thisobs, coords_l, & 147 locweight, local_range, srange, dim_obs_l)147 locweight, cradius, sradius, dim_obs_l) 148 148 }}} 149 149 … … 154 154 - Specify the localization variables (These variables are usually set in `init_pdaf` and included with `use mod_assimilation`) 155 155 - `locweight`: Type of localization (see init_pdaf) 156 - ` local_range`: The localization radius (cut-off radius for the observations, weight is always =0 for distances > local_range)157 - `sra nge`: The support radius of the localization weight function156 - `cradius`: The localization radius (cut-off radius for the observations, weight is always =0 for distances > cradius) 157 - `sradius`: The support radius of the localization weight function 158 158 159 159 … … 165 165 For the initialization the following routine is called: 166 166 {{{ 167 CALL PDAFomi_localize_covar(thisobs, dim_p, locweight, local_range, srange, &167 CALL PDAFomi_localize_covar(thisobs, dim_p, locweight, cradius, sradius, & 168 168 coords_p, HP_p, HPH) 169 169 }}} … … 175 175 - Specify the localization variables (These variables are usually set in `init_pdaf` and included with `use mod_assimilation`) 176 176 - `locweight`: Type of localization (see init_pdaf) 177 - ` local_range`: The localization radius (cut-off radius for the observations, weight is always =0 for distances > local_range)178 - `sra nge`: The support radius of the localization weight function177 - `cradius`: The localization radius (cut-off radius for the observations, weight is always =0 for distances > cradius) 178 - `sradius`: The support radius of the localization weight function 179 179 180 180 == Additional routines for 3D-Var ==