Version 1 (modified by 3 days ago) ( diff ) | ,
---|
PDAF_diag_rsmd_nompi ΒΆ
This page documents the routine PDAF_diag_rmsd_nompi
of PDAF, which was introduced with PDAF V3.0.
This routine computes root mean square difference (RMSD) beween two input vectors. These could be the ensemble mean state and a reference state.
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 only computes the standard deviation for the provided state vectors stateA
and stateB
without considering parallelization. Thus, with a domain-decomposed parallel model, the value of the RMSD does not consider the full domain. The variant taking into account parallelization is PDAF_diag_rmsd.
The interface is:
SUBROUTINE PDAF_diag_rmsd_nompi(dim_p, stateA_p, stateB_p, & rmsd_p, COMM_filter, status) INTEGER, INTENT(in) :: dim_p !< state dimension REAL, INTENT(in) :: stateA_p(dim_p) !< State vector A REAL, INTENT(in) :: stateB_p(dim_p) !< State vector B REAL, INTENT(out) :: rmsd_p !< RSMD INTEGER, INTENT(in) :: COMM_filter !< Filter communicator INTEGER, INTENT(out) :: status !< Status flag (0=success)
Note:
- The routine is used to compute the RMSD with regard to some reference state. To compute the ensemble-sampled standard deviation, i.e. the estimated RMSD from the data assimilation, there are the routines PDAF_diag_stddev_nompi and PDAF_diag_stddev.