]> https://gitweb.dealii.org/ - dealii.git/commitdiff
rename Adini polynomials to standard name
authorGuido Kanschat <dr.guido.kanschat@gmail.com>
Mon, 11 May 2009 10:59:11 +0000 (10:59 +0000)
committerGuido Kanschat <dr.guido.kanschat@gmail.com>
Mon, 11 May 2009 10:59:11 +0000 (10:59 +0000)
git-svn-id: https://svn.dealii.org/trunk@18833 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/include/base/polynomials_adini.h
deal.II/base/source/polynomials_adini.cc

index ffa00fd920f9beeb349e661cd15b66430d62b16e..df33961981cda303c17a9be00e90668f0e54166e 100644 (file)
@@ -35,7 +35,7 @@ DEAL_II_NAMESPACE_OPEN
  * @author Bärbel Janssen, 2007
  */
 
-class AdiniPoly 
+class PolynomialsAdini 
 {
   public:
                                      /**
@@ -43,7 +43,7 @@ class AdiniPoly
                                       * the polynomials of 
                                       * the described space
                                       */
-    AdiniPoly ();
+    PolynomialsAdini ();
                                      /**
                                       * Computes the value and the
                                       * first and second derivatives
index 3685dfda0ba224e8e9d68984c4e4eeebc10022a9..9e25870cf41eb4a4bc49fe3da359a8a191d10c1f 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -21,7 +21,7 @@
 DEAL_II_NAMESPACE_OPEN
 
 
-AdiniPoly::AdiniPoly() :
+PolynomialsAdini::PolynomialsAdini() :
   coef(12,12),
   dx(12,12),
   dy(12,12),
@@ -112,7 +112,7 @@ AdiniPoly::AdiniPoly() :
 }
 
 void 
-AdiniPoly::compute (const Point<2> &unit_point, 
+PolynomialsAdini::compute (const Point<2> &unit_point, 
                    std::vector<double> &values,
                    std::vector<Tensor<1,2> > &grads,
                    std::vector< Tensor<2,2> > &grad_grads) const
@@ -143,7 +143,7 @@ AdiniPoly::compute (const Point<2> &unit_point,
   return;
 }
 
-double AdiniPoly::compute_value (const unsigned int i, const Point<2> &p) const
+double PolynomialsAdini::compute_value (const unsigned int i, const Point<2> &p) const
 {
   const double x = p(0);
   const double y = p(1);
@@ -161,7 +161,7 @@ double AdiniPoly::compute_value (const unsigned int i, const Point<2> &p) const
          coef(11,i)*x*y*y*y;
 }
 
-Tensor<1,2> AdiniPoly::compute_grad (const unsigned int i, const Point<2> &p) const
+Tensor<1,2> PolynomialsAdini::compute_grad (const unsigned int i, const Point<2> &p) const
 {
   const double x = p(0);
   const double y = p(1);
@@ -194,7 +194,7 @@ Tensor<1,2> AdiniPoly::compute_grad (const unsigned int i, const Point<2> &p) co
   return tensor;
 }  
 
-Tensor<2,2> AdiniPoly::compute_grad_grad (const unsigned int i, const Point<2> &p) const
+Tensor<2,2> PolynomialsAdini::compute_grad_grad (const unsigned int i, const Point<2> &p) const
 {
   const double x = p(0);
   const double y = p(1);

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.