Gauss Class Reference
[Utilities]
#include <Gauss.h>
Detailed Description
Calculate data for Gauss integration.Public Member Functions | |
| Gauss (size_t np) | |
| Constructor using number of Gauss points. | |
| Gauss () | |
| Default constructor. | |
| void | setTriangle (LocalVect< double, 7 > &w, LocalVect< Point< double >, 7 > &x) |
Choose integration on triangle (7-point formula) If this is not selected, Gauss integration formula on [-1,1] is calculated. | |
| double | w (size_t i) const |
| Return weight of i-th Gauss-Legendre point. | |
| double | x (size_t i) const |
| Return coordinate of i-th Gauss-Legendre point. | |
| const Point< double > & | xt (size_t i) const |
| Return coordinates of points in the reference triangle. | |
Member Function Documentation
Choose integration on triangle (7-point formula) If this is not selected, Gauss integration formula on [-1,1] is calculated.