![]() |
ModelSpace
|
This class is a base implementation of the integrator. It defines the basic functions and components of an integrator. More...
#include <Integrator.hpp>
Public Member Functions | |
Integrator (Rates< T, N > &rate_calculator) | |
Constructor for the. | |
virtual void | step (T start_time, T end_time, const std::array< T, N > &start_state, std::array< T, N > &out_state) |
Function to step the integrator forward from time start to time end. | |
Protected Attributes | |
Rates< T, N > & | _rate_calculator |
Reference to dynamics object that calculates rates. | |
This class is a base implementation of the integrator. It defines the basic functions and components of an integrator.
It cannot function on its own. A derived class for RK4, forward Euler, etc. must be implemented to use the integrator.
|
inlinevirtual |
Function to step the integrator forward from time start to time end.
start_time | Start time for integration |
end_time | End time for integration |
start_state | State at start of integration |
out_state | Output state via implicit – result of integration |
Reimplemented in clockwerk::ForwardEulerIntegrator< double, 13 >, clockwerk::RK4Integrator< double, 13 >, clockwerk::RK4Integrator< double, 42 >, clockwerk::ForwardEulerIntegrator< T, N >, and clockwerk::RK4Integrator< T, N >.