interpret Reference Home

interpret[reaction-list] converts a list of reactions

{{arrow-form1, rate-information1}, {arrow-form1, rate-information2,...}}
into differential equations
{{ode1, ode2,...},{var1,var2...}}

The format of rate-information and arrow-form vary with the type of reaction being described. For more information see:

The variable Global`t is used for the time argument. A reaction has the format

{arrow-form, rateConstants}
For a list of all arrow forms see

The output of interpret can be evaluate by NDSolve as in the following example:

	ic={A[0]==1,B[0]==1, C[0]==1,Bind[A, C][0] == 0};
	r = {k1 -> 1, k2 -> 2, k3 -> .5};
	n = NDSolve[Join[s[[1]], ic] /. r, s[[2]], {t, 0, 10}]
    	
    	
    	






[This page was last revised on: 23 July 2005]