Changes between Initial Version and Version 1 of PDAF_diag_ensmean


Ignore:
Timestamp:
Mar 21, 2025, 2:39:25 PM (12 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_diag_ensmean

    v1 v1  
     1= PDAF_diag_ensmean =
     2
     3This page documents the routine `PDAF_diag_ensmean` of PDAF, which was introduced with PDAF V3.0.
     4
     5This routine computes the ensemble mean state vector.
     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
     9The interface is the following:
     10{{{
     11SUBROUTINE PDAF_diag_ensmean(dim, dim_ens, state, ens, status)
     12}}}
     13with the following arguments:
     14{{{
     15  INTEGER, INTENT(in) :: dim               ! state dimension
     16  INTEGER, INTENT(in) :: dim_ens           ! Ensemble size
     17  REAL, INTENT(inout) :: state(dim)        ! ensemble mean state vector
     18  REAL, INTENT(in)    :: ens(dim, dim_ens) ! State ensemble
     19  INTEGER, INTENT(out) :: status           ! Status flag (0=success)
     20}}}