123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- #ifndef BOOST_NUMERIC_ODEINT_STEPPER_SYMPLECTIC_EULER_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_STEPPER_SYMPLECTIC_EULER_HPP_INCLUDED
- #include <boost/numeric/odeint/stepper/base/symplectic_rkn_stepper_base.hpp>
- #include <boost/numeric/odeint/algebra/range_algebra.hpp>
- #include <boost/numeric/odeint/algebra/default_operations.hpp>
- #include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp>
- #include <boost/numeric/odeint/algebra/operations_dispatcher.hpp>
- #include <array>
- namespace boost {
- namespace numeric {
- namespace odeint {
- #ifndef DOXYGEN_SKIP
- namespace detail {
- namespace symplectic_euler_coef {
- template< class Value >
- struct coef_a_type : public std::array< Value , 1 >
- {
- coef_a_type( void )
- {
- (*this)[0] = static_cast< Value >( 1 );
- }
- };
- template< class Value >
- struct coef_b_type : public std::array< Value , 1 >
- {
- coef_b_type( void )
- {
- (*this)[0] = static_cast< Value >( 1 );
- }
- };
- }
- }
- #endif
- template<
- class Coor ,
- class Momentum = Coor ,
- class Value = double ,
- class CoorDeriv = Coor ,
- class MomentumDeriv = Coor ,
- class Time = Value ,
- class Algebra = typename algebra_dispatcher< Coor >::algebra_type ,
- class Operations = typename operations_dispatcher< Coor >::operations_type ,
- class Resizer = initially_resizer
- >
- #ifndef DOXYGEN_SKIP
- class symplectic_euler :
- public symplectic_nystroem_stepper_base
- <
- 1 , 1 ,
- Coor , Momentum , Value , CoorDeriv , MomentumDeriv , Time , Algebra , Operations , Resizer
- >
- #else
- class symplectic_euler : public symplectic_nystroem_stepper_base
- #endif
- {
- public:
- #ifndef DOXYGEN_SKIP
- typedef symplectic_nystroem_stepper_base<
- 1 , 1 , Coor , Momentum , Value , CoorDeriv , MomentumDeriv , Time , Algebra , Operations , Resizer > stepper_base_type;
- #endif
- typedef typename stepper_base_type::algebra_type algebra_type;
- typedef typename stepper_base_type::value_type value_type;
- symplectic_euler( const algebra_type &algebra = algebra_type() )
- : stepper_base_type( detail::symplectic_euler_coef::coef_a_type< value_type >() ,
- detail::symplectic_euler_coef::coef_b_type< value_type >() ,
- algebra )
- { }
- };
-
- }
- }
- }
- #endif
|