20#ifndef LIBMESH_QUADRATURE_NODAL_H
21#define LIBMESH_QUADRATURE_NODAL_H
24#include "libmesh/quadrature.h"
81 virtual std::unique_ptr<QBase>
clone()
const override;
85 virtual void init_1D ()
override;
86 virtual void init_2D ()
override;
87 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 implements nodal quadrature rules for various element types.
QNodal & operator=(const QNodal &)=default
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...
QNodal(QNodal &&)=default
QNodal(const QNodal &)=default
Copy/move ctor, copy/move assignment operator, and destructor are all explicitly defaulted for this s...
virtual QuadratureType type() const override
virtual void init_1D() override
Initializes the 1D quadrature rule by filling the points and weights vectors with the appropriate val...
virtual ~QNodal()=default
QNodal(unsigned int dim, Order order=FIRST)
Constructor.
virtual void init_2D() override
Initializes the 2D quadrature rule by filling the points and weights vectors with the appropriate val...
The libMesh namespace provides an interface to certain functionality in the library.
QuadratureType
Defines an enum for currently available quadrature rules.