]> https://gitweb.dealii.org/ - dealii.git/commitdiff
I managed to get the determinant wrong...
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 6 Apr 2005 18:15:10 +0000 (18:15 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 6 Apr 2005 18:15:10 +0000 (18:15 +0000)
git-svn-id: https://svn.dealii.org/trunk@10395 0785d39b-7218-0410-832d-ea1e28bc413d

tests/base/full_tensor_09.cc [new file with mode: 0644]
tests/base/symmetric_tensor_09.cc [new file with mode: 0644]

diff --git a/tests/base/full_tensor_09.cc b/tests/base/full_tensor_09.cc
new file mode 100644 (file)
index 0000000..cc2bb20
--- /dev/null
@@ -0,0 +1,55 @@
+//----------------------------  full_tensor_09.cc  ---------------------------
+//    $Id$
+//    Version: $Name$ 
+//
+//    Copyright (C) 2005 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.
+//
+//----------------------------  full_tensor_09.cc  ---------------------------
+
+// test the determinant code
+
+#include "../tests.h"
+#include <base/tensor.h>
+#include <base/logstream.h>
+#include <fstream>
+#include <iostream>
+
+
+template <int dim>
+void test ()
+{
+  Tensor<2,dim> t;
+
+                                  // choose the same symmetric tensor
+                                  // as in symmetric_tensor_09
+  for (unsigned int i=0; i<dim; ++i)
+    for (unsigned int j=i; j<dim; ++j)
+      t[i][j] = t[j][i] = (1.+(i+1)*(j*2));
+
+  for (unsigned int i=0; i<dim; ++i)
+    for (unsigned int j=0; j<dim; ++j)
+      deallog << i << ' ' << j << ' ' << t[i][j] << std::endl;
+  
+  deallog << determinant(t) << std::endl;
+}
+
+  
+
+
+int main ()
+{
+  std::ofstream logfile("full_tensor_09.output");
+  logfile.precision(3);
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+
+  test<2> ();
+  test<3> ();
+  
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/base/symmetric_tensor_09.cc b/tests/base/symmetric_tensor_09.cc
new file mode 100644 (file)
index 0000000..bb36263
--- /dev/null
@@ -0,0 +1,52 @@
+//----------------------------  symmetric_tensor_09.cc  ---------------------------
+//    $Id$
+//    Version: $Name$ 
+//
+//    Copyright (C) 2005 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.
+//
+//----------------------------  symmetric_tensor_09.cc  ---------------------------
+
+// test the determinant code
+
+#include "../tests.h"
+#include <base/symmetric_tensor.h>
+#include <base/logstream.h>
+#include <fstream>
+#include <iostream>
+
+
+template <int dim>
+void test ()
+{
+  SymmetricTensor<2,dim> t;
+  for (unsigned int i=0; i<dim; ++i)
+    for (unsigned int j=i; j<dim; ++j)
+      t[i][j] = (1.+(i+1)*(j*2));
+
+  for (unsigned int i=0; i<dim; ++i)
+    for (unsigned int j=0; j<dim; ++j)
+      deallog << i << ' ' << j << ' ' << t[i][j] << std::endl;
+  
+  deallog << determinant(t) << std::endl;
+}
+
+  
+
+
+int main ()
+{
+  std::ofstream logfile("symmetric_tensor_09.output");
+  logfile.precision(3);
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+
+  test<2> ();
+  test<3> ();
+  
+  deallog << "OK" << std::endl;
+}

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.