[cig-commits] commit 2063 by bangerth to /var/svn/dealii/aspect

dealii.demon at gmail.com dealii.demon at gmail.com
Tue Nov 26 15:02:14 PST 2013


Revision 2063

Fix a bug where we computed the minimal temperature/compositional value to be 2.2e-308 instead of zero.

U   trunk/aspect/doc/modules/changes.h
U   trunk/aspect/source/postprocess/composition_statistics.cc
U   trunk/aspect/source/postprocess/temperature_statistics.cc
U   trunk/aspect/tests/no_adiabatic_heating/screen-output
U   trunk/aspect/tests/no_adiabatic_heating_02/screen-output
U   trunk/aspect/tests/no_adiabatic_heating_03/screen-output
U   trunk/aspect/tests/passive_comp/screen-output


http://www.dealii.org/websvn/revision.php?repname=Aspect+Repository&path=%2F&rev=2063&peg=2063

Diff:
Modified: trunk/aspect/doc/modules/changes.h
===================================================================
--- trunk/aspect/doc/modules/changes.h	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/doc/modules/changes.h	2013-11-26 23:01:30 UTC (rev 2063)
@@ -8,6 +8,13 @@
 </p>
 
 <ol>
+  <li>Fixed: The composition and temperature statistics postprocessors
+  incorrectly computed the maximal compositional values and maximal
+  temperature if this maximum was less than or equal to zero. This
+  is now fixed.
+  <br>
+  (Wolfgang Bangerth 2013/11/25)
+
   <li>New: One can now select in the input file that the model should
   include latent heat. The generation of latent heat then needs to be
   described in the material model.

Modified: trunk/aspect/source/postprocess/composition_statistics.cc
===================================================================
--- trunk/aspect/source/postprocess/composition_statistics.cc	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/source/postprocess/composition_statistics.cc	2013-11-26 23:01:30 UTC (rev 2063)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2011, 2012 by the authors of the ASPECT code.
+  Copyright (C) 2011, 2012, 2013 by the authors of the ASPECT code.
 
   This file is part of ASPECT.
 
@@ -90,7 +90,7 @@
       std::vector<double> local_min_compositions (this->n_compositional_fields(),
                                                   std::numeric_limits<double>::max());
       std::vector<double> local_max_compositions (this->n_compositional_fields(),
-                                                  std::numeric_limits<double>::min());
+                                                  -std::numeric_limits<double>::max());
 
       for (unsigned int c=0; c<this->n_compositional_fields(); ++c)
         for (unsigned int i=0; i<this->get_solution().block(3+c).local_size(); ++i)
