2D Gaussian integration class. 4x4 integration points. This integration scheme can integrate up to seventh-order polynomials exactly and is therefore a suitable "full" integration scheme for cubic (sixteen-node) elements in which the highest-order polynomial is sixth order. More...
#include <integral.h>
Public Member Functions | |
Gauss () | |
Default constructor (empty) More... | |
Gauss (const Gauss &dummy)=delete | |
Broken copy constructor. More... | |
void | operator= (const Gauss &)=delete |
Broken assignment operator. More... | |
unsigned | nweight () const |
Number of integration points of the scheme. More... | |
double | knot (const unsigned &i, const unsigned &j) const |
Return coordinate s[j] of integration point i. More... | |
double | weight (const unsigned &i) const |
Return weight of integration point i. More... | |
![]() | |
Integral () | |
Default constructor (empty) More... | |
Integral (const Integral &dummy)=delete | |
Broken copy constructor. More... | |
void | operator= (const Integral &)=delete |
Broken assignment operator. More... | |
virtual | ~Integral () |
Virtual destructor (empty) More... | |
virtual Vector< double > | knot (const unsigned &i) const |
Return local coordinates of i-th intergration point. Broken virtual. More... | |
Static Private Attributes | |
static const unsigned | Npts = 16 |
Number of integration points in the scheme. More... | |
static const double | Knot [16][2] |
Array to hold the weights and knots (defined in cc file) More... | |
static const double | Weight [16] |
2D Gaussian integration class. 4x4 integration points. This integration scheme can integrate up to seventh-order polynomials exactly and is therefore a suitable "full" integration scheme for cubic (sixteen-node) elements in which the highest-order polynomial is sixth order.
Definition at line 388 of file integral.h.
|
inline |
Default constructor (empty)
Definition at line 399 of file integral.h.
|
delete |
Broken copy constructor.
|
inlinevirtual |
Return coordinate s[j] of integration point i.
Implements oomph::Integral.
Definition at line 414 of file integral.h.
References i.
|
inlinevirtual |
Number of integration points of the scheme.
Implements oomph::Integral.
Definition at line 408 of file integral.h.
|
delete |
Broken assignment operator.
|
inlinevirtual |
Return weight of integration point i.
Implements oomph::Integral.
Definition at line 420 of file integral.h.
References i.
|
staticprivate |
Array to hold the weights and knots (defined in cc file)
Definition at line 394 of file integral.h.
|
staticprivate |
Number of integration points in the scheme.
Definition at line 392 of file integral.h.
|
staticprivate |
Definition at line 394 of file integral.h.