[Dart-dev] DART/branches Revision: 12413
dart at ucar.edu
dart at ucar.edu
Thu Mar 1 13:38:32 MST 2018
nancy at ucar.edu
2018-03-01 13:38:32 -0700 (Thu, 01 Mar 2018)
443
there is a section of code that tries to write an english
message to the log file to describe what characteristics
of inflation the user has selected with all their choices.
in constructing the log msg the test to see if the standard
deviation was going to be allowed to adapt was just wrong,
completely wrong. note this had no effect on the running
code or results, just on what was printed out into the dart log.
it's less wrong now.
Modified: DART/branches/rma_trunk/assimilation_code/modules/assimilation/adaptive_inflate_mod.f90
===================================================================
--- DART/branches/rma_trunk/assimilation_code/modules/assimilation/adaptive_inflate_mod.f90 2018-03-01 20:27:03 UTC (rev 12412)
+++ DART/branches/rma_trunk/assimilation_code/modules/assimilation/adaptive_inflate_mod.f90 2018-03-01 20:38:32 UTC (rev 12413)
@@ -707,8 +707,8 @@
else
det = 'random-noise,'
endif
-if (inflation_handle%sd_lower_bound > inflation_handle%inf_lower_bound) then
- det = trim(det) // ' covariance adaptive,'
+if (inflation_handle%minmax_sd(2) > inflation_handle%sd_lower_bound) then
+ det = trim(det) // ' variance adaptive,'
endif
if (inflation_handle%inf_lower_bound < 1.0_r8) then
det = trim(det) // ' deflation permitted,'
More information about the Dart-dev
mailing list