Changes between Version 2 and Version 3 of PDAF_diag_crps
- Timestamp:
- Mar 26, 2025, 2:34:38 PM (8 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PDAF_diag_crps
v2 v3 10 10 The routine can be called in the pre/poststep routine of PDAF both before and after the analysis step to compute the CRPS. 11 11 12 The interface is the following:12 The interface is: 13 13 {{{ 14 SUBROUTINE PDAF_diag_CRPS(dim , dim_ens, element, oens, obs, &14 SUBROUTINE PDAF_diag_CRPS(dim_p, dim_ens, element, oens, obs, & 15 15 CRPS, reli, resol, uncert, status) 16 }}} 17 with the following arguments: 18 {{{ 19 INTEGER, INTENT(in) :: dim ! PE-local state dimension 20 INTEGER, INTENT(in) :: dim_ens ! Ensemble size 21 INTEGER, INTENT(in) :: element ! ID of element to be used 22 !< If element=0, mean values over all elements are computed 23 REAL, INTENT(in) :: oens(dim, dim_ens) ! State ensemble 24 REAL, INTENT(in) :: obs(dim) ! State ensemble 25 REAL, INTENT(out) :: CRPS ! CRPS 26 REAL, INTENT(out) :: reli ! Reliability 27 REAL, INTENT(out) :: resol ! resolution 28 REAL, INTENT(out) :: uncert ! uncertainty 29 INTEGER, INTENT(out) :: status ! Status flag (0=success) 16 17 INTEGER, INTENT(in) :: dim_p ! PE-local state dimension 18 INTEGER, INTENT(in) :: dim_ens ! Ensemble size 19 INTEGER, INTENT(in) :: element ! ID of element to be used 20 ! If element=0, mean values over all elements are computed 21 REAL, INTENT(in) :: oens(dim_p, dim_ens) ! State ensemble 22 REAL, INTENT(in) :: obs(dim_p) ! State ensemble 23 REAL, INTENT(out) :: CRPS ! CRPS 24 REAL, INTENT(out) :: reli ! Reliability 25 REAL, INTENT(out) :: resol ! resolution 26 REAL, INTENT(out) :: uncert ! uncertainty 27 INTEGER, INTENT(out) :: status ! Status flag (0=success) 30 28 }}} 31 29 … … 34 32 * A perfectly reliable system gives `reli=0`. An informative system gives `resol << uncert`. 35 33 * Compared to Hersbach (2000), `resol` here is equivalent to `CPRS_pot`. 36 * The routine is parallelized. It uses the PDAF-internal parallelization information is has to be called on all filter processes34 * The routine is parallelized. For `element=0` it computes the CRPS, reli, and resol for the global state vector. It uses the PDAF-internal parallelization information is has to be called on all filter processes 37 35 * The routine uses a rather simple sorting algorithm. Accordingly, the performance is likely suboptimal for high-dimensional cases. 38 36