]> https://gitweb.dealii.org/ - dealii.git/commitdiff
change sub_face to subface like everywhere else
authorGuido Kanschat <dr.guido.kanschat@gmail.com>
Thu, 5 Jan 2006 17:53:07 +0000 (17:53 +0000)
committerGuido Kanschat <dr.guido.kanschat@gmail.com>
Thu, 5 Jan 2006 17:53:07 +0000 (17:53 +0000)
git-svn-id: https://svn.dealii.org/trunk@11958 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/include/base/qprojector.h
deal.II/base/source/quadrature.cc
deal.II/deal.II/source/fe/fe_nedelec.cc
deal.II/deal.II/source/fe/fe_poly.cc
deal.II/deal.II/source/fe/fe_poly_tensor.cc
deal.II/deal.II/source/fe/mapping_cartesian.cc
deal.II/deal.II/source/fe/mapping_q.cc
deal.II/deal.II/source/fe/mapping_q1.cc

index a4232e56c1c748d79f3938c1548167cbc69214e1..da3e4cb57925bb37c39688a1889de46ad32b54f1 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2005 by the deal.II authors
+//    Copyright (C) 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
@@ -323,7 +323,7 @@ class QProjector
                                           */
         static
         DataSetDescriptor
-        sub_face (const unsigned int face_no,
+        subface (const unsigned int face_no,
                   const unsigned int subface_no,
                   const bool         face_orientation,
                   const unsigned int n_quadrature_points);
index f295340442e96f9aa7593a822b2d2391a7637ff5..01c1f7bfc11469c9f159938144c6c2fb4a176c41 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005 by the deal.II authors
+//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 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
@@ -1032,7 +1032,7 @@ face (const unsigned int face_no,
 template <int dim>
 typename QProjector<dim>::DataSetDescriptor
 QProjector<dim>::DataSetDescriptor::
-sub_face (const unsigned int face_no,
+subface (const unsigned int face_no,
           const unsigned int subface_no,
           const bool         face_orientation,
           const unsigned int n_quadrature_points)
index 781252c9a1de4fd8d400fe8d41a3ca86d48334bd..0cc239c62de99f7ac3db6eb2c5d08872d22be2b1 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2002, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 2002, 2003, 2004, 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
@@ -1272,7 +1272,7 @@ FE_Nedelec<dim>::fill_fe_subface_values (const Mapping<dim>                   &m
                                   // faces are stored contiguously)
   const typename QProjector<dim>::DataSetDescriptor offset
     = (QProjector<dim>::DataSetDescriptor::
-       sub_face (face, subface, cell->face_orientation(face),
+       subface (face, subface, cell->face_orientation(face),
                  quadrature.n_quadrature_points));
 
                                   // get the flags indicating the
index 917aaca24afc98f185572095c202dd90b9f0b606..86932b2fcedb47c4583dffe531a6151afc6aa143 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2004, 2005 by the deal.II authors
+//    Copyright (C) 2004, 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
@@ -346,7 +346,7 @@ FE_Poly<POLY,dim>::fill_fe_subface_values (const Mapping<dim>
 
   const typename QProjector<dim>::DataSetDescriptor dsd;
   const typename QProjector<dim>::DataSetDescriptor offset
-    = dsd.sub_face (face, subface, cell->face_orientation(face),
+    = dsd.subface (face, subface, cell->face_orientation(face),
                    quadrature.n_quadrature_points);
 
   const UpdateFlags flags(fe_data.update_once | fe_data.update_each);
index 7c92ab7d751caac8cdcd44631e26d2034242fc4f..ba3131dfd1b9c05434584e51f1f98efc160e1a7d 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2005 by the deal.II authors
+//    Copyright (C) 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
@@ -399,7 +399,7 @@ FE_PolyTensor<POLY,dim>::fill_fe_subface_values (
 
   const typename QProjector<dim>::DataSetDescriptor dsd;
   const typename QProjector<dim>::DataSetDescriptor offset
-    = dsd.sub_face (face, subface, cell->face_orientation(face),
+    = dsd.subface (face, subface, cell->face_orientation(face),
                    n_quad);
 
   const UpdateFlags flags(fe_data.update_once | fe_data.update_each);
index 06f734d7ba95b52321d7cc3b92d36116f252ffac..911ee3553870ab5ff842c2d1c5d4aac42cdc9d3e 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 2001, 2002, 2003, 2004, 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
@@ -207,7 +207,7 @@ MappingCartesian<dim>::compute_fill (const typename Triangulation<dim>::cell_ite
                                                      quadrature_points.size())
            :
                                             // called from FESubfaceValues
-           QProjector<dim>::DataSetDescriptor::sub_face (face_no, sub_no,
+           QProjector<dim>::DataSetDescriptor::subface (face_no, sub_no,
                                                          cell->face_orientation(face_no),
                                                          quadrature_points.size())
           ));
index 5e53b1efc374243b8544e7c476a5f0d884e9b094..b04936012573954e46de74ffa0e6a16db14ce9af 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 2001, 2002, 2003, 2004, 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
@@ -397,7 +397,7 @@ MappingQ<dim>::fill_fe_subface_values (const typename Triangulation<dim>::cell_i
   this->compute_fill_face (cell, face_no, true,
                            n_q_points,
                            QProjector<dim>::DataSetDescriptor::
-                           sub_face (face_no, sub_no,
+                           subface (face_no, sub_no,
                                      cell->face_orientation(face_no),
                                      n_q_points),
                            q.get_weights(),
index b867bd7fb2c88edae14bc0fa600a08c7f3ce6219..4c68f11193f00e9d80218a0c4c5afa4f9ee137e8 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2002, 2003, 2004, 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
@@ -712,7 +712,7 @@ MappingQ1<dim>::fill_fe_subface_values (const typename Triangulation<dim>::cell_
   
   compute_fill_face (cell, face_no, true,
                     n_q_points,
-                    DataSetDescriptor::sub_face (face_no, sub_no,
+                    DataSetDescriptor::subface (face_no, sub_no,
                                                   cell->face_orientation(face_no),
                                                   n_q_points),
                     q.get_weights(),

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.