Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Integrate functions

Integrate functions perform the time evolution of a given ODE from some starting time t0 to a given end time t1 and starting at state x0 by subsequent calls of a given stepper's do_step function. Additionally, the user can provide an __observer to analyze the state during time evolution. There are five different integrate functions which have different strategies on when to call the observer function during integration. All of the integrate functions except integrate_n_steps can be called with any stepper following one of the stepper concepts: Stepper , Error Stepper , Controlled Stepper , Dense Output Stepper. Depending on the abilities of the stepper, the integrate functions make use of step-size control or dense output.

Equidistant observer calls

If observer calls at equidistant time intervals dt are needed, the integrate_const or integrate_n_steps function should be used. We start with explaining integrate_const:

integrate_const( stepper , system , x0 , t0 , t1 , dt )

integrate_const( stepper , system , x0 , t0 , t1 , dt , observer )

These integrate the ODE given by system with subsequent steps from stepper. Integration start at t0 and x0 and ends at some t' = t0 + n dt with n such that t1 - dt < t' <= t1. x0 is changed to the approximative solution x(t') at the end of integration. If provided, the observer is invoked at times t0, t0 + dt, t0 + 2dt, ... ,t'. integrate_const returns the number of steps performed during the integration. Note that if you are using a simple Stepper or Error Stepper and want to make exactly n steps you should prefer the integrate_n_steps function below.

Integrate a given number of steps

This function is very similar to integrate_const above. The only difference is that it does not take the end time as parameter, but rather the number of steps. The integration is then performed until the time t0+n*dt.

integrate_n_steps( stepper , system , x0 , t0 , dt , n )

integrate_n_steps( stepper , system , x0 , t0 , dt , n , observer )

Integrates the ODE given by system with subsequent steps from stepper starting at x0 and t0. If provided, observer is called after every step and at the beginning with t0, similar as above. The approximate result for x( t0 + n dt ) is stored in x0. This function returns the end time t0 + n*dt.

Observer calls at each step

If the observer should be called at each time step then the integrate_adaptive function should be used. Note that in the case of Controlled Stepper or Dense Output Stepper this leads to non-equidistant observer calls as the step size changes.

integrate_adaptive( stepper , system , x0 , t0 , t1 , dt )

integrate_adaptive( stepper , system , x0 , t0 , t1 , dt , observer )

Integrates the ODE given by system with subsequent steps from stepper. Integration start at t0 and x0 and ends at t1. x0 is changed to the approximative solution x(t1) at the end of integration. If provided, the observer is called after each step (and before the first step at t0). integrate_adaptive returns the number of steps performed during the integration.

Observer calls at given time points

If the observer should be called at some user given time points the integrate_times function should be used. The times for observer calls are provided as a sequence of time values. The sequence is either defined via two iterators pointing to begin and end of the sequence or in terms of a Boost.Range object.

integrate_times( stepper , system , x0 , times_start , times_end , dt , observer )

integrate_times( stepper , system , x0 , time_range , dt , observer )

Integrates the ODE given by system with subsequent steps from stepper. Integration starts at *times_start and ends exactly at *(times_end-1). x0 contains the approximate solution at the end point of integration. This function requires an observer which is invoked at the subsequent times *times_start++ until times_start == times_end. If called with a Boost.Range time_range the function behaves the same with times_start = boost::begin( time_range ) and times_end = boost::end( time_range ). integrate_times returns the number of steps performed during the integration.

Convenience integrate function

Additionally to the sophisticated integrate function above odeint also provides a simple integrate routine which uses a dense output stepper based on runge_kutta_dopri5 with standard error bounds 10-6 for the steps.

integrate( system , x0 , t0 , t1 , dt )

integrate( system , x0 , t0 , t1 , dt , observer )

This function behaves exactly like integrate_adaptive above but no stepper has to be provided. It also returns the number of steps performed during the integration.


PrevUpHomeNext