| 1 | = PDAF_diag_reliability_budget = |
| 2 | |
| 3 | This page documents the routine `PDAF_diag_reliability_budget` of PDAF, which was introduced with PDAF V3.0. |
| 4 | |
| 5 | The diagnostics derives a balance relationship that decomposes the |
| 6 | departure between the ensemble mean and observations:[[BR]] |
| 7 | || Depar^2^ = Bias^2^ + !EnsVar + !ObsUnc^2^ + Residual||[[BR]] |
| 8 | under the assumption of a perfectly reliable ensemble. When the |
| 9 | residual term is not small, one can identify the sources of problematic ensemble representation of the uncertainty by looking at each terms. One of the benefits of the reliability budget diagnostics is that it can identify spatially local issues in ensemble perturbations. |
| 10 | |
| 11 | In this subroutine, the budget array returns each term of the |
| 12 | reliability budget is given at each given time step. The returned |
| 13 | array can be used for significant t-test where each time step is used |
| 14 | as a sample from the population. The actual budget is the mean over |
| 15 | time steps except for Bias^2 term, which is given separately. This |
| 16 | is because the unsquared bias is used in the t-test in the original |
| 17 | paper. |
| 18 | |
| 19 | The subroutine does not comes with a t-test to ensure that |
| 20 | the reliability budget is statistically significant as done |
| 21 | in the original paper. However, this can be achieved with external |
| 22 | libraries or software if the t-test is deemed important. The t-test |
| 23 | should account for the temporal autocorrelation between time steps |
| 24 | in the given trajectory. |
| 25 | |
| 26 | The diagnostics requires a trajectory of ensemble and observations, |
| 27 | a trajectory of an ensemle of observation error variances. The |
| 28 | ensemble of observation error variances can be the square of |
| 29 | observation errors sampled from observation error distribution as |
| 30 | done in stochastic ensemble Kalman filter. In deterministic ensemble |
| 31 | systems, the ensemble of observation error variances can be the |
| 32 | observation error variances where each ensemble member has the same |
| 33 | value. |
| 34 | |
| 35 | The reliability budget is proposed by |
| 36 | Rodwell, M. J., Lang, S. T. K., Ingleby, N. B., Bormann, N., Holm, |
| 37 | E., Rabier, F., ... & Yamaguchi, M. (2016). |
| 38 | Reliability in ensemble data assimilation. |
| 39 | Quarterly Journal of the Royal Meteorological Society, 142(694), 443-454. |
| 40 | |
| 41 | The routine can be called in the pre/poststep routine of PDAF both before and after the analysis step to compute the ensemble statistics. It can also be alled independently from PDAF, i.e. without a prior call to `PDAF_init`. |
| 42 | |
| 43 | The interface is: |
| 44 | {{{ |
| 45 | SUBROUTINE PDAF_diag_reliability_budget(n_times, dim_ens, dim_p, & |
| 46 | ens_p, obsvar, obs_p, budget, bias_2) |
| 47 | |
| 48 | INTEGER, INTENT(in) :: n_times !< Number of time steps |
| 49 | INTEGER, INTENT(in) :: dim_ens !< Number of ensemble members |
| 50 | INTEGER, INTENT(in) :: dim_p !< Dimension of the state vector |
| 51 | REAL, INTENT(in) :: ens_p(dim_p, dim_ens, n_times) !< Ensemble matrix over times |
| 52 | REAL, INTENT(in) :: obsvar(dim_p, dim_ens, n_times) !< Squared observation error/variance at n_times. |
| 53 | !< In ensemble of var/stochastic EnKF system, |
| 54 | !< the observation error is different for each ensemble member. |
| 55 | !< If an observation variance is given directly, |
| 56 | !< same value can be used across dimensions. |
| 57 | REAL, INTENT(in) :: obs_p(dim_p, n_times) !< Observation vector |
| 58 | REAL, INTENT(out) :: budget(dim_p, n_times, 5) !< Budget term for a single time step |
| 59 | !< 1. depar^2, 2. bias, 3. ensvar, 4. obsunc, 5. residual |
| 60 | !< Each time step is used as a sample for significant tests |
| 61 | REAL, INTENT(out) :: bias_2(dim_p) !< bias^2 uses |
| 62 | }}} |