runge_kutta4_classic.hpp 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. [auto_generated]
  3. boost/numeric/odeint/stepper/runge_kutta4_classic.hpp
  4. [begin_description]
  5. Implementation for the classical Runge Kutta stepper.
  6. [end_description]
  7. Copyright 2009-2011 Karsten Ahnert
  8. Copyright 2009-2011 Mario Mulansky
  9. Distributed under the Boost Software License, Version 1.0.
  10. (See accompanying file LICENSE_1_0.txt or
  11. copy at http://www.boost.org/LICENSE_1_0.txt)
  12. */
  13. #ifndef BOOST_NUMERIC_ODEINT_STEPPER_RUNGE_KUTTA4_CLASSIC_HPP_INCLUDED
  14. #define BOOST_NUMERIC_ODEINT_STEPPER_RUNGE_KUTTA4_CLASSIC_HPP_INCLUDED
  15. #include <boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp>
  16. #include <boost/numeric/odeint/algebra/range_algebra.hpp>
  17. #include <boost/numeric/odeint/algebra/default_operations.hpp>
  18. #include <boost/numeric/odeint/util/state_wrapper.hpp>
  19. #include <boost/numeric/odeint/util/is_resizeable.hpp>
  20. #include <boost/numeric/odeint/util/resizer.hpp>
  21. namespace boost {
  22. namespace numeric {
  23. namespace odeint {
  24. template<
  25. class State ,
  26. class Value = double ,
  27. class Deriv = State ,
  28. class Time = Value ,
  29. class Algebra = range_algebra ,
  30. class Operations = default_operations ,
  31. class Resizer = initially_resizer
  32. >
  33. #ifndef DOXYGEN_SKIP
  34. class runge_kutta4_classic
  35. : public explicit_stepper_base<
  36. runge_kutta4_classic< State , Value , Deriv , Time , Algebra , Operations , Resizer > ,
  37. 4 , State , Value , Deriv , Time , Algebra , Operations , Resizer >
  38. #else
  39. class runge_kutta4_classic : public explicit_stepper_base
  40. #endif
  41. {
  42. public :
  43. #ifndef DOXYGEN_SKIP
  44. typedef explicit_stepper_base<
  45. runge_kutta4_classic< State , Value , Deriv , Time , Algebra , Operations , Resizer > ,
  46. 4 , State , Value , Deriv , Time , Algebra , Operations , Resizer > stepper_base_type;
  47. #else
  48. typedef explicit_stepper_base< runge_kutta4_classic< ... > , ... > stepper_base_type;
  49. #endif
  50. typedef typename stepper_base_type::state_type state_type;
  51. typedef typename stepper_base_type::value_type value_type;
  52. typedef typename stepper_base_type::deriv_type deriv_type;
  53. typedef typename stepper_base_type::time_type time_type;
  54. typedef typename stepper_base_type::algebra_type algebra_type;
  55. typedef typename stepper_base_type::operations_type operations_type;
  56. typedef typename stepper_base_type::resizer_type resizer_type;
  57. #ifndef DOXYGEN_SKIP
  58. typedef typename stepper_base_type::stepper_type stepper_type;
  59. typedef typename stepper_base_type::wrapped_state_type wrapped_state_type;
  60. typedef typename stepper_base_type::wrapped_deriv_type wrapped_deriv_type;
  61. #endif // DOXYGEN_SKIP
  62. runge_kutta4_classic( const algebra_type &algebra = algebra_type() ) : stepper_base_type( algebra )
  63. { }
  64. template< class System , class StateIn , class DerivIn , class StateOut >
  65. void do_step_impl( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &out , time_type dt )
  66. {
  67. // ToDo : check if size of in,dxdt,out are equal?
  68. static const value_type val1 = static_cast< value_type >( 1 );
  69. m_resizer.adjust_size( in , detail::bind( &stepper_type::template resize_impl< StateIn > , detail::ref( *this ) , detail::_1 ) );
  70. typename odeint::unwrap_reference< System >::type &sys = system;
  71. const time_type dh = dt / static_cast< value_type >( 2 );
  72. const time_type th = t + dh;
  73. // dt * dxdt = k1
  74. // m_x_tmp = x + dh*dxdt
  75. stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , dxdt ,
  76. typename operations_type::template scale_sum2< value_type , time_type >( val1 , dh ) );
  77. // dt * m_dxt = k2
  78. sys( m_x_tmp.m_v , m_dxt.m_v , th );
  79. // m_x_tmp = x + dh*m_dxt
  80. stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , m_dxt.m_v ,
  81. typename operations_type::template scale_sum2< value_type , time_type >( val1 , dh ) );
  82. // dt * m_dxm = k3
  83. sys( m_x_tmp.m_v , m_dxm.m_v , th );
  84. //m_x_tmp = x + dt*m_dxm
  85. stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , m_dxm.m_v ,
  86. typename operations_type::template scale_sum2< value_type , time_type >( val1 , dt ) );
  87. // dt * m_dxh = k4
  88. sys( m_x_tmp.m_v , m_dxh.m_v , t + dt );
  89. //x += dt/6 * ( m_dxdt + m_dxt + val2*m_dxm )
  90. time_type dt6 = dt / static_cast< value_type >( 6 );
  91. time_type dt3 = dt / static_cast< value_type >( 3 );
  92. stepper_base_type::m_algebra.for_each6( out , in , dxdt , m_dxt.m_v , m_dxm.m_v , m_dxh.m_v ,
  93. typename operations_type::template scale_sum5< value_type , time_type , time_type , time_type , time_type >( 1.0 , dt6 , dt3 , dt3 , dt6 ) );
  94. }
  95. template< class StateType >
  96. void adjust_size( const StateType &x )
  97. {
  98. resize_impl( x );
  99. stepper_base_type::adjust_size( x );
  100. }
  101. private:
  102. template< class StateIn >
  103. bool resize_impl( const StateIn &x )
  104. {
  105. bool resized = false;
  106. resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() );
  107. resized |= adjust_size_by_resizeability( m_dxm , x , typename is_resizeable<deriv_type>::type() );
  108. resized |= adjust_size_by_resizeability( m_dxt , x , typename is_resizeable<deriv_type>::type() );
  109. resized |= adjust_size_by_resizeability( m_dxh , x , typename is_resizeable<deriv_type>::type() );
  110. return resized;
  111. }
  112. resizer_type m_resizer;
  113. wrapped_deriv_type m_dxt;
  114. wrapped_deriv_type m_dxm;
  115. wrapped_deriv_type m_dxh;
  116. wrapped_state_type m_x_tmp;
  117. };
  118. /********* DOXYGEN *********/
  119. /**
  120. * \class runge_kutta4_classic
  121. * \brief The classical Runge-Kutta stepper of fourth order.
  122. *
  123. * The Runge-Kutta method of fourth order is one standard method for
  124. * solving ordinary differential equations and is widely used, see also
  125. * <a href="http://en.wikipedia.org/wiki/Runge%E2%80%93Kutta_methods">en.wikipedia.org/wiki/Runge-Kutta_methods</a>
  126. * The method is explicit and fulfills the Stepper concept. Step size control
  127. * or continuous output are not provided. This class implements the method directly, hence the
  128. * generic Runge-Kutta algorithm is not used.
  129. *
  130. * This class derives from explicit_stepper_base and inherits its interface via
  131. * CRTP (current recurring template pattern). For more details see
  132. * explicit_stepper_base.
  133. *
  134. * \tparam State The state type.
  135. * \tparam Value The value type.
  136. * \tparam Deriv The type representing the time derivative of the state.
  137. * \tparam Time The time representing the independent variable - the time.
  138. * \tparam Algebra The algebra type.
  139. * \tparam Operations The operations type.
  140. * \tparam Resizer The resizer policy type.
  141. */
  142. /**
  143. * \fn runge_kutta4_classic::runge_kutta4_classic( const algebra_type &algebra )
  144. * \brief Constructs the runge_kutta4_classic class. This constructor can be used as a default
  145. * constructor if the algebra has a default constructor.
  146. * \param algebra A copy of algebra is made and stored inside explicit_stepper_base.
  147. */
  148. /**
  149. * \fn runge_kutta4_classic::do_step_impl( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &out , time_type dt )
  150. * \brief This method performs one step. The derivative `dxdt` of `in` at the time `t` is passed to the method.
  151. * The result is updated out of place, hence the input is in `in` and the output in `out`.
  152. * Access to this step functionality is provided by explicit_stepper_base and
  153. * `do_step_impl` should not be called directly.
  154. *
  155. * \param system The system function to solve, hence the r.h.s. of the ODE. It must fulfill the
  156. * Simple System concept.
  157. * \param in The state of the ODE which should be solved. in is not modified in this method
  158. * \param dxdt The derivative of x at t.
  159. * \param t The value of the time, at which the step should be performed.
  160. * \param out The result of the step is written in out.
  161. * \param dt The step size.
  162. */
  163. /**
  164. * \fn runge_kutta4_classic::adjust_size( const StateType &x )
  165. * \brief Adjust the size of all temporaries in the stepper manually.
  166. * \param x A state from which the size of the temporaries to be resized is deduced.
  167. */
  168. } // odeint
  169. } // numeric
  170. } // boost
  171. #endif // BOOST_NUMERIC_ODEINT_STEPPER_RUNGE_KUTTA4_CLASSIC_HPP_INCLUDED