|
| | QGaussLog (const unsigned int n, const bool revert=false) |
| |
| template<> |
| | QGaussLog (const unsigned int n, const bool revert) |
| |
| | 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 (Quadrature< dim > &&) noexcept=default |
| |
| | 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 () override=default |
| |
| Quadrature & | operator= (const Quadrature< dim > &) |
| |
| Quadrature & | operator= (Quadrature< dim > &&)=default |
| |
| 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) |
| |
| bool | is_tensor_product () const |
| |
| const std::array< Quadrature< 1 >, dim > & | get_tensor_basis () const |
| |
| template<> |
| | Quadrature (const unsigned int n_q) |
| |
| | Subscriptor () |
| |
| | Subscriptor (const Subscriptor &) |
| |
| | Subscriptor (Subscriptor &&) noexcept |
| |
| virtual | ~Subscriptor () |
| |
| Subscriptor & | operator= (const Subscriptor &) |
| |
| Subscriptor & | operator= (Subscriptor &&) noexcept |
| |
| void | subscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| |
| void | unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| |
| unsigned int | n_subscriptions () const |
| |
| template<typename StreamType > |
| void | list_subscribers (StreamType &stream) const |
| |
| void | list_subscribers () const |
| |
| template<class Archive > |
| void | serialize (Archive &ar, const unsigned int version) |
| |
template<int dim>
class QGaussLog< dim >
A class for Gauss quadrature with logarithmic weighting function. This formula is used to integrate \(\ln|x|\;f(x)\) on the interval \([0,1]\), where \(f\) is a smooth function without singularities. The collection of quadrature points and weights has been obtained using Numerical Recipes.
Notice that only the function \(f(x)\) should be provided, i.e., \(\int_0^1 f(x) \ln|x| dx = \sum_{i=0}^N w_i f(q_i)\). Setting the revert flag to true at construction time switches the weight from \(\ln|x|\) to \(\ln|1-x|\).
The weights and functions have been tabulated up to order 12.
Definition at line 177 of file quadrature_lib.h.