Chi-Tech
|
#include <quadrature_gausschebyshev.h>
Public Member Functions | |
QuadratureGaussChebyshev (const chi::InputParameters ¶ms) | |
QuadratureGaussChebyshev (unsigned int N, bool verbose=false) | |
Public Member Functions inherited from chi_math::Quadrature | |
const std::pair< double, double > & | GetRange () const |
void | SetRange (const std::pair< double, double > &in_range) |
Public Member Functions inherited from ChiObject | |
ChiObject () | |
ChiObject (const chi::InputParameters ¶ms) | |
void | SetStackID (size_t stack_id) |
size_t | StackID () const |
virtual void | PushOntoStack (std::shared_ptr< ChiObject > &new_object) |
virtual | ~ChiObject ()=default |
Static Public Member Functions | |
static chi::InputParameters | GetInputParameters () |
Static Public Member Functions inherited from chi_math::Quadrature | |
static chi::InputParameters | GetInputParameters () |
Static Public Member Functions inherited from ChiObject | |
static chi::InputParameters | GetInputParameters () |
Private Member Functions | |
void | Initialize (unsigned int N) |
Additional Inherited Members | |
Data Fields inherited from chi_math::Quadrature | |
QuadratureOrder | order_ |
std::vector< chi_math::QuadraturePointXYZ > | qpoints_ |
std::vector< double > | weights_ |
Protected Member Functions inherited from chi_math::Quadrature | |
Quadrature (const chi::InputParameters ¶ms) | |
Quadrature (QuadratureOrder in_order) | |
Protected Attributes inherited from chi_math::Quadrature | |
std::pair< double, double > | range_ |
bool | verbose_ = false |
Gauss-Chebyshev quadrature.
Definition at line 12 of file quadrature_gausschebyshev.h.
|
explicit |
Definition at line 34 of file quadrature_gausschebyshev.cc.
|
explicit |
Populates the abscissae and weights for a Gauss-Chebyshev quadrature given the number of desired quadrature points. The order of the quadrature will be 2N-1.
Definition at line 62 of file quadrature_gausschebyshev.cc.
|
static |
Definition at line 17 of file quadrature_gausschebyshev.cc.
|
private |
Populates the abscissae and weights for a Gauss-Chebyshev quadrature given the number of desired quadrature points.
Definition at line 71 of file quadrature_gausschebyshev.cc.