|
| | QGaussLobatto (const unsigned int n) |
| |
| | Quadrature (const unsigned int n_quadrature_points=0) |
| |
| | Quadrature (const SubQuadrature &, const Quadrature< 1 > &) |
| |
| | Quadrature (const Quadrature< dim !=1 ? 1 :0 > &quadrature_1d) |
| |
| | Quadrature (const Quadrature< dim > &q) |
| |
| | Quadrature (const std::vector< Point< dim > > &points, const std::vector< double > &weights) |
| |
| | Quadrature (const std::vector< Point< dim > > &points) |
| |
| | Quadrature (const Point< dim > &point) |
| |
| virtual | ~Quadrature () |
| |
| Quadrature & | operator= (const Quadrature< dim > &) |
| |
| bool | operator== (const Quadrature< dim > &p) const |
| |
| void | initialize (const std::vector< Point< dim > > &points, const std::vector< double > &weights) |
| |
| unsigned int | size () const |
| |
| const Point< dim > & | point (const unsigned int i) const |
| |
| const std::vector< Point< dim > > & | get_points () const |
| |
| double | weight (const unsigned int i) const |
| |
| const std::vector< double > & | get_weights () const |
| |
| std::size_t | memory_consumption () const |
| |
| template<class Archive > |
| void | serialize (Archive &ar, const unsigned int version) |
| |
| | Subscriptor () |
| |
| | Subscriptor (const Subscriptor &) |
| |
| virtual | ~Subscriptor () |
| |
| Subscriptor & | operator= (const Subscriptor &) |
| |
| void | subscribe (const char *identifier=0) const |
| |
| void | unsubscribe (const char *identifier=0) const |
| |
| unsigned int | n_subscriptions () const |
| |
| void | list_subscribers () const |
| |
| | DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects."<< "\"<< "(Additional information: "<< arg3<< ")\"<< "See the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "a lot more information on what this error means and "<< "how to fix programs in which it happens.") |
| |
| | DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier <"<< arg2<< "> subscribes to this object of class "<< arg1<< ". Consequently, it cannot be unsubscribed.") |
| |
| template<class Archive > |
| void | serialize (Archive &ar, const unsigned int version) |
| |
template<int dim>
class QGaussLobatto< dim >
The Gauss-Lobatto family of quadrature rules for numerical integration.
This modification of the Gauss quadrature uses the two interval end points as well. Being exact for polynomials of degree 2n-3, this formula is suboptimal by two degrees.
The quadrature points are interval end points plus the roots of the derivative of the Legendre polynomial Pn-1 of degree n-1. The quadrature weights are 2/(n(n-1)(Pn-1(xi)2).
- Note
- This implementation has not been optimized concerning numerical stability and efficiency. It can be easily adapted to the general case of Gauss-Lobatto-Jacobi-Bouzitat quadrature with arbitrary parameters
,
, of which the Gauss-Lobatto-Legendre quadrature (
) is a special case.
- See also
- http://en.wikipedia.org/wiki/Handbook_of_Mathematical_Functions
-
Karniadakis, G.E. and Sherwin, S.J.: Spectral/hp element methods for computational fluid dynamics. Oxford: Oxford University Press, 2005
- Author
- Guido Kanschat, 2005, 2006; F. Prill, 2006
Definition at line 75 of file quadrature_lib.h.