[Dart-dev] [6246] DART/branches/development/test_dart.csh: fix a bug where the script is trying to enable posterior observation

nancy at ucar.edu nancy at ucar.edu
Tue Jun 11 16:20:06 MDT 2013


Revision: 6246
Author:   nancy
Date:     2013-06-11 16:20:04 -0600 (Tue, 11 Jun 2013)
Log Message:
-----------
fix a bug where the script is trying to enable posterior observation
space inflation; this is no longer supported.  have it enable prior
observation space inflation instead.  also turned on 'silence' for
both perfect_model_obs and filter - this cuts down on the output for
all the test cases by a huge factor.

Modified Paths:
--------------
    DART/branches/development/test_dart.csh

-------------- next part --------------
Modified: DART/branches/development/test_dart.csh
===================================================================
--- DART/branches/development/test_dart.csh	2013-06-11 21:46:20 UTC (rev 6245)
+++ DART/branches/development/test_dart.csh	2013-06-11 22:20:04 UTC (rev 6246)
@@ -217,7 +217,9 @@
 echo "are not fatal."
 
 cd ${DARTHOME}/observations
-./buildall.csh
+if ( 1 == 1 ) then
+  ./buildall.csh
+endif
 
 echo
 echo "=================================================================="
@@ -234,7 +236,9 @@
 echo
 
 cd ${DARTHOME}/location
-./testall.csh
+if ( 1 == 1 ) then
+  ./testall.csh
+endif
 
 echo
 echo "=================================================================="
@@ -425,6 +429,7 @@
 echo ':s/1/4/'                        >> vi_script
 echo '/save_reg_diagnostics'          >> vi_script
 echo ':s/false/true/'                 >> vi_script
+echo ':g/silence/s/false/true/'       >> vi_script
 echo ':wq'                            >> vi_script
 
 (${VI} input.nml < vi_script)
@@ -870,7 +875,7 @@
 echo '/num_groups'                            >> vi_script
 echo ':s/4/1/'                                >> vi_script
 echo '/inf_flavor'                            >> vi_script
-echo ':s/0/1/'                                >> vi_script
+echo ':s/2/1/'                                >> vi_script
 echo '/inf_initial'                           >> vi_script
 echo ':s/1\.0/1\.05/'                         >> vi_script
 echo ':wq'                                    >> vi_script


More information about the Dart-dev mailing list