[Dart-dev] [6469] DART/trunk: Removing 'rat_cri' from all obs_diag namelists.
nancy at ucar.edu
nancy at ucar.edu
Mon Sep 9 15:15:18 MDT 2013
Revision: 6469
Author: thoar
Date: 2013-09-09 15:15:17 -0600 (Mon, 09 Sep 2013)
Log Message:
-----------
Removing 'rat_cri' from all obs_diag namelists.
rat_cri has been deprecated for some time now and should have been
removed from the namlists a long time ago. rat_cri _was_ important
before the DART QC mechanism was supported. rat_cri _used_ to be the
only way obs_diag could discriminate good observations from bad ones.
obs_diag V 3180 2007-12-19 22:30:32 -0700 (Wed, 19 Dec 2007) was the
first version of obs_diag to deprecate 'rat_cri'.
The obs_diag code still defaults to a gigantic number for rat_cri.
No meaningful processing happens based on its value. The only thing
that happens is that the NbadIZ count (preserved in the output netCDF
file) will always be zero. This is not used by any program,
so it is no loss.
Modified Paths:
--------------
DART/trunk/diagnostics/threed_sphere/obs_diag.html
DART/trunk/diagnostics/threed_sphere/obs_diag.nml
DART/trunk/models/CESM/work/input.nml
DART/trunk/models/MITgcm_annulus/work/input.nml
DART/trunk/models/MITgcm_ocean/work/input.nml
DART/trunk/models/NCOMMAS/work/input.nml
DART/trunk/models/POP/work/input.nml
DART/trunk/models/am2/work/input.nml
DART/trunk/models/bgrid_solo/work/input.nml
DART/trunk/models/cam/shell_scripts/input.nml.diag.template
DART/trunk/models/cam/shell_scripts/input.normal.nml
DART/trunk/models/cam/shell_scripts/input.pert0.nml
DART/trunk/models/cam/work/input.nml
DART/trunk/models/cam/work/input_1.nml
DART/trunk/models/cam/work/input_capt.nml
DART/trunk/models/cam/work/input_n.nml
DART/trunk/models/coamps/templates/EXAMPLE.input.nml
DART/trunk/models/coamps_nest/templates/EXAMPLE.input.nml
DART/trunk/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml
DART/trunk/models/mpas_ocn/shell_scripts/input.nml.template
DART/trunk/models/mpas_ocn/work/input.nml
DART/trunk/models/noah/work/input.nml
DART/trunk/models/pe2lyr/work/input.nml
DART/trunk/models/rose/work/input.nml
DART/trunk/models/sqg/work/input.nml
DART/trunk/models/tiegcm/work/input.nml
DART/trunk/models/wrf/experiments/Radar/input.nml
DART/trunk/models/wrf/regression/CONUS-V2/input.nml
DART/trunk/models/wrf/regression/CONUS-V3/icbc_real.ksh
DART/trunk/models/wrf/regression/Global-V3/input.nml.2002Dec31
DART/trunk/models/wrf/regression/Radar/input.nml
DART/trunk/models/wrf/work/input.nml
DART/trunk/observations/utilities/threed_sphere/input.nml
-------------- next part --------------
Modified: DART/trunk/diagnostics/threed_sphere/obs_diag.html
===================================================================
--- DART/trunk/diagnostics/threed_sphere/obs_diag.html 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/diagnostics/threed_sphere/obs_diag.html 2013-09-09 21:15:17 UTC (rev 6469)
@@ -315,7 +315,7 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 6, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
+ <em class=removed>rat_cri = 3.0,</em>
input_qc_threshold = 3.0,
trusted_obs = 'null',
Nregions = 4,
@@ -449,8 +449,13 @@
</TD></TR>
<TR><TD> <em class=removed>rat_cri</em> </TD>
- <TD> <em class=removed>real</em </TD>
- <TD>No longer supported.
+ <TD> <em class=removed>real</em> </TD>
+ <TD>Deprecated. This was useful before the advent of the DART QC mechanism,
+ which has been in place for years now. The only thing <em class=code>rat_cri</em>
+ did was to count how many observations were 'far' away from the ensemble,
+ something the DART QC codes convey much better. The histogram of the magnitude
+ of the innovations is still in <em class=file>LargeInnov.txt</em> .
+
</TD></TR>
<TR><TD> input_qc_threshold </TD>
@@ -566,11 +571,12 @@
<LI><em class="file">dart_log.out</em> list directed output
from the obs_diag.</LI>
<LI><em class="file">LargeInnov.txt</em> contains the distance ratio
- histogram -- useful for estimating rat_cri.</LI>
+ histogram -- useful for estimating the distribution of the
+ magnitudes of the innovations.</LI>
<LI><em class=removed>observation_locations.xxx.dat contains the
locations for all the observation in temporal bin "xxx". These are
only created if the namelist variable
- print_obs_locations is set to .true.</em>
+ <am class=code>print_obs_locations</em> is set to .true.</em>
</LI>
</UL>
Modified: DART/trunk/diagnostics/threed_sphere/obs_diag.nml
===================================================================
--- DART/trunk/diagnostics/threed_sphere/obs_diag.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/diagnostics/threed_sphere/obs_diag.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -17,7 +17,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 6, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
trusted_obs = 'null',
Nregions = 4,
@@ -29,5 +28,6 @@
print_mismatched_locs = .false.,
create_rank_histogram = .false.,
outliers_in_histogram = .false.,
- verbose = .false. /
+ verbose = .false.
+ /
Modified: DART/trunk/models/CESM/work/input.nml
===================================================================
--- DART/trunk/models/CESM/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/CESM/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -321,7 +321,6 @@
bin_width = 0, 0, 1, 0, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 1,
Nregions = 4,
lonlim1 = 30.0, 130.0, 290.0, 290,
Modified: DART/trunk/models/MITgcm_annulus/work/input.nml
===================================================================
--- DART/trunk/models/MITgcm_annulus/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/MITgcm_annulus/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -179,7 +179,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/MITgcm_ocean/work/input.nml
===================================================================
--- DART/trunk/models/MITgcm_ocean/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/MITgcm_ocean/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -271,7 +271,6 @@
bin_width = 0, 0, 1, 0, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 3,
lonlim1 = 260.0, 270.0, 260.0,
Modified: DART/trunk/models/NCOMMAS/work/input.nml
===================================================================
--- DART/trunk/models/NCOMMAS/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/NCOMMAS/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -233,7 +233,6 @@
bin_width = 0, 0, 1, 0, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 1,
Nregions = 4,
lonlim1 = 30.0, 130.0, 290.0, 290,
Modified: DART/trunk/models/POP/work/input.nml
===================================================================
--- DART/trunk/models/POP/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/POP/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -273,7 +273,6 @@
bin_width = 0, 0, 1, 0, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 1,
Nregions = 4,
lonlim1 = 30.0, 130.0, 290.0, 290,
Modified: DART/trunk/models/am2/work/input.nml
===================================================================
--- DART/trunk/models/am2/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/am2/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -280,7 +280,6 @@
time_to_skip = 0, 0, 1, 0, 0, 0 ,
max_num_bins = 1000,
Nregions = 4,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
lonlim2 = 360.0, 360.0, 360.0, 295.0,
Modified: DART/trunk/models/bgrid_solo/work/input.nml
===================================================================
--- DART/trunk/models/bgrid_solo/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/bgrid_solo/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -289,7 +289,6 @@
bin_width = 0, 0, 0, 0, 3, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/cam/shell_scripts/input.nml.diag.template
===================================================================
--- DART/trunk/models/cam/shell_scripts/input.nml.diag.template 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/shell_scripts/input.nml.diag.template 2013-09-09 21:15:17 UTC (rev 6469)
@@ -16,7 +16,6 @@
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
Nregions = 4,
- rat_cri = 3.0,
input_qc_threshold = 4.0,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
lonlim2 = 360.0, 360.0, 360.0, 295.0,
Modified: DART/trunk/models/cam/shell_scripts/input.normal.nml
===================================================================
--- DART/trunk/models/cam/shell_scripts/input.normal.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/shell_scripts/input.normal.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -271,7 +271,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 1, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/cam/shell_scripts/input.pert0.nml
===================================================================
--- DART/trunk/models/cam/shell_scripts/input.pert0.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/shell_scripts/input.pert0.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -277,7 +277,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 1, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/cam/work/input.nml
===================================================================
--- DART/trunk/models/cam/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -277,7 +277,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 1, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/cam/work/input_1.nml
===================================================================
--- DART/trunk/models/cam/work/input_1.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/work/input_1.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -134,7 +134,6 @@
bin_width = 0, 0, 0,12, 0, 0
time_to_skip = 0, 0, 1, 0, 0, 0
max_num_bins = 1000
- rat_cri = 3.0
input_qc_threshold = 4.0
plevel = 1000.,850.,700.,500.,400.,300.,200.,150.,100.,50.
nregions = 4
Modified: DART/trunk/models/cam/work/input_capt.nml
===================================================================
--- DART/trunk/models/cam/work/input_capt.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/work/input_capt.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -162,7 +162,6 @@
bin_width = 0, 0, 0, 6, 0, 0
time_to_skip = 0, 0, 1, 0, 0, 0
max_num_bins = 1000
- rat_cri = 3.0
input_qc_threshold = 3.0
nregions = 4
lonlim1 = 0.0, 0.0, 0.0, 235.0
Modified: DART/trunk/models/cam/work/input_n.nml
===================================================================
--- DART/trunk/models/cam/work/input_n.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/cam/work/input_n.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -134,7 +134,6 @@
bin_width = 0, 0, 0,12, 0, 0
time_to_skip = 0, 0, 1, 0, 0, 0
max_num_bins = 1000
- rat_cri = 3.0
input_qc_threshold = 4.0
plevel = 1000.,850.,700.,500.,400.,300.,200.,150.,100.,50.
nregions = 4
Modified: DART/trunk/models/coamps/templates/EXAMPLE.input.nml
===================================================================
--- DART/trunk/models/coamps/templates/EXAMPLE.input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/coamps/templates/EXAMPLE.input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -170,7 +170,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/coamps_nest/templates/EXAMPLE.input.nml
===================================================================
--- DART/trunk/models/coamps_nest/templates/EXAMPLE.input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/coamps_nest/templates/EXAMPLE.input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -170,7 +170,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml
===================================================================
--- DART/trunk/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -211,7 +211,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
plevel = 1000.0, 925.0, 850.0, 700.0, 500.0, 400.0, 300.0, 250.0, 200.0, 150.0, 100.0, 70.0,
Modified: DART/trunk/models/mpas_ocn/shell_scripts/input.nml.template
===================================================================
--- DART/trunk/models/mpas_ocn/shell_scripts/input.nml.template 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/mpas_ocn/shell_scripts/input.nml.template 2013-09-09 21:15:17 UTC (rev 6469)
@@ -241,7 +241,6 @@
obs_sequence_name = 'obs_seq.final',
iskip_days = 0,
obs_select = 1,
- rat_cri = 4.0,
input_qc_threshold = 3.0,
bin_width_seconds = 0,
lonlim1 = 0.0, 0.0, 0.5, -1.0,
Modified: DART/trunk/models/mpas_ocn/work/input.nml
===================================================================
--- DART/trunk/models/mpas_ocn/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/mpas_ocn/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -311,7 +311,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 3,
lonlim1 = 285.0, 20.0, 120.0,
Modified: DART/trunk/models/noah/work/input.nml
===================================================================
--- DART/trunk/models/noah/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/noah/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -221,7 +221,6 @@
bin_width = 0, 0, 0, 1, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 1,
lonlim1 = 0.0,
Modified: DART/trunk/models/pe2lyr/work/input.nml
===================================================================
--- DART/trunk/models/pe2lyr/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/pe2lyr/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -212,7 +212,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 1, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/rose/work/input.nml
===================================================================
--- DART/trunk/models/rose/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/rose/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -190,7 +190,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 6, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/sqg/work/input.nml
===================================================================
--- DART/trunk/models/sqg/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/sqg/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -228,7 +228,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 1, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/tiegcm/work/input.nml
===================================================================
--- DART/trunk/models/tiegcm/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/tiegcm/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -186,7 +186,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 6, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 3.0,
input_qc_threshold = 3.0,
Nregions = 4,
hlevel = 0, 100000, 200000, 300000, 400000, 500000, 600000, 700000, 800000, 900000, 1000000,
Modified: DART/trunk/models/wrf/experiments/Radar/input.nml
===================================================================
--- DART/trunk/models/wrf/experiments/Radar/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/wrf/experiments/Radar/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -200,7 +200,6 @@
bin_width = 0, 0, 0, 0, 6, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/wrf/regression/CONUS-V2/input.nml
===================================================================
--- DART/trunk/models/wrf/regression/CONUS-V2/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/wrf/regression/CONUS-V2/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -141,7 +141,6 @@
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
Nregions = 1,
- rat_cri = 5000.0,
lonlim1 = 0.0,
lonlim2 = 360.0,
latlim1 = -89.0,
Modified: DART/trunk/models/wrf/regression/CONUS-V3/icbc_real.ksh
===================================================================
--- DART/trunk/models/wrf/regression/CONUS-V3/icbc_real.ksh 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/wrf/regression/CONUS-V3/icbc_real.ksh 2013-09-09 21:15:17 UTC (rev 6469)
@@ -338,7 +338,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 235.0,
Modified: DART/trunk/models/wrf/regression/Global-V3/input.nml.2002Dec31
===================================================================
--- DART/trunk/models/wrf/regression/Global-V3/input.nml.2002Dec31 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/wrf/regression/Global-V3/input.nml.2002Dec31 2013-09-09 21:15:17 UTC (rev 6469)
@@ -205,7 +205,6 @@
hlevel = 5000,
mlevel = 5,
obs_select = 1,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/wrf/regression/Radar/input.nml
===================================================================
--- DART/trunk/models/wrf/regression/Radar/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/wrf/regression/Radar/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -186,7 +186,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/models/wrf/work/input.nml
===================================================================
--- DART/trunk/models/wrf/work/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/models/wrf/work/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -274,7 +274,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 3.0,
Nregions = 4,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
Modified: DART/trunk/observations/utilities/threed_sphere/input.nml
===================================================================
--- DART/trunk/observations/utilities/threed_sphere/input.nml 2013-09-06 12:48:58 UTC (rev 6468)
+++ DART/trunk/observations/utilities/threed_sphere/input.nml 2013-09-09 21:15:17 UTC (rev 6469)
@@ -75,7 +75,6 @@
bin_width = 0, 0, 0, 6, 0, 0 ,
time_to_skip = 0, 0, 0, 0, 0, 0 ,
max_num_bins = 1000,
- rat_cri = 5000.0,
input_qc_threshold = 4.0,
Nregions = 1,
lonlim1 = 0.0, 0.0, 0.0, 235.0,
More information about the Dart-dev
mailing list