@@ -108,9 +108,9 @@
       // Utilities::MPI::min function, so negate the argument, take the maximum
       // as well, then negate it all again
       std::vector<double> global_min_compositions (this->n_compositional_fields(),
-                                                   std::numeric_limits<double>::min());
+                                                   std::numeric_limits<double>::max());
       std::vector<double> global_max_compositions (this->n_compositional_fields(),
-                                                   std::numeric_limits<double>::min());
+                                                   -std::numeric_limits<double>::max());
 
       {
         for (unsigned int c=0; c<this->n_compositional_fields(); ++c)

Modified: trunk/aspect/source/postprocess/temperature_statistics.cc
===================================================================
--- trunk/aspect/source/postprocess/temperature_statistics.cc	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/source/postprocess/temperature_statistics.cc	2013-11-26 23:01:30 UTC (rev 2063)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2011, 2012 by the authors of the ASPECT code.
+  Copyright (C) 2011, 2012, 2013 by the authors of the ASPECT code.
 
   This file is part of ASPECT.
 
@@ -84,7 +84,7 @@
       // points gives an inaccurate
       // picture of their true values
       double local_min_temperature = std::numeric_limits<double>::max();
-      double local_max_temperature = std::numeric_limits<double>::min();
+      double local_max_temperature = -std::numeric_limits<double>::max();
       for (unsigned int i=0; i<this->get_solution().block(2).local_size(); ++i)
         {
           local_min_temperature

Modified: trunk/aspect/tests/no_adiabatic_heating/screen-output
===================================================================
--- trunk/aspect/tests/no_adiabatic_heating/screen-output	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/tests/no_adiabatic_heating/screen-output	2013-11-26 23:01:30 UTC (rev 2063)
@@ -18,7 +18,7 @@
       Nonlinear Stokes residual: 2.76434e-05
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 1:  t=0.0284091 seconds
    Rebuilding Stokes preconditioner...
@@ -34,7 +34,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 2:  t=0.0568182 seconds
    Rebuilding Stokes preconditioner...
@@ -50,7 +50,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 3:  t=0.0852272 seconds
    Rebuilding Stokes preconditioner...
@@ -66,7 +66,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 4:  t=0.113636 seconds
    Rebuilding Stokes preconditioner...
@@ -82,7 +82,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 5:  t=0.142045 seconds
    Rebuilding Stokes preconditioner...
@@ -98,7 +98,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 6:  t=0.170454 seconds
    Rebuilding Stokes preconditioner...
@@ -114,7 +114,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 7:  t=0.198864 seconds
    Rebuilding Stokes preconditioner...
@@ -130,7 +130,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 8:  t=0.227273 seconds
    Rebuilding Stokes preconditioner...
@@ -146,7 +146,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 9:  t=0.255682 seconds
    Rebuilding Stokes preconditioner...
@@ -162,7 +162,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 10:  t=0.284091 seconds
    Rebuilding Stokes preconditioner...
@@ -178,7 +178,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 Number of active cells: 64 (on 4 levels)
 Number of degrees of freedom: 948 (578+81+289)
@@ -197,7 +197,7 @@
       Nonlinear Stokes residual: 2.23067e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 12:  t=0.369318 seconds
    Rebuilding Stokes preconditioner...
@@ -213,7 +213,7 @@
       Nonlinear Stokes residual: 4.35213e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 13:  t=0.426136 seconds
    Rebuilding Stokes preconditioner...
@@ -229,7 +229,7 @@
       Nonlinear Stokes residual: 2.19763e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 14:  t=0.482954 seconds
    Rebuilding Stokes preconditioner...
@@ -245,7 +245,7 @@
       Nonlinear Stokes residual: 5.41607e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 15:  t=0.539772 seconds
    Rebuilding Stokes preconditioner...
@@ -261,7 +261,7 @@
       Nonlinear Stokes residual: 2.26842e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 16:  t=0.59659 seconds
    Rebuilding Stokes preconditioner...
@@ -277,7 +277,7 @@
       Nonlinear Stokes residual: 4.05559e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 17:  t=0.653409 seconds
    Rebuilding Stokes preconditioner...
@@ -293,7 +293,7 @@
       Nonlinear Stokes residual: 2.34802e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 18:  t=0.710227 seconds
    Rebuilding Stokes preconditioner...
@@ -309,7 +309,7 @@
       Nonlinear Stokes residual: 5.53662e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 19:  t=0.767045 seconds
    Rebuilding Stokes preconditioner...
@@ -325,7 +325,7 @@
       Nonlinear Stokes residual: 2.52248e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 20:  t=0.823863 seconds
    Rebuilding Stokes preconditioner...
@@ -341,7 +341,7 @@
       Nonlinear Stokes residual: 2.38584e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 Number of active cells: 16 (on 3 levels)
 Number of degrees of freedom: 268 (162+25+81)
@@ -360,7 +360,7 @@
       Nonlinear Stokes residual: 5.03664e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 22:  t=0.994317 seconds
    Rebuilding Stokes preconditioner...
@@ -376,7 +376,7 @@
       Nonlinear Stokes residual: 1.48549e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 23:  t=1 seconds
    Rebuilding Stokes preconditioner...
@@ -392,7 +392,7 @@
       Nonlinear Stokes residual: 1.57585e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 Termination requested by criterion: end time
 

Modified: trunk/aspect/tests/no_adiabatic_heating_02/screen-output
===================================================================
--- trunk/aspect/tests/no_adiabatic_heating_02/screen-output	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/tests/no_adiabatic_heating_02/screen-output	2013-11-26 23:01:30 UTC (rev 2063)
@@ -31,7 +31,7 @@
      reference_cp:                                  1250
      reference_thermal_diffusivity:                 8e-10
 
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 1:  t=0.0284091 seconds
@@ -48,7 +48,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 2:  t=0.0568182 seconds
@@ -65,7 +65,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 3:  t=0.0852272 seconds
@@ -82,7 +82,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 4:  t=0.113636 seconds
@@ -99,7 +99,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 5:  t=0.142045 seconds
@@ -116,7 +116,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 6:  t=0.170454 seconds
@@ -133,7 +133,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 7:  t=0.198864 seconds
@@ -150,7 +150,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 8:  t=0.227273 seconds
@@ -167,7 +167,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 9:  t=0.255682 seconds
@@ -184,7 +184,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 10:  t=0.284091 seconds
@@ -201,7 +201,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 Number of active cells: 64 (on 4 levels)
@@ -221,7 +221,7 @@
       Nonlinear Stokes residual: 2.23067e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 12:  t=0.369318 seconds
@@ -238,7 +238,7 @@
       Nonlinear Stokes residual: 4.35213e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 13:  t=0.426136 seconds
@@ -255,7 +255,7 @@
       Nonlinear Stokes residual: 2.19763e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 14:  t=0.482954 seconds
@@ -272,7 +272,7 @@
       Nonlinear Stokes residual: 5.41607e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 15:  t=0.539772 seconds
@@ -289,7 +289,7 @@
       Nonlinear Stokes residual: 2.26842e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 16:  t=0.59659 seconds
@@ -306,7 +306,7 @@
       Nonlinear Stokes residual: 4.05559e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 17:  t=0.653409 seconds
@@ -323,7 +323,7 @@
       Nonlinear Stokes residual: 2.34802e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 18:  t=0.710227 seconds
@@ -340,7 +340,7 @@
       Nonlinear Stokes residual: 5.53662e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 19:  t=0.767045 seconds
@@ -357,7 +357,7 @@
       Nonlinear Stokes residual: 2.52248e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 20:  t=0.823863 seconds
@@ -374,7 +374,7 @@
       Nonlinear Stokes residual: 2.38584e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 Number of active cells: 16 (on 3 levels)
@@ -394,7 +394,7 @@
       Nonlinear Stokes residual: 5.03664e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 22:  t=0.994317 seconds
@@ -411,7 +411,7 @@
       Nonlinear Stokes residual: 1.48549e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 *** Timestep 23:  t=1 seconds
@@ -428,7 +428,7 @@
       Nonlinear Stokes residual: 1.57585e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
      RMS, max velocity:       1.05 m/s, 1.1 m/s
 
 Termination requested by criterion: end time

Modified: trunk/aspect/tests/no_adiabatic_heating_03/screen-output
===================================================================
--- trunk/aspect/tests/no_adiabatic_heating_03/screen-output	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/tests/no_adiabatic_heating_03/screen-output	2013-11-26 23:01:30 UTC (rev 2063)
@@ -18,7 +18,7 @@
       Nonlinear Stokes residual: 2.76434e-05
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 1:  t=0.0284091 seconds
    Rebuilding Stokes preconditioner...
@@ -34,7 +34,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 2:  t=0.0568182 seconds
    Rebuilding Stokes preconditioner...
@@ -50,7 +50,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 3:  t=0.0852272 seconds
    Rebuilding Stokes preconditioner...
@@ -66,7 +66,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 4:  t=0.113636 seconds
    Rebuilding Stokes preconditioner...
@@ -82,7 +82,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 5:  t=0.142045 seconds
    Rebuilding Stokes preconditioner...
@@ -98,7 +98,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 6:  t=0.170454 seconds
    Rebuilding Stokes preconditioner...
@@ -114,7 +114,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 7:  t=0.198864 seconds
    Rebuilding Stokes preconditioner...
@@ -130,7 +130,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 8:  t=0.227273 seconds
    Rebuilding Stokes preconditioner...
@@ -146,7 +146,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 9:  t=0.255682 seconds
    Rebuilding Stokes preconditioner...
@@ -162,7 +162,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 10:  t=0.284091 seconds
    Rebuilding Stokes preconditioner...
@@ -178,7 +178,7 @@
       Nonlinear Stokes residual: 2.21295e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 Number of active cells: 64 (on 4 levels)
 Number of degrees of freedom: 948 (578+81+289)
@@ -197,7 +197,7 @@
       Nonlinear Stokes residual: 2.23067e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 12:  t=0.369318 seconds
    Rebuilding Stokes preconditioner...
@@ -213,7 +213,7 @@
       Nonlinear Stokes residual: 4.35213e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 13:  t=0.426136 seconds
    Rebuilding Stokes preconditioner...
@@ -229,7 +229,7 @@
       Nonlinear Stokes residual: 2.19763e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 14:  t=0.482954 seconds
    Rebuilding Stokes preconditioner...
@@ -245,7 +245,7 @@
       Nonlinear Stokes residual: 5.41607e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 15:  t=0.539772 seconds
    Rebuilding Stokes preconditioner...
@@ -261,7 +261,7 @@
       Nonlinear Stokes residual: 2.26842e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 16:  t=0.59659 seconds
    Rebuilding Stokes preconditioner...
@@ -277,7 +277,7 @@
       Nonlinear Stokes residual: 4.05559e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 17:  t=0.653409 seconds
    Rebuilding Stokes preconditioner...
@@ -293,7 +293,7 @@
       Nonlinear Stokes residual: 2.34802e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 18:  t=0.710227 seconds
    Rebuilding Stokes preconditioner...
@@ -309,7 +309,7 @@
       Nonlinear Stokes residual: 5.53662e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 19:  t=0.767045 seconds
    Rebuilding Stokes preconditioner...
@@ -325,7 +325,7 @@
       Nonlinear Stokes residual: 2.52248e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 20:  t=0.823863 seconds
    Rebuilding Stokes preconditioner...
@@ -341,7 +341,7 @@
       Nonlinear Stokes residual: 2.38584e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 Number of active cells: 16 (on 3 levels)
 Number of degrees of freedom: 268 (162+25+81)
@@ -360,7 +360,7 @@
       Nonlinear Stokes residual: 5.03664e-07
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 22:  t=0.994317 seconds
    Rebuilding Stokes preconditioner...
@@ -376,7 +376,7 @@
       Nonlinear Stokes residual: 1.48549e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 *** Timestep 23:  t=1 seconds
    Rebuilding Stokes preconditioner...
@@ -392,7 +392,7 @@
       Nonlinear Stokes residual: 1.57585e-06
 
    Postprocessing:
-     Temperature min/avg/max: 0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max: 0 K, 0 K, 0 K
 
 Termination requested by criterion: end time
 

Modified: trunk/aspect/tests/passive_comp/screen-output
===================================================================
--- trunk/aspect/tests/passive_comp/screen-output	2013-11-26 20:58:57 UTC (rev 2062)
+++ trunk/aspect/tests/passive_comp/screen-output	2013-11-26 23:01:30 UTC (rev 2063)
@@ -24,7 +24,7 @@
 
      Writing graphical output:           output-passive_comp/solution-00000
      RMS, max velocity:                  5.11e-08 m/s, 6.29e-08 m/s
-     Temperature min/avg/max:            0 K, 0 K, 2.225e-308 K
+     Temperature min/avg/max:            0 K, 0 K, 0 K
      Heat fluxes through boundary parts: 0 W, 0 W
      Writing depth average               output-passive_comp/depthaverage.plt
 


More information about the CIG-COMMITS mailing list