]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add tests to check compilation with AD numbers: Physics NS (part 2)
authorJean-Paul Pelteret <jppelteret@gmail.com>
Fri, 12 Oct 2018 13:18:44 +0000 (15:18 +0200)
committerJean-Paul Pelteret <jppelteret@gmail.com>
Fri, 12 Oct 2018 13:18:44 +0000 (15:18 +0200)
Physics::Elasticity::StandardTensors class

13 files changed:
tests/ad_common_tests/physics_functions_02.h [new file with mode: 0644]
tests/adolc/physics_functions_02_1.cc [new file with mode: 0644]
tests/adolc/physics_functions_02_1.output [new file with mode: 0644]
tests/adolc/physics_functions_02_2.cc [new file with mode: 0644]
tests/adolc/physics_functions_02_2.output [new file with mode: 0644]
tests/sacado/physics_functions_02_1.cc [new file with mode: 0644]
tests/sacado/physics_functions_02_1.output [new file with mode: 0644]
tests/sacado/physics_functions_02_2.cc [new file with mode: 0644]
tests/sacado/physics_functions_02_2.output [new file with mode: 0644]
tests/sacado/physics_functions_02_3.cc [new file with mode: 0644]
tests/sacado/physics_functions_02_3.output [new file with mode: 0644]
tests/sacado/physics_functions_02_4.cc [new file with mode: 0644]
tests/sacado/physics_functions_02_4.output [new file with mode: 0644]

