I have 3 equations as follows
u'= -a*(u-v)
v'= c*u-v-u*w
w'= -b*w+u*v
a=5.0 b=0.9 and c=8.2
Im trying to use scipy.integrate.odeint solve from t=0 to t=10 My initial conditions are u(0)=0, v(0)=1.0 and w(0)=2.0 I can't many useful notes on scipy.integrate.odeint. So could use some advice on using this module for my problem.
scipy.integrate.odeint takes a function to integrate, initial values for the dependent variables (your
u
,v
, anw
) and a grid of time values. Any extra arguments that your function needs (such asa
,b
andc
) are passed asargs
.The function you define should take a vector of values, say,
X
, (which you can unpack tou
,v
andw
), the time point they correspond to, and any additional arguments, and should return the first derivatives ofX
with respect to time at that time point.Visualising the Lorenz attractor is a subject of one of the Matplotlib gallery examples.