Changes between Initial Version and Version 1 of PDAF_diag_rmsd_nompi


Ignore:
Timestamp:
Apr 1, 2025, 8:58:46 AM (2 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_diag_rmsd_nompi

    v1 v1  
     1= PDAF_diag_rsmd_nompi =
     2
     3This page documents the routine `PDAF_diag_rmsd_nompi` of PDAF, which was introduced with PDAF V3.0.
     4
     5This routine computes root mean square difference (RMSD) beween two input vectors. These could be the ensemble mean state and a reference state.
     6
     7The routine can be called in the pre/poststep routine of PDAF both before and after the analysis step to compute the ensemble statistics.
     8
     9This 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 [wiki:PDAF_diag_rmsd].
     10
     11The interface is:
     12{{{
     13SUBROUTINE PDAF_diag_rmsd_nompi(dim_p, stateA_p, stateB_p, &
     14     rmsd_p, COMM_filter, status)
     15
     16  INTEGER, INTENT(in) :: dim_p                 !< state dimension
     17  REAL, INTENT(in)    :: stateA_p(dim_p)       !< State vector A
     18  REAL, INTENT(in)    :: stateB_p(dim_p)       !< State vector B
     19  REAL, INTENT(out)   :: rmsd_p                !< RSMD
     20  INTEGER, INTENT(in) :: COMM_filter           !< Filter communicator
     21  INTEGER, INTENT(out) :: status               !< Status flag (0=success)
     22}}}
     23
     24**Note:**
     25 * 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 [wiki:PDAF_diag_stddev_nompi] and [wiki:PDAF_diag_stddev].