In [24]:
import tellurium as te
import matplotlib.pyplot as plt
beispiel = '''
J0: => x ; k1 ;
J1: x => y ; k2 *x ;
J2: x+x+y => x+x+x ; k3 * x*x*y ;
J3: x => ; k4 * x ;
k1 = 1. ;
k2 = 2.5 ;
k3 = 1. ;
k4 = 1.;
x = 4.0
y = 3.0
'''
import string
print "Anzahl der Zeichen: %s" % len(beispiel.translate(None, string.whitespace))
m = te.loada(beispiel)
m.simulate(0,100,1000)
m.plot()
Out[24]: