Intrepid2
Classes | Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
Intrepid2::CubatureDirect< ExecSpaceType, pointValueType, weightValueType > Class Template Reference

Defines direct cubature (integration) rules in Intrepid. More...

#include <Intrepid2_CubatureDirect.hpp>

Inheritance diagram for Intrepid2::CubatureDirect< ExecSpaceType, pointValueType, weightValueType >:
Intrepid2::Cubature< ExecSpaceType, pointValueType, weightValueType > Intrepid2::CubatureDirectLineGauss< ExecSpaceType, pointValueType, weightValueType > Intrepid2::CubatureDirectLineGaussJacobi20< ExecSpaceType, pointValueType, weightValueType > Intrepid2::CubatureDirectTetDefault< ExecSpaceType, pointValueType, weightValueType > Intrepid2::CubatureDirectTriDefault< ExecSpaceType, pointValueType, weightValueType > Intrepid2::CubaturePolylib< ExecSpaceType, pointValueType, weightValueType >

Classes

struct  CubatureData
 Cubature data is defined on exec space and deep-copied when an object is created. More...
 
struct  CubatureDataStatic
 Cubature data is defined on the host space and is static. More...
 

Public Types

typedef Cubature
< ExecSpaceType,
pointValueType,
weightValueType >
::PointViewType 
PointViewType
 
typedef Cubature
< ExecSpaceType,
pointValueType,
weightValueType >
::weightViewType 
weightViewType
 
- Public Types inherited from Intrepid2::Cubature< ExecSpaceType, pointValueType, weightValueType >
typedef Kokkos::DynRankView
< pointValueType,
Kokkos::LayoutStride,
ExecSpaceType > 
PointViewType
 
typedef Kokkos::DynRankView
< weightValueType,
Kokkos::LayoutStride,
ExecSpaceType > 
weightViewType
 

Public Member Functions

virtual void getCubature (PointViewType cubPoints, weightViewType cubWeights) const
 Returns cubature points and weights (return arrays must be pre-sized/pre-allocated). More...
 
virtual ordinal_type getNumPoints () const
 Returns the number of cubature points.
 
virtual ordinal_type getDimension () const
 Returns dimension of integration domain.
 
virtual const char * getName () const
 Returns cubature name.
 
virtual ordinal_type getAccuracy () const
 Returns max. degree of polynomials that are integrated exactly. The return vector has size 1.
 
 CubatureDirect (const CubatureDirect &b)
 
 CubatureDirect (const ordinal_type degree, const ordinal_type dimension)
 
- Public Member Functions inherited from Intrepid2::Cubature< ExecSpaceType, pointValueType, weightValueType >
virtual void getCubature (PointViewType, weightViewType, PointViewType) const
 Returns cubature points and weights on physical cells (return arrays must be pre-sized/pre-allocated). More...
 

Protected Member Functions

template<typename cubPointValueType , class... cubPointProperties, typename cubWeightValueType , class... cubWeightProperties>
void getCubatureFromData (Kokkos::DynRankView< cubPointValueType, cubPointProperties...> cubPoints, Kokkos::DynRankView< cubWeightValueType, cubWeightProperties...> cubWeights, const CubatureData cubData) const
 Returns cubature points and weights. More...
 

Protected Attributes

ordinal_type degree_
 The degree of polynomials that are integrated exactly by this cubature rule.
 
ordinal_type dimension_
 Dimension of integration domain.
 
CubatureData cubatureData_
 Cubature data on device.
 

Detailed Description

template<typename ExecSpaceType = void, typename pointValueType = double, typename weightValueType = double>
class Intrepid2::CubatureDirect< ExecSpaceType, pointValueType, weightValueType >

Defines direct cubature (integration) rules in Intrepid.

Cubature template (rule) consists of cubature points and cubature weights. Intrepid provides a small collection of frequently used cubature rule templates for FEM reconstructions on simplices (edge, tri, tet) and pyramid cells.

For quad, hex, and triprism rules, see tensor-product rules defined in the class CubatureTensor, and its derived classes.

Cubature rules for simplices and the pyramid are stored in the cubature_data_ array.

All templates are defined on a reference cell and can be mapped to physical space cells by the methods available in the MultiCell class.

Definition at line 76 of file Intrepid2_CubatureDirect.hpp.

Member Function Documentation

template<typename ExecSpaceType = void, typename pointValueType = double, typename weightValueType = double>
virtual void Intrepid2::CubatureDirect< ExecSpaceType, pointValueType, weightValueType >::getCubature ( PointViewType  ,
weightViewType   
) const
inlinevirtual
template<typename ExecSpaceType = void, typename pointValueType = double, typename weightValueType = double>
template<typename cubPointValueType , class... cubPointProperties, typename cubWeightValueType , class... cubWeightProperties>
void Intrepid2::CubatureDirect< ExecSpaceType, pointValueType, weightValueType >::getCubatureFromData ( Kokkos::DynRankView< cubPointValueType, cubPointProperties...>  cubPoints,
Kokkos::DynRankView< cubWeightValueType, cubWeightProperties...>  cubWeights,
const CubatureData  cubData 
) const
inlineprotected

The documentation for this class was generated from the following file: