]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Rename Simplex::PGauss to Simplex::QGauss. 10980/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Mon, 28 Sep 2020 23:54:25 +0000 (17:54 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Mon, 28 Sep 2020 23:54:25 +0000 (17:54 -0600)
include/deal.II/simplex/quadrature_lib.h
source/simplex/quadrature_lib.cc
tests/simplex/fe_lib_02.cc
tests/simplex/poisson_01.cc
tests/simplex/poisson_02.cc
tests/simplex/q_projection_01.cc
tests/simplex/quadrature_lib_01.cc
tests/simplex/step-12.cc
tests/simplex/step-18.cc

index 7fc793d4eb320eb779450896c77da1fe33c2b05d..41c02dc02fb2e989fe114ebc94e6e37fe6261548 100644 (file)
@@ -38,13 +38,13 @@ namespace Simplex
    * @ingroup simplex
    */
   template <int dim>
-  class PGauss : public QSimplex<dim>
+  class QGauss : public QSimplex<dim>
   {
   public:
     /**
      * Constructor taking the number of quadrature points @p n_points.
      */
-    explicit PGauss(const unsigned int n_points);
+    explicit QGauss(const unsigned int n_points);
   };
 } // namespace Simplex
 
index b0ffad033b3fe92b1fe2b0c57c01e448ca184963..683c9ab7cdb150d810c8d63a7568d6885f523c75 100644 (file)
@@ -29,7 +29,7 @@ DEAL_II_NAMESPACE_OPEN
 namespace Simplex
 {
   template <int dim>
-  PGauss<dim>::PGauss(const unsigned int n_points)
+  QGauss<dim>::QGauss(const unsigned int n_points)
     : QSimplex<dim>(Quadrature<dim>())
   {
     // fill quadrature points and quadrature weights
@@ -146,8 +146,8 @@ namespace Simplex
 } // namespace Simplex
 
 
-template class Simplex::PGauss<1>;
-template class Simplex::PGauss<2>;
-template class Simplex::PGauss<3>;
+template class Simplex::QGauss<1>;
+template class Simplex::QGauss<2>;
+template class Simplex::QGauss<3>;
 
 DEAL_II_NAMESPACE_CLOSE
index c65e02abf812e580607064f05285dd07bc431639..8e4c141a9434e9c94cffe57d9507d0d40f8dd7d4 100644 (file)
@@ -49,12 +49,12 @@ main()
 {
   initlog();
 
-  test(Simplex::FE_P<2>(1), Simplex::PGauss<2>(3));
-  test(Simplex::FE_P<2>(2), Simplex::PGauss<2>(7));
-  test(Simplex::FE_P<3>(1), Simplex::PGauss<3>(4));
-  test(Simplex::FE_P<3>(2), Simplex::PGauss<3>(10));
-  test(Simplex::FE_DGP<2>(1), Simplex::PGauss<2>(3));
-  test(Simplex::FE_DGP<2>(2), Simplex::PGauss<2>(7));
-  test(Simplex::FE_DGP<3>(1), Simplex::PGauss<3>(4));
-  test(Simplex::FE_DGP<3>(2), Simplex::PGauss<3>(10));
+  test(Simplex::FE_P<2>(1), Simplex::QGauss<2>(3));
+  test(Simplex::FE_P<2>(2), Simplex::QGauss<2>(7));
+  test(Simplex::FE_P<3>(1), Simplex::QGauss<3>(4));
+  test(Simplex::FE_P<3>(2), Simplex::QGauss<3>(10));
+  test(Simplex::FE_DGP<2>(1), Simplex::QGauss<2>(3));
+  test(Simplex::FE_DGP<2>(2), Simplex::QGauss<2>(7));
+  test(Simplex::FE_DGP<3>(1), Simplex::QGauss<3>(4));
+  test(Simplex::FE_DGP<3>(2), Simplex::QGauss<3>(10));
 }
index 84410336fb7261b360c795965ce006e78567467e..e920c6e5397e76b1e11ab5576069dfa1748b81eb 100644 (file)
@@ -336,10 +336,10 @@ test_tet(const MPI_Comm &comm, const Parameters<dim> &params)
   // 3) Select components
   Simplex::FE_P<dim> fe(params.degree);
 
-  Simplex::PGauss<dim> quad(dim == 2 ? (params.degree == 1 ? 3 : 7) :
+  Simplex::QGauss<dim> quad(dim == 2 ? (params.degree == 1 ? 3 : 7) :
                                        (params.degree == 1 ? 4 : 10));
 
-  Simplex::PGauss<dim - 1> face_quad(dim == 2 ? (params.degree == 1 ? 2 : 3) :
+  Simplex::QGauss<dim - 1> face_quad(dim == 2 ? (params.degree == 1 ? 2 : 3) :
                                                 (params.degree == 1 ? 3 : 7));
 
   Simplex::FE_P<dim> fe_mapping(1);
index 03110d8288efc130cf3f3ed23559ce167dcbb53b..494dee8715912ee65fa8c9670fd662f87373e600 100644 (file)
@@ -189,9 +189,9 @@ public:
       false,
       new Simplex::FE_DGP<dim>(degree),
       new MappingFE<dim>(Simplex::FE_P<dim>(1)),
-      new Simplex::PGauss<dim>(dim == 2 ? (degree == 1 ? 3 : 7) :
+      new Simplex::QGauss<dim>(dim == 2 ? (degree == 1 ? 3 : 7) :
                                           (degree == 1 ? 4 : 10)),
-      new Simplex::PGauss<dim - 1>(dim == 2 ? (degree == 1 ? 2 : 3) :
+      new Simplex::QGauss<dim - 1>(dim == 2 ? (degree == 1 ? 2 : 3) :
                                               (degree == 1 ? 3 : 7)),
       initial_refinement,
       number_refinement);
index 919c38839480419bf416397097d43f4900c711fb..324cdc6080f14d23db4774ee385dbc7b4216a567 100644 (file)
@@ -14,7 +14,7 @@
 // ---------------------------------------------------------------------
 
 
-// Test QProjection for Simplex::PGauss.
+// Test QProjection for Simplex::QGauss.
 
 
 #include <deal.II/base/qprojector.h>
@@ -38,7 +38,7 @@ test<2>(const unsigned int n_points)
 {
   const int dim = 2;
 
-  Simplex::PGauss<dim - 1> quad_ref(n_points);
+  Simplex::QGauss<dim - 1> quad_ref(n_points);
 
   const auto quad =
     QProjector<dim>::project_to_all_faces(ReferenceCell::Type::Tri, quad_ref);
@@ -80,7 +80,7 @@ test<3>(const unsigned int n_points)
 {
   const int dim = 3;
 
-  Simplex::PGauss<dim - 1> quad_ref(n_points);
+  Simplex::QGauss<dim - 1> quad_ref(n_points);
 
   const auto quad =
     QProjector<dim>::project_to_all_faces(ReferenceCell::Type::Tet, quad_ref);
index 8e9f8c30020b87c1eb4fd30b59811bbd9c615a5f..85d6b4a0aa60ab569b59c31cfb35f42dfb2ba0df 100644 (file)
@@ -14,7 +14,7 @@
 // ---------------------------------------------------------------------
 
 
-// Test Simplex::PGauss: output its quadrature points and weights.
+// Test Simplex::QGauss: output its quadrature points and weights.
 
 
 #include <deal.II/simplex/quadrature_lib.h>
@@ -27,7 +27,7 @@ template <int dim>
 void
 test(const unsigned int n_points)
 {
-  Simplex::PGauss<dim> quad(n_points);
+  Simplex::QGauss<dim> quad(n_points);
 
   for (unsigned int q = 0; q < quad.size(); ++q)
     {
index e1f12330b6bf43f993eb7e23cdc2d965b21447bb..4c7fe7e2c1df53c823dc78d2c9ee833b10e0908e 100644 (file)
@@ -391,10 +391,10 @@ namespace Step12
 
     QGauss<dim - 1> face_quad(degree + 1);
 #else
-    Simplex::PGauss<dim> quad(dim == 2 ? (degree == 1 ? 3 : 7) :
+    Simplex::QGauss<dim> quad(dim == 2 ? (degree == 1 ? 3 : 7) :
                                          (degree == 1 ? 4 : 10));
 
-    Simplex::PGauss<dim - 1> face_quad(dim == 2 ? (degree == 1 ? 2 : 3) :
+    Simplex::QGauss<dim - 1> face_quad(dim == 2 ? (degree == 1 ? 2 : 3) :
                                                   (degree == 1 ? 3 : 7));
 #endif
 
index a146186b15e10ee61051b8718b2d33c2a6867566..2bac10c4d140a17d2f311e3bc18ed8087dc3c9b7 100644 (file)
@@ -419,7 +419,7 @@ namespace Step18
     : triangulation()
     , fe(Simplex::FE_P<dim>(degree), dim)
     , dof_handler(triangulation)
-    , quadrature_formula(Simplex::PGauss<dim>(fe.degree == 1 ? 4 : 10))
+    , quadrature_formula(Simplex::QGauss<dim>(fe.degree == 1 ? 4 : 10))
     , mapping(Simplex::FE_P<dim>(1))
     , present_time(0.0)
     , present_timestep(1.0)

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.