]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Observe the RT element's values scale with 1/h
authorkayser-herold <kayser-herold@0785d39b-7218-0410-832d-ea1e28bc413d>
Sat, 29 Jul 2006 21:55:28 +0000 (21:55 +0000)
committerkayser-herold <kayser-herold@0785d39b-7218-0410-832d-ea1e28bc413d>
Sat, 29 Jul 2006 21:55:28 +0000 (21:55 +0000)
git-svn-id: https://svn.dealii.org/trunk@13505 0785d39b-7218-0410-832d-ea1e28bc413d

tests/fe/rt_10.cc [new file with mode: 0644]
tests/fe/rt_10/cmp/generic [new file with mode: 0644]

diff --git a/tests/fe/rt_10.cc b/tests/fe/rt_10.cc
new file mode 100644 (file)
index 0000000..2d88119
--- /dev/null
@@ -0,0 +1,99 @@
+//----------------------------  rt_10.cc  ---------------------------
+//    rt_10.cc,v 1.3 2003/06/09 16:00:38 wolf Exp
+//    Version: 
+//
+//    Copyright (C) 2003, 2005, 2006 by the deal.II authors
+//
+//    This file is subject to QPL and may not be  distributed
+//    without copyright and license information. Please refer
+//    to the file deal.II/doc/license.html for the  text  and
+//    further information on this license.
+//
+//----------------------------  rt_10.cc  ---------------------------
+
+// Observe how the values of the shape functions change as we make a
+// cell smaller and smaller
+
+#include "../tests.h"
+#include <base/quadrature_lib.h>
+#include <base/logstream.h>
+#include <lac/vector.h>
+#include <lac/solver_cg.h>
+#include <lac/precondition.h>
+#include <lac/vector_memory.h>
+#include <lac/sparse_matrix.h>
+#include <lac/sparsity_pattern.h>
+#include <grid/tria.h>
+#include <grid/tria_iterator.h>
+#include <dofs/dof_accessor.h>
+#include <grid/grid_generator.h>
+#include <grid/grid_tools.h>
+#include <fe/fe_raviart_thomas.h>
+#include <fe/fe_values.h>
+
+#include <vector>
+#include <fstream>
+#include <string>
+
+#define PRECISION 2
+
+
+std::ofstream logfile ("rt_10/output");
+
+template<int dim>
+void
+test (const unsigned int degree)
+{
+  FE_RaviartThomas<dim> fe_rt(degree);
+
+  deallog << "Degree=" << degree
+         << std::endl;
+  
+  for (double h=1; h>1./128; h/=2)
+    {      
+      deallog << "  h=" << h
+             << std::endl;
+
+      Triangulation<dim> tr;
+      GridGenerator::hyper_cube(tr, 0., h);
+
+      DoFHandler<dim> dof(tr);
+      dof.distribute_dofs(fe_rt);
+
+      QTrapez<dim> quadrature;
+
+      FEValues<dim> fe_values (fe_rt, quadrature, update_values);
+      fe_values.reinit (dof.begin_active());
+      for (unsigned int q=0; q<quadrature.n_quadrature_points; ++q)
+       {
+         deallog << "    Quadrature point " << q << ": ";
+         for (unsigned int i=0; i<fe_rt.dofs_per_cell; ++i)
+           {
+             deallog << '[';
+             for (unsigned int c=0; c<fe_rt.n_components(); ++c)
+               deallog << fe_values.shape_value_component(i,q,c) << ' ';
+             deallog << ']';
+           }
+         deallog << std::endl;
+       }
+    }
+}
+
+
+int
+main()
+{
+  logfile.precision (PRECISION);
+  logfile.setf(std::ios::fixed);  
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+  deallog.threshold_double(1.e-10);
+
+  for (unsigned int i=0; i<4; ++i)
+    test<2>(i);
+  
+  return 0;
+}
+
+
+
diff --git a/tests/fe/rt_10/cmp/generic b/tests/fe/rt_10/cmp/generic
new file mode 100644 (file)
index 0000000..a33f387
--- /dev/null
@@ -0,0 +1,93 @@
+
+0.344 0.156 0.000 0.000 
+0.156 0.344 0.000 0.000 
+0.000 0.000 0.344 0.156 
+0.000 0.000 0.156 0.344 
+DEAL:cg::Starting value 1.45
+DEAL:cg::Convergence step 2 value 0
+DEAL::Degree=0: 2 iterations to obtain convergence.
+0.174 0.000 -0.014 0.000 0.000 0.000 0.000 0.000 -0.129 0.000 0.000 0.000 
+0.000 0.196 0.000 -0.015 0.000 0.000 0.000 0.000 0.000 0.000 -0.145 0.000 
+-0.014 0.000 0.174 0.000 0.000 0.000 0.000 0.000 -0.129 0.000 0.000 0.000 
+0.000 -0.015 0.000 0.196 0.000 0.000 0.000 0.000 0.000 0.000 -0.145 0.000 
+0.000 0.000 0.000 0.000 0.174 0.000 -0.014 0.000 0.000 -0.129 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.196 0.000 -0.015 0.000 0.000 0.000 -0.145 
+0.000 0.000 0.000 0.000 -0.014 0.000 0.174 0.000 0.000 -0.129 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 -0.015 0.000 0.196 0.000 0.000 0.000 -0.145 
+-0.129 0.000 -0.129 0.000 0.000 0.000 0.000 0.000 1.195 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 -0.129 0.000 -0.129 0.000 0.000 1.195 0.000 0.000 
+0.000 -0.145 0.000 -0.145 0.000 0.000 0.000 0.000 0.000 0.000 1.345 0.000 
+0.000 0.000 0.000 0.000 0.000 -0.145 0.000 -0.145 0.000 0.000 0.000 1.345 
+DEAL:cg::Starting value 2.17
+DEAL:cg::Convergence step 6 value 0
+DEAL::Degree=1: 6 iterations to obtain convergence.
+0.167 0.000 0.023 0.006 0.000 0.001 0.000 0.000 0.000 0.000 0.000 0.000 -0.129 0.000 0.178 0.000 0.000 0.000 0.000 0.000 -0.018 0.000 0.025 0.000 
+0.000 0.187 0.000 0.000 0.007 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.145 0.000 0.200 0.000 0.000 0.000 0.000 0.000 
+0.023 0.000 0.267 0.001 0.000 -0.010 0.000 0.000 0.000 0.000 0.000 0.000 -0.018 0.000 0.025 0.000 0.000 0.000 0.000 0.000 -0.206 0.000 0.284 0.000 
+0.006 0.000 0.001 0.167 0.000 0.023 0.000 0.000 0.000 0.000 0.000 0.000 -0.129 0.000 -0.178 0.000 0.000 0.000 0.000 0.000 -0.018 0.000 -0.025 0.000 
+0.000 0.007 0.000 0.000 0.187 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.145 0.000 -0.200 0.000 0.000 0.000 0.000 0.000 
+0.001 0.000 -0.010 0.023 0.000 0.267 0.000 0.000 0.000 0.000 0.000 0.000 -0.018 0.000 -0.025 0.000 0.000 0.000 0.000 0.000 -0.206 0.000 -0.284 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.167 0.000 0.023 0.006 0.000 0.001 0.000 -0.129 0.000 0.000 0.000 -0.018 0.000 0.178 0.000 0.000 0.000 0.025 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.187 0.000 0.000 0.007 0.000 0.000 0.000 0.000 -0.145 0.000 0.000 0.000 0.000 0.000 0.200 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.023 0.000 0.267 0.001 0.000 -0.010 0.000 -0.018 0.000 0.000 0.000 -0.206 0.000 0.025 0.000 0.000 0.000 0.284 
+0.000 0.000 0.000 0.000 0.000 0.000 0.006 0.000 0.001 0.167 0.000 0.023 0.000 -0.129 0.000 0.000 0.000 -0.018 0.000 -0.178 0.000 0.000 0.000 -0.025 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.007 0.000 0.000 0.187 0.000 0.000 0.000 0.000 -0.145 0.000 0.000 0.000 0.000 0.000 -0.200 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.001 0.000 -0.010 0.023 0.000 0.267 0.000 -0.018 0.000 0.000 0.000 -0.206 0.000 -0.025 0.000 0.000 0.000 -0.284 
+-0.129 0.000 -0.018 -0.129 0.000 -0.018 0.000 0.000 0.000 0.000 0.000 0.000 1.195 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.167 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 -0.129 0.000 -0.018 -0.129 0.000 -0.018 0.000 1.195 0.000 0.000 0.000 0.167 0.000 0.000 0.000 0.000 0.000 0.000 
+0.178 0.000 0.025 -0.178 0.000 -0.025 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.318 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.184 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.145 0.000 0.000 -0.145 0.000 0.000 0.000 0.000 1.345 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 -0.145 0.000 0.000 -0.145 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.345 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 -0.018 0.000 -0.206 -0.018 0.000 -0.206 0.000 0.167 0.000 0.000 0.000 1.914 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.200 0.000 0.000 -0.200 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.483 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.178 0.000 0.025 -0.178 0.000 -0.025 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.318 0.000 0.000 0.000 0.184 
+-0.018 0.000 -0.206 -0.018 0.000 -0.206 0.000 0.000 0.000 0.000 0.000 0.000 0.167 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.914 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.200 0.000 0.000 -0.200 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.483 0.000 0.000 
+0.025 0.000 0.284 -0.025 0.000 -0.284 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.184 0.000 0.000 0.000 0.000 0.000 0.000 0.000 2.111 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.025 0.000 0.284 -0.025 0.000 -0.284 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.184 0.000 0.000 0.000 2.111 
+DEAL:cg::Starting value 2.70
+DEAL:cg::Convergence step 12 value 0
+DEAL::Degree=2: 12 iterations to obtain convergence.
+0.168 0.000 0.024 0.000 0.005 0.000 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.064 0.000 0.178 0.000 -0.118 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.009 0.000 0.025 0.000 -0.017 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.189 0.000 0.108 0.000 0.005 0.000 0.003 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.072 0.000 0.200 0.000 -0.133 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.041 0.000 0.114 0.000 -0.076 0.000 
+0.024 0.000 0.269 0.000 0.001 0.000 0.008 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.009 0.000 0.025 0.000 -0.017 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.102 0.000 0.284 0.000 -0.189 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.108 0.000 0.407 0.000 0.003 0.000 -0.011 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.041 0.000 0.114 0.000 -0.076 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.155 0.000 0.430 0.000 -0.286 0.000 
+0.005 0.000 0.001 0.000 0.168 0.000 0.024 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.064 0.000 -0.178 0.000 -0.118 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.009 0.000 -0.025 0.000 -0.017 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.005 0.000 0.003 0.000 0.189 0.000 0.108 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.072 0.000 -0.200 0.000 -0.133 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.041 0.000 -0.114 0.000 -0.076 0.000 
+0.001 0.000 0.008 0.000 0.024 0.000 0.269 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.009 0.000 -0.025 0.000 -0.017 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.102 0.000 -0.284 0.000 -0.189 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.003 0.000 -0.011 0.000 0.108 0.000 0.407 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.041 0.000 -0.114 0.000 -0.076 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.155 0.000 -0.430 0.000 -0.286 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.168 0.000 0.024 0.000 0.005 0.000 0.001 0.000 0.000 -0.064 0.000 0.000 0.000 0.009 0.000 0.000 0.000 0.178 0.000 0.000 0.000 0.025 0.000 0.000 0.000 -0.118 0.000 0.000 0.000 -0.017 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.189 0.000 0.108 0.000 0.005 0.000 0.003 0.000 0.000 0.000 -0.072 0.000 0.000 0.000 -0.041 0.000 0.000 0.000 0.200 0.000 0.000 0.000 0.114 0.000 0.000 0.000 -0.133 0.000 0.000 0.000 -0.076 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.024 0.000 0.269 0.000 0.001 0.000 0.008 0.000 0.000 0.009 0.000 0.000 0.000 -0.102 0.000 0.000 0.000 0.025 0.000 0.000 0.000 0.284 0.000 0.000 0.000 -0.017 0.000 0.000 0.000 -0.189 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.108 0.000 0.407 0.000 0.003 0.000 -0.011 0.000 0.000 0.000 -0.041 0.000 0.000 0.000 -0.155 0.000 0.000 0.000 0.114 0.000 0.000 0.000 0.430 0.000 0.000 0.000 -0.076 0.000 0.000 0.000 -0.286 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.005 0.000 0.001 0.000 0.168 0.000 0.024 0.000 0.000 -0.064 0.000 0.000 0.000 0.009 0.000 0.000 0.000 -0.178 0.000 0.000 0.000 -0.025 0.000 0.000 0.000 -0.118 0.000 0.000 0.000 -0.017 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.005 0.000 0.003 0.000 0.189 0.000 0.108 0.000 0.000 0.000 -0.072 0.000 0.000 0.000 -0.041 0.000 0.000 0.000 -0.200 0.000 0.000 0.000 -0.114 0.000 0.000 0.000 -0.133 0.000 0.000 0.000 -0.076 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001 0.000 0.008 0.000 0.024 0.000 0.269 0.000 0.000 0.009 0.000 0.000 0.000 -0.102 0.000 0.000 0.000 -0.025 0.000 0.000 0.000 -0.284 0.000 0.000 0.000 -0.017 0.000 0.000 0.000 -0.189 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.003 0.000 -0.011 0.000 0.108 0.000 0.407 0.000 0.000 0.000 -0.041 0.000 0.000 0.000 -0.155 0.000 0.000 0.000 -0.114 0.000 0.000 0.000 -0.430 0.000 0.000 0.000 -0.076 0.000 0.000 0.000 -0.286 
+-0.064 0.000 0.009 0.000 -0.064 0.000 0.009 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.928 0.000 0.000 0.000 -0.069 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.130 0.000 0.000 0.000 -0.010 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.064 0.000 0.009 0.000 -0.064 0.000 0.009 0.000 0.000 0.928 0.000 0.000 0.000 0.130 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.069 0.000 0.000 0.000 -0.010 0.000 0.000 
+0.178 0.000 0.025 0.000 -0.178 0.000 -0.025 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.318 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.184 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.072 0.000 -0.041 0.000 -0.072 0.000 -0.041 0.000 0.000 0.000 1.045 0.000 0.000 0.000 0.598 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.078 0.000 0.000 0.000 -0.045 
+-0.118 0.000 -0.017 0.000 -0.118 0.000 -0.017 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.069 0.000 0.000 0.000 1.024 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.010 0.000 0.000 0.000 0.143 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.009 0.000 -0.102 0.000 0.009 0.000 -0.102 0.000 0.000 0.130 0.000 0.000 0.000 1.487 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.010 0.000 0.000 0.000 -0.111 0.000 0.000 
+0.000 -0.072 0.000 -0.041 0.000 -0.072 0.000 -0.041 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.045 0.000 0.000 0.000 -0.078 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.598 0.000 0.000 0.000 -0.045 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.041 0.000 -0.155 0.000 -0.041 0.000 -0.155 0.000 0.000 0.000 0.598 0.000 0.000 0.000 2.247 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.045 0.000 0.000 0.000 -0.168 
+0.000 0.200 0.000 0.114 0.000 -0.200 0.000 -0.114 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.483 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.850 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.178 0.000 0.025 0.000 -0.178 0.000 -0.025 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.318 0.000 0.000 0.000 0.184 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 -0.133 0.000 -0.076 0.000 -0.133 0.000 -0.076 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.078 0.000 0.000 0.000 1.152 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.045 0.000 0.000 0.000 0.660 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.200 0.000 0.114 0.000 -0.200 0.000 -0.114 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.483 0.000 0.000 0.000 0.850 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.009 0.000 -0.102 0.000 0.009 0.000 -0.102 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.130 0.000 0.000 0.000 -0.010 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.487 0.000 0.000 0.000 -0.111 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.025 0.000 0.284 0.000 -0.025 0.000 -0.284 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.184 0.000 0.000 0.000 2.111 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.025 0.000 0.284 0.000 -0.025 0.000 -0.284 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.184 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 2.111 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.114 0.000 0.430 0.000 -0.114 0.000 -0.430 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.850 0.000 0.000 0.000 3.190 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+-0.017 0.000 -0.189 0.000 -0.017 0.000 -0.189 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.010 0.000 0.000 0.000 0.143 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.111 0.000 0.000 0.000 1.641 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.118 0.000 -0.017 0.000 -0.118 0.000 -0.017 0.000 0.000 -0.069 0.000 0.000 0.000 -0.010 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.024 0.000 0.000 0.000 0.143 0.000 0.000 
+0.000 -0.041 0.000 -0.155 0.000 -0.041 0.000 -0.155 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.598 0.000 0.000 0.000 -0.045 0.000 0.000 0.000 0.000 0.000 0.000 0.000 2.247 0.000 0.000 0.000 -0.168 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.133 0.000 -0.076 0.000 -0.133 0.000 -0.076 0.000 0.000 0.000 -0.078 0.000 0.000 0.000 -0.045 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.152 0.000 0.000 0.000 0.660 
+0.000 0.114 0.000 0.430 0.000 -0.114 0.000 -0.430 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.850 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 3.190 0.000 0.000 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.017 0.000 -0.189 0.000 -0.017 0.000 -0.189 0.000 0.000 -0.010 0.000 0.000 0.000 -0.111 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.143 0.000 0.000 0.000 1.641 0.000 0.000 
+0.000 -0.076 0.000 -0.286 0.000 -0.076 0.000 -0.286 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.045 0.000 0.000 0.000 0.660 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.168 0.000 0.000 0.000 2.479 0.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.076 0.000 -0.286 0.000 -0.076 0.000 -0.286 0.000 0.000 0.000 -0.045 0.000 0.000 0.000 -0.168 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.660 0.000 0.000 0.000 2.479 
+DEAL:cg::Starting value 3.81
+DEAL:cg::Convergence step 21 value 0.00
+DEAL::Degree=3: 21 iterations to obtain convergence.

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.