# Author : Pierre Schnizer """ The python equivalent of the C example found in the GSL Reference document. It prints the calculational ouput to stdout. The first column is t, the second y[0] and the thrid y[1]. Plot it with your favourite programm to see the output. """ import sys import pygsl._numobj as Numeric import pygsl import time from pygsl import odeiv def func(t, y, mu): f = Numeric.zeros((2,), Numeric.Float) * 1.0 f[0] = y[1] f[1] = -y[0] - mu * y[1] * (y[0] ** 2 -1); return f def jac(t, y, mu): dfdy = Numeric.ones((2,2), Numeric.Float) dfdy[0, 0] = 0.0 dfdy[0, 1] = 1.0 dfdy[1, 0] = -2.0 * mu * y[0] * y[1] - 1.0 dfdy[1, 1] = -mu * (y[0]**2 - 1.0) dfdt = Numeric.zeros((2,)) return dfdy, dfdt def run(): mu = 10.0 dimension = 2 # The different possible steppers for the function # Comment your favourite one out to test it. #stepper = odeiv.step_rk2 #stepper = odeiv.step_rk4 #stepper = odeiv.step_rkf45 #stepper = odeiv.step_rkck stepper = odeiv.step_rk8pd #stepper = odeiv.step_rk2imp #stepper = odeiv.step_rk4imp #stepper = odeiv.step_gear1 #stepper = odeiv.step_gear2 #stepper = odeiv.step_bsimp step = stepper(dimension, func,jac, mu) # All above steppers exept the odeiv.step_bsimp (Buerlisch - Stoer Improved # method can calculate without an jacobian ... # step = stepper(dimension, func) control = odeiv.control_y_new(step, 1e-6, 1e-6) evolve = odeiv.evolve(step, control, dimension) print "# Using stepper %s with order %d" %(step.name(), step.order()) print "# Using Control ", control.name() print "# %5s %9s %9s %9s " % ("iter", "t", "y[0]", "y[1]") h = 1 tstart = 0.0 t1 = (50.0,) ystart = (1.0, 0.0) t = tstart y = ystart stamp = time.time() nsteps = 1000 for i in xrange(nsteps): if t >= t1[0]: break t, h, y = evolve.apply(t, t1, h, y) y = y[-1] #print " %5d % 10.6f % 10.6f % 10.6f " %(i, t, y[0], y[1]) else: raise ValueError, "Maximum number of steps exceeded!" print "Needed %f seconds" %( time.time() - stamp,) print " % 10.6f % 10.6f % 10.6f " %(t, y[0], y[1]) stamp = time.time() t, h, y = evolve.apply(tstart, t1, h, ystart, nsteps) print "Needed %f seconds" %( time.time() - stamp,) print " % 10.6f % 10.6f % 10.6f " %(t, y[0, 0], y[0, 1]) if __name__ == '__main__': run()