Changes between Initial Version and Version 1 of PDAFomi_diag_nobs


Ignore:
Timestamp:
Mar 21, 2025, 7:53:21 PM (12 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAFomi_diag_nobs

    v1 v1  
     1= PDAFomi_diag_nobs =
     2
     3This page documents the routine `PDAFomi_set_obs_diag` of PDAF, which was introduced with PDAF V3.0. This is part of the PDAF-OMI observation diagnostics module.
     4
     5The routine returns the number of observation types that are active in an assimilation run.
     6
     7Usually all PDAFomi_diag routines are called in `prepoststep_pdaf` where the observation information can be retrieved and analyzed.
     8
     9The interface is the following:
     10{{{
     11  SUBROUTINE PDAFomi_diag_nobs(nobstypes)
     12}}}
     13with the following argument:
     14{{{
     15    INTEGER, INTENT(inout) :: nobstypes   ! Number of observation types
     16}}}
     17
     18*Note:**
     19 * `nobstypes` is commonly used as the upper limit of a loop running over all observation types
     20
     21