Changes between Version 3 and Version 4 of PDAF_diag_stddev


Ignore:
Timestamp:
Mar 26, 2025, 2:17:54 PM (8 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified PDAF_diag_stddev

    v3 v4  
    33This page documents the routine `PDAF_diag_stddev` of PDAF, which was introduced with PDAF V3.0.
    44
    5 This routine computes mean ensemble standard deviation taking into account domain-decomposition for parallelized models.
     5This routine computes mean ensemble standard deviation taking into account domain-decomposition for parallelized models. The output is the square root of the spatial mean variance.
    66
    7 The routine can be called in the pre/poststep routine of PDAF both before and after the analysis step to compute the ensemble statistics. This variant computes the standard deviation for the provided ensemble over the full decomposed domain of a parallel model. The variant without parallelization is [wiki:PDAF_diag_stddev_nompi].
     7The routine can be called in the pre/poststep routine of PDAF both before and after the analysis step to compute the ensemble statistics.
    88
    9 The interface is the following:
     9This variant computes the standard deviation for the provided ensemble over the full decomposed domain of a parallel model. The variant without parallelization is [wiki:PDAF_diag_stddev_nompi].
     10
     11The interface is:
    1012{{{
    1113SUBROUTINE PDAF_diag_stddev(dim, dim_ens, &
    1214     state, ens, stddev, do_mean, COMM_filter, status)
    13 }}}
    14 with the following arguments:
    15 {{{
     15
    1616  INTEGER, INTENT(in) :: dim_p                 ! process-local state dimension
    1717  INTEGER, INTENT(in) :: dim_ens               ! Ensemble size
     
    1919  REAL, INTENT(in)    :: ens_p(dim_p, dim_ens) ! process-local state ensemble
    2020  REAL, INTENT(out)   :: stddev_g              ! Global mean standard deviation of ensemble
    21   INTEGER, INTENT(in) :: do_mean           !< 1 to also compute ensemble mean; 0 for no computation of mean
     21  INTEGER, INTENT(in) :: do_mean               ! 1 to also compute ensemble mean;
     22                                               ! 0 for no computation of mean
    2223  INTEGER, INTENT(in) :: COMM_filter           ! Filter communicator
    2324  INTEGER, INTENT(out) :: status               ! Status flag (0=success)
     
    2627**Note:**
    2728 * The ensemble standard deviation is a common measure of the estimate model root mean square error. It is typically computed in `prepoststep_pdaf` to monitor the assimilation process.
    28  * The option `do_mean` exists mainly for performance reasons. If `state_p` contains is ensemble mean state it does not need to be computed again.
     29 * The option `do_mean` exists mainly for performance reasons. If `state_p` contains already the ensemble mean state it does not need to be computed again.
     30 * The routine performs MPI operations to obtain the global result. These operations are done within the communicator `COMM_filterz which is specified as an argument. This allows to also use the routine if PDAF was not initialized by calling `PDAF_init`.