Flow123d
release_3.0.0-1263-g7cf53c1
|
Base class for quadrature rules on simplices in arbitrary dimensions. More...
#include <quadrature.hh>
Public Member Functions | |
Quadrature (const Quadrature &q) | |
Copy constructor. More... | |
Quadrature (unsigned int dimension, const unsigned int n_quadrature_points=0) | |
Constructor. More... | |
virtual | ~Quadrature () |
Constructor from quadrature of lower dimension (e.g. for side integration). More... | |
unsigned int | dim () const |
void | resize (const unsigned int n_q_points) |
Modify the number of quadrature points. More... | |
unsigned int | size () const |
Returns number of quadrature points. More... | |
template<unsigned int point_dim> | |
Armor::vec< point_dim > | point (const unsigned int i) const |
Returns the i th quadrature point. More... | |
const Armor::array & | get_points () const |
Return a reference to the whole array of quadrature points. More... | |
double | weight (const unsigned int i) const |
Returns the i th weight. More... | |
double & | weight (const unsigned int i) |
Returns the i th weight (non-const version). More... | |
const std::vector< double > & | get_weights () const |
Return a reference to the whole array of weights. More... | |
Quadrature & | operator= (const Quadrature &q) |
template<unsigned int bulk_dim> | |
Quadrature | make_from_side (unsigned int sid, unsigned int pid) |
template<> | |
Quadrature | make_from_side (unsigned int sid, unsigned int) |
Protected Attributes | |
const unsigned int | dim_ |
Dimension of quadrature points. More... | |
Armor::array | quadrature_points |
List of quadrature points. More... | |
std::vector< double > | weights |
List of weights to the quadrature points. More... | |
Base class for quadrature rules on simplices in arbitrary dimensions.
This class stores quadrature points and weights on the reference line, triangle or tetrahedron, respectively. Quadrature rules are used for evaluation of integrals over elements. In particular, for a reference element we have:
where , are the quadrature weights and the quadrature points, respectively.
TODO:
Definition at line 48 of file quadrature.hh.
Quadrature::Quadrature | ( | const Quadrature & | q | ) |
Copy constructor.
Definition at line 39 of file quadrature.cc.
Quadrature::Quadrature | ( | unsigned int | dimension, |
const unsigned int | n_quadrature_points = 0 |
||
) |
Constructor.
n_quadrature_points | Number of quadrature points to be allocated. |
Definition at line 32 of file quadrature.cc.
|
inlinevirtual |
Constructor from quadrature of lower dimension (e.g. for side integration).
sub_quadrature | lower dimensional (dim-1) quadrature |
sid | local index of side |
pid | index of permutation of nodes on given sideVirtual destructor. |
Definition at line 69 of file quadrature.hh.
|
inline |
|
inline |
Return a reference to the whole array of quadrature points.
Definition at line 97 of file quadrature.hh.
|
inline |
Return a reference to the whole array of weights.
Definition at line 109 of file quadrature.hh.
Quadrature Quadrature::make_from_side | ( | unsigned int | sid, |
unsigned int | |||
) |
Definition at line 85 of file quadrature.cc.
template Quadrature Quadrature::make_from_side< 3 > | ( | unsigned int | sid, |
unsigned int | pid | ||
) |
Create bulk quadrature from side quadrature.
Consider *this as quadrature on a side of an element and create higher dimensional quadrature considering side and permutation index.
Definition at line 52 of file quadrature.cc.
Quadrature & Quadrature::operator= | ( | const Quadrature & | q | ) |
|
inline |
Returns the i
th quadrature point.
Definition at line 90 of file quadrature.hh.
|
inline |
Modify the number of quadrature points.
n_q_points | New number of quadrature points. |
Definition at line 78 of file quadrature.hh.
|
inline |
Returns number of quadrature points.
Definition at line 85 of file quadrature.hh.
|
inline |
Returns the i
th weight.
Definition at line 101 of file quadrature.hh.
|
inline |
Returns the i
th weight (non-const version).
Definition at line 105 of file quadrature.hh.
|
protected |
Dimension of quadrature points.
Definition at line 127 of file quadrature.hh.
|
protected |
List of quadrature points.
To be filled by the constructors of the derived classes.
Definition at line 134 of file quadrature.hh.
|
protected |
List of weights to the quadrature points.
To be filled by the constructors of the derived classes.
Definition at line 141 of file quadrature.hh.