[Dart-dev] DART/branches Revision: 11663

dart at ucar.edu dart at ucar.edu
Thu May 25 17:33:13 MDT 2017


nancy at ucar.edu
2017-05-25 17:33:13 -0600 (Thu, 25 May 2017)
291
test to see if DART_QC > 7 makes anything fail.
right now if any of the vertical converts fail,
a DART_QC of 8 will be set.  i added a qc of 9
for future use if the obs is outside the model
domain, but right now there is no way for a
model_mod to tell us that's why it failed.
but someday!




Modified: DART/branches/rma_updates_nancy/assimilation_code/modules/assimilation/quality_control_mod.f90
===================================================================
--- DART/branches/rma_updates_nancy/assimilation_code/modules/assimilation/quality_control_mod.f90	2017-05-25 22:50:31 UTC (rev 11662)
+++ DART/branches/rma_updates_nancy/assimilation_code/modules/assimilation/quality_control_mod.f90	2017-05-25 23:33:13 UTC (rev 11663)
@@ -57,7 +57,8 @@
 integer, parameter :: DARTQC_NOT_IN_NAMELIST       = 5
 integer, parameter :: DARTQC_BAD_INCOMING_QC       = 6
 integer, parameter :: DARTQC_FAILED_OUTLIER_TEST   = 7
-integer, parameter :: DARTQC_FAILED_VERT_CONVERT   = 7
+integer, parameter :: DARTQC_FAILED_VERT_CONVERT   = 8
+integer, parameter :: DARTQC_OUTSIDE_DOMAIN        = 9  ! we have no way (yet) for the model_mod to signal this
 
 !------------------------------------------------------------------------------
 ! namelist parameters


More information about the Dart-dev mailing list