/* * chaotic_system.cpp * * This example demonstrates how one can use odeint to determine the Lyapunov * exponents of a chaotic system namely the well known Lorenz system. Furthermore, * it shows how odeint interacts with boost.range. * * Copyright 2011-2012 Karsten Ahnert * Copyright 2011-2013 Mario Mulansky * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or * copy at http://www.boost.org/LICENSE_1_0.txt) */ #include #include #include #include "gram_schmidt.hpp" using namespace std; using namespace boost::numeric::odeint; const double sigma = 10.0; const double R = 28.0; const double b = 8.0 / 3.0; //[ system_function_without_perturbations struct lorenz { template< class State , class Deriv > void operator()( const State &x_ , Deriv &dxdt_ , double t ) const { typename boost::range_iterator< const State >::type x = boost::begin( x_ ); typename boost::range_iterator< Deriv >::type dxdt = boost::begin( dxdt_ ); dxdt[0] = sigma * ( x[1] - x[0] ); dxdt[1] = R * x[0] - x[1] - x[0] * x[2]; dxdt[2] = -b * x[2] + x[0] * x[1]; } }; //] //[ system_function_with_perturbations const size_t n = 3; const size_t num_of_lyap = 3; const size_t N = n + n*num_of_lyap; typedef boost::array< double , N > state_type; typedef boost::array< double , num_of_lyap > lyap_type; void lorenz_with_lyap( const state_type &x , state_type &dxdt , double t ) { lorenz()( x , dxdt , t ); for( size_t l=0 ; l rk4; // perform 10000 transient steps integrate_n_steps( rk4 , lorenz() , std::make_pair( x.begin() , x.begin() + n ) , 0.0 , dt , 10000 ); //] //[ lyapunov_full_code fill( x.begin()+n , x.end() , 0.0 ); for( size_t i=0 ; i( x , lyap , n ); ++count; if( !(count % 100000) ) { cout << t; for( size_t i=0 ; i