Changes between Initial Version and Version 1 of PDAF_diag_rmsd


Ignore:
Timestamp:
Apr 1, 2025, 9:02:54 AM (2 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_diag_rmsd

    v1 v1  
     1= PDAF_diag_rsmd =
     2
     3This page documents the routine `PDAF_diag_rmsd` 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 computes the RMSD for the state vectors `stateA` and `stateB` over the full decomposed domain of a parallel model. The variant without parallelization is [wiki:PDAF_diag_rmsd_nompi].
     10
     11The interface is:
     12{{{
     13SUBROUTINE PDAF_diag_rmsd(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].
     26 * The routine performs MPI operations to obtain the global result. These operations are done within the communicator `COMM_filter` which is specified as an argument. This allows to also use the routine if PDAF was not initialized by calling `PDAF_init`.