20#ifndef LIBMESH_QUADRATURE_CLOUGH_H
21#define LIBMESH_QUADRATURE_CLOUGH_H
24#include "libmesh/quadrature.h"
67 virtual std::unique_ptr<QBase>
clone()
const override;
71 virtual void init_1D ()
override;
72 virtual void init_2D ()
override;
73 virtual void init_3D ()
override;
The QBase class provides the basic functionality from which various quadrature rules can be derived.
virtual void init(const Elem &e, unsigned int p_level=invalid_uint)
Initializes the data structures for a quadrature rule for the element e.
This class creates a Gaussian quadrature rule duplicated for each subelement of a Clough-Tocher divid...
QClough(unsigned int dim, Order order=INVALID_ORDER)
Constructor.
virtual void init_1D() override
Initializes the 1D quadrature rule by filling the points and weights vectors with the appropriate val...
virtual std::unique_ptr< QBase > clone() const override
virtual void init_3D() override
Initializes the 3D quadrature rule by filling the points and weights vectors with the appropriate val...
QClough & operator=(const QClough &)=default
virtual QuadratureType type() const override
QClough(const QClough &)=default
Copy/move ctor, copy/move assignment operator, and destructor are all explicitly defaulted for this s...
QClough(QClough &&)=default
virtual void init_2D() override
Initializes the 2D quadrature rule by filling the points and weights vectors with the appropriate val...
virtual ~QClough()=default
The libMesh namespace provides an interface to certain functionality in the library.
QuadratureType
Defines an enum for currently available quadrature rules.