From: Daniel Arndt Date: Sun, 25 Feb 2018 16:27:30 +0000 (+0100) Subject: Move computation of QGaussRadauChebyshev support points into helper namespace X-Git-Tag: v9.0.0-rc1~363^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fd90fe5524064a32cc1d7e1be34fb94e288be50;p=dealii.git Move computation of QGaussRadauChebyshev support points into helper namespace --- diff --git a/include/deal.II/base/quadrature_lib.h b/include/deal.II/base/quadrature_lib.h index 6576104b63..2ff37bb651 100644 --- a/include/deal.II/base/quadrature_lib.h +++ b/include/deal.II/base/quadrature_lib.h @@ -552,14 +552,6 @@ public: private: const EndPoint ep; - /// Computes the points of the quadrature formula. - static std::vector - get_quadrature_points(const unsigned int n, EndPoint ep); - - /// Computes the weights of the quadrature formula. - static std::vector - get_quadrature_weights(const unsigned int n, EndPoint ep); - }; /** diff --git a/source/base/quadrature_lib.cc b/source/base/quadrature_lib.cc index d766912061..1dec63ee94 100644 --- a/source/base/quadrature_lib.cc +++ b/source/base/quadrature_lib.cc @@ -1228,65 +1228,68 @@ QGaussChebyshev::QGaussChebyshev (const unsigned int n) {} - - - -template <> -std::vector -QGaussRadauChebyshev<1>::get_quadrature_points(const unsigned int n, - EndPoint ep) +namespace internal { + namespace QGaussRadauChebyshev + { + // Computes the points of the quadrature formula. + std::vector + get_quadrature_points(const unsigned int n, + ::dealii::QGaussRadauChebyshev<1>::EndPoint ep) + { - std::vector points(n); - // n point quadrature: index from 0 to n-1 - for (unsigned short i=0; i points(n); + // n point quadrature: index from 0 to n-1 + for (unsigned short i=0; i::left: + { + points[i] = 1./2.*(1.-std::cos(numbers::PI*(1+2*double(i)/(2*double(n-1)+1.)))); + break; + } - default: - Assert (false, ExcMessage ("This constructor can only be called with either " - "QGaussRadauChebyshev::left or QGaussRadauChebyshev::right as " - "second argument.")); - } + case ::dealii::QGaussRadauChebyshev<1>::right: + { + points[i] = 1./2.*(1.-std::cos(numbers::PI*(2*double(n-1-i)/(2*double(n-1)+1.)))); + break; + } - return points; -} + default: + Assert (false, ExcMessage ("This constructor can only be called with either " + "QGaussRadauChebyshev::left or QGaussRadauChebyshev::right as " + "second argument.")); + } + return points; + } -template <> -std::vector -QGaussRadauChebyshev<1>::get_quadrature_weights(const unsigned int n, - EndPoint ep) -{ - std::vector weights(n); - for (unsigned short i=0; i + get_quadrature_weights(const unsigned int n, + ::dealii::QGaussRadauChebyshev<1>::EndPoint ep) { - // same weights as on [-1,1] - weights[i] = 2.*numbers::PI/double(2*(n-1)+1.); - if (ep==left && i==0) - weights[i] /= 2.; - else if (ep==right && i==(n-1)) - weights[i] /= 2.; - } - return weights; + std::vector weights(n); + + for (unsigned short i=0; i::left && i==0) + weights[i] /= 2.; + else if (ep==::dealii::QGaussRadauChebyshev<1>::right && i==(n-1)) + weights[i] /= 2.; + } + return weights; + } + } } @@ -1299,8 +1302,8 @@ QGaussRadauChebyshev<1>::QGaussRadauChebyshev(const unsigned int n, { Assert(n>0,ExcMessage("Need at least one point for quadrature rules")); - std::vector p=get_quadrature_points(n,ep); - std::vector w=get_quadrature_weights(n,ep); + std::vector p=internal::QGaussRadauChebyshev::get_quadrature_points(n,ep); + std::vector w=internal::QGaussRadauChebyshev::get_quadrature_weights(n,ep); for (unsigned int i=0; isize(); ++i) {