|
| Simpsons (unsigned order=3) |
| Set integration order without initializing values.
|
|
void | set_order (unsigned order) |
| Set integration order without initializing values.
|
|
unsigned | get_order () const |
| Access current integration order.
|
|
void | init (value_type t0, const ContainerType &u0) |
| Initialize the left-side boundary of the integration.
|
|
void | flush () |
| Reset the integral to zero and the last (t,u) pair in the add function as the new left-side.
|
|
void | add (value_type t_new, const ContainerType &u_new) |
| Add a new (t,u) pair to the time integral.
|
|
const ContainerType & | get_integral () const |
| Access the current value of the time integral.
|
|
std::array< value_type, 2 > | get_boundaries () const |
| Access the left and right boundary in time.
|
|
template<class ContainerType>
struct dg::Simpsons< ContainerType >
Time integration based on Simpson's rule.
The intention of this class is to provide a means to continuously integrate a sample of \(( t_i, u_i)\) pairs that become available one after the other (e.g. from the integration of an ODE) and approximate
\[ \int_{t_0}^T u(t) dt \]
- Note
- The algorithm simply integrates the Lagrange-polynomial through up to three data points. For equidistant Data points this equals either the Trapezoidal (linear) or the Simpson's rule (quadratic)
- See also
- For an explanation of Simpson's rule: https://en.wikipedia.org/wiki/Simpson%27s_rule
The class works by first calling the init
function to set the left-side boundary and then adding values as they become available. Calling the flush
member resets the integral to 0 and the right boundary as the new left boundary
for ( unsigned i=0; i<g1d.size(); i++)
simpsons.
add( times[i], values[i]);
INFO( "Error Simpsons is "<<fabs(integral-1.));
CHECK( fabs( integral - 1.) < 1e-8);
INFO(
"Integrated from "<<boundaries[0]<<
" (0) to "<<boundaries[1]<<
" ("<<
M_PI/2.<<
")");
CHECK( boundaries[0] == 0);
CHECK( boundaries[1] ==
M_PI/2.);
- Template Parameters
-
ContainerType | Any class for which a specialization of TensorTraits exists and which fulfills the requirements of the there defined data and execution policies derived from AnyVectorTag and AnyPolicyTag . Among others
dg::HVec (serial), dg::DVec (cuda / omp), dg::MHVec (mpi + serial) or dg::MDVec (mpi + cuda / omp)
std::vector<dg::DVec> (vector of shared device vectors), std::array<double, 4> (array of 4 doubles) or std::map < std::string, dg::DVec> ( a map of named vectors)
double (scalar) and other primitive types ...
If there are several ContainerTypes in the argument list, then TensorTraits must exist for all of them |
- See also
- See The dg dispatch system for a detailed explanation of our type dispatch system