diff --git a/tests/ad_common_tests/physics_functions_02.h b/tests/ad_common_tests/physics_functions_02.h
new file mode 100644 (file)
index 0000000..2ec3bdc
--- /dev/null
@@ -0,0 +1,61 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Header file:
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// StandardTensors
+
+#include <deal.II/base/symmetric_tensor.h>
+#include <deal.II/base/tensor.h>
+
+#include <deal.II/differentiation/ad.h>
+
+#include <deal.II/physics/elasticity/kinematics.h>
+#include <deal.II/physics/elasticity/standard_tensors.h>
+
+#include <iostream>
+
+#include "../tests.h"
+
+using namespace dealii;
+namespace AD = dealii::Differentiation::AD;
+
+template <int dim, typename number_t, enum AD::NumberTypes ad_type_code>
+void
+test_physics()
+{
+  typedef
+    typename AD::NumberTraits<number_t, ad_type_code>::ad_type ADNumberType;
+
+  std::cout << "*** Test physics functions: Standard tensors, "
+            << "dim = " << Utilities::to_string(dim) << ", "
+            << "Type code: " << static_cast<int>(ad_type_code) << std::endl;
+
+  Tensor<2, dim, ADNumberType>       grad_u;
+  const Tensor<2, dim, ADNumberType> F =
+    Physics::Elasticity::Kinematics::F(grad_u);
+
+  const SymmetricTensor<2, dim, ADNumberType> ddet_F_dC =
+    Physics::Elasticity::StandardTensors<dim>::ddet_F_dC(F);
+  const SymmetricTensor<4, dim, ADNumberType> dC_inv_dC =
+    Physics::Elasticity::StandardTensors<dim>::dC_inv_dC(F);
+
+  const SymmetricTensor<4, dim, ADNumberType> Dev_P =
+    Physics::Elasticity::StandardTensors<dim>::Dev_P(F);
+  const SymmetricTensor<4, dim, ADNumberType> Dev_P_T =
+    Physics::Elasticity::StandardTensors<dim>::Dev_P_T(F);
+}
diff --git a/tests/adolc/physics_functions_02_1.cc b/tests/adolc/physics_functions_02_1.cc
new file mode 100644 (file)
index 0000000..5d6bafb
--- /dev/null
@@ -0,0 +1,40 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// Standard tensors
+//
+// AD number type: ADOL-C taped
+
+#include "../ad_common_tests/physics_functions_02.h"
+#include "../tests.h"
+
+int
+main()
+{
+  initlog();
+
+  deallog.push("Double");
+  {
+    test_physics<2, double, AD::NumberTypes::adolc_taped>();
+    test_physics<3, double, AD::NumberTypes::adolc_taped>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/adolc/physics_functions_02_1.output b/tests/adolc/physics_functions_02_1.output
new file mode 100644 (file)
index 0000000..3c6dd25
--- /dev/null
@@ -0,0 +1,3 @@
+
+DEAL::Double:OK
+DEAL::OK
diff --git a/tests/adolc/physics_functions_02_2.cc b/tests/adolc/physics_functions_02_2.cc
new file mode 100644 (file)
index 0000000..d17f96c
--- /dev/null
@@ -0,0 +1,40 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// Standard tensors
+//
+// AD number type: ADOL-C tapeless
+
+#include "../ad_common_tests/physics_functions_02.h"
+#include "../tests.h"
+
+int
+main()
+{
+  initlog();
+
+  deallog.push("Double");
+  {
+    test_physics<2, double, AD::NumberTypes::adolc_tapeless>();
+    test_physics<3, double, AD::NumberTypes::adolc_tapeless>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/adolc/physics_functions_02_2.output b/tests/adolc/physics_functions_02_2.output
new file mode 100644 (file)
index 0000000..3c6dd25
--- /dev/null
@@ -0,0 +1,3 @@
+
+DEAL::Double:OK
+DEAL::OK
diff --git a/tests/sacado/physics_functions_02_1.cc b/tests/sacado/physics_functions_02_1.cc
new file mode 100644 (file)
index 0000000..d071399
--- /dev/null
@@ -0,0 +1,48 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// Standard tensors
+//
+// AD number type: Sacado DFad
+
+#include "../ad_common_tests/physics_functions_02.h"
+#include "../tests.h"
+
+int
+main()
+{
+  initlog();
+
+  deallog.push("Double");
+  {
+    test_physics<2, double, AD::NumberTypes::adolc_taped>();
+    test_physics<3, double, AD::NumberTypes::adolc_taped>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog.push("Float");
+  {
+    test_physics<2, float, AD::NumberTypes::adolc_taped>();
+    test_physics<3, float, AD::NumberTypes::adolc_taped>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/sacado/physics_functions_02_1.output b/tests/sacado/physics_functions_02_1.output
new file mode 100644 (file)
index 0000000..ea4ec51
--- /dev/null
@@ -0,0 +1,4 @@
+
+DEAL::Double:OK
+DEAL::Float:OK
+DEAL::OK
diff --git a/tests/sacado/physics_functions_02_2.cc b/tests/sacado/physics_functions_02_2.cc
new file mode 100644 (file)
index 0000000..7a07c37
--- /dev/null
@@ -0,0 +1,48 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// Standard tensors
+//
+// AD number type: Sacado DFad-DFad
+
+#include "../ad_common_tests/physics_functions_02.h"
+#include "../tests.h"
+
+int
+main()
+{
+  initlog();
+
+  deallog.push("Double");
+  {
+    test_physics<2, double, AD::NumberTypes::sacado_dfad_dfad>();
+    test_physics<3, double, AD::NumberTypes::sacado_dfad_dfad>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog.push("Float");
+  {
+    test_physics<2, float, AD::NumberTypes::sacado_dfad_dfad>();
+    test_physics<3, float, AD::NumberTypes::sacado_dfad_dfad>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/sacado/physics_functions_02_2.output b/tests/sacado/physics_functions_02_2.output
new file mode 100644 (file)
index 0000000..ea4ec51
--- /dev/null
@@ -0,0 +1,4 @@
+
+DEAL::Double:OK
+DEAL::Float:OK
+DEAL::OK
diff --git a/tests/sacado/physics_functions_02_3.cc b/tests/sacado/physics_functions_02_3.cc
new file mode 100644 (file)
index 0000000..cbc75d3
--- /dev/null
@@ -0,0 +1,48 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// Standard tensors
+//
+// AD number type: Sacado Rad
+
+#include "../ad_common_tests/physics_functions_02.h"
+#include "../tests.h"
+
+int
+main()
+{
+  initlog();
+
+  deallog.push("Double");
+  {
+    test_physics<2, double, AD::NumberTypes::sacado_rad>();
+    test_physics<3, double, AD::NumberTypes::sacado_rad>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog.push("Float");
+  {
+    test_physics<2, float, AD::NumberTypes::sacado_rad>();
+    test_physics<3, float, AD::NumberTypes::sacado_rad>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/sacado/physics_functions_02_3.output b/tests/sacado/physics_functions_02_3.output
new file mode 100644 (file)
index 0000000..ea4ec51
--- /dev/null
@@ -0,0 +1,4 @@
+
+DEAL::Double:OK
+DEAL::Float:OK
+DEAL::OK
diff --git a/tests/sacado/physics_functions_02_4.cc b/tests/sacado/physics_functions_02_4.cc
new file mode 100644 (file)
index 0000000..777c9a8
--- /dev/null
@@ -0,0 +1,48 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// Test to check that the functions in the Physics namespace compile
+// with the various auto-differentiable number types:
+// Standard tensors
+//
+// AD number type: Sacado Rad-DFad
+
+#include "../ad_common_tests/physics_functions_02.h"
+#include "../tests.h"
+
+int
+main()
+{
+  initlog();
+
+  deallog.push("Double");
+  {
+    test_physics<2, double, AD::NumberTypes::sacado_rad_dfad>();
+    test_physics<3, double, AD::NumberTypes::sacado_rad_dfad>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog.push("Float");
+  {
+    test_physics<2, float, AD::NumberTypes::sacado_rad_dfad>();
+    test_physics<3, float, AD::NumberTypes::sacado_rad_dfad>();
+    deallog << "OK" << std::endl;
+  }
+  deallog.pop();
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/sacado/physics_functions_02_4.output b/tests/sacado/physics_functions_02_4.output
new file mode 100644 (file)
index 0000000..ea4ec51
--- /dev/null
@@ -0,0 +1,4 @@
+
+DEAL::Double:OK
+DEAL::Float:OK
+DEAL::OK

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.