Ask Your Question
0

desolve_system_rk4 lisp debugger

asked 2012-12-10 16:10:58 +0200

anonymous user

Anonymous

updated 2012-12-10 16:31:26 +0200

I am attempting to solve a system of 3 differential equations. Whenever I set the initial condition of the third variable not equal to 0, I get a lisp debugger error message. I have posted the code and the error message below. I should note that it runs as long as the initial condition of the third variable is equal to 0.

a,b,c,t=var('a, b, c, t')

#Parameter Values
r_a=1.09
r_b=1.1
k=500
alpha_a=0.11
alpha_b=0.11
beta_a=0.2
beta_b=0.2
d=0.5


#Differential Equations
aprime=r_a*a*(1-((a+alpha_a*b)/k))-beta_a*c*a
bprime=r_b*b*(1-((b+alpha_b*a)/k))-beta_b*c*b
cprime=beta_b*c*b+beta_a*c*a*-d*c

#Variables
variables=[a,b,c]

#Initial Conditions (t0,a0,b0,c0)
ic=[0,200,200,50]

#tfinal
tfinal=100

P=desolve_system_rk4([aprime,bprime,cprime],variables,ics=ic,ivar=t,end_points=tfinal)

Adata=[ [i,j] for i,j,k,l in P]
Aplot=list_plot(Adata,color='red')

Bdata=[ [i,k] for i,j,k,l in P]
Bplot=list_plot(Bdata,color='blue')

Cdata=[ [i,l] for i,j,k,l in P]
Cplot=list_plot(Cdata,color='purple')

Aplot+Bplot+Cplot

To enable the Lisp debugger set debugger-hook to nil.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2012-12-10 20:30:35 +0200

calc314 gravatar image

I've not gotten this error before. But, I do recommend using one of the other ode solvers in Sage. You can see two examples that I've posted as responses here:

http://ask.sagemath.org/question/2057...

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2012-12-10 16:10:58 +0200

Seen: 232 times

Last updated: Dec 10 '12