[Dart-dev] DART/branches Revision: 11295

dart at ucar.edu dart at ucar.edu
Fri Mar 10 16:15:52 MST 2017


hendric at ucar.edu
2017-03-10 16:15:52 -0700 (Fri, 10 Mar 2017)
60
moving has cycling out of declaration of namelist variables



Modified: DART/branches/rma_trunk/assimilation_code/modules/assimilation/filter_mod.dopplerfold.f90
===================================================================
--- DART/branches/rma_trunk/assimilation_code/modules/assimilation/filter_mod.dopplerfold.f90	2017-03-10 22:45:03 UTC (rev 11294)
+++ DART/branches/rma_trunk/assimilation_code/modules/assimilation/filter_mod.dopplerfold.f90	2017-03-10 23:15:52 UTC (rev 11295)
@@ -137,6 +137,8 @@
 logical :: do_prior_inflate     = .false.
 logical :: do_posterior_inflate = .false.
 
+logical :: has_cycling                  = .false. ! filter will advance the model
+
 !----------------------------------------------------------------
 ! Namelist input with default values
 !
@@ -182,7 +184,6 @@
 ! File options.  Single vs. Multiple.
 logical            :: single_file_in               = .false. ! all copies read  from 1 file
 logical            :: single_file_out              = .false. ! all copies written to 1 file
-logical            :: has_cycling                  = .false. ! filter will advance the model
 ! Stages to write.  Valid values include:
 !    input, preassim, postassim, output
 character(len=10)  :: stages_to_write(4) = (/"output    ", "null      ", "null      ", "null      "/)

Modified: DART/branches/rma_trunk/assimilation_code/modules/assimilation/filter_mod.f90
===================================================================
--- DART/branches/rma_trunk/assimilation_code/modules/assimilation/filter_mod.f90	2017-03-10 22:45:03 UTC (rev 11294)
+++ DART/branches/rma_trunk/assimilation_code/modules/assimilation/filter_mod.f90	2017-03-10 23:15:52 UTC (rev 11295)
@@ -138,6 +138,8 @@
 logical :: do_prior_inflate     = .false.
 logical :: do_posterior_inflate = .false.
 
+logical :: has_cycling                  = .false. ! filter will advance the model
+
 !----------------------------------------------------------------
 ! Namelist input with default values
 !
@@ -183,7 +185,6 @@
 ! File options.  Single vs. Multiple.
 logical            :: single_file_in               = .false. ! all copies read  from 1 file
 logical            :: single_file_out              = .false. ! all copies written to 1 file
-logical            :: has_cycling                  = .false. ! filter will advance the model
 ! Stages to write.  Valid values include:
 !    input, preassim, postassim, output
 character(len=10)  :: stages_to_write(4) = (/"output    ", "null      ", "null      ", "null      "/)


More information about the Dart-dev mailing list