File: pp.ode

package info (click to toggle)
xppaut 8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,332 kB
  • sloc: ansic: 74,690; makefile: 127; sh: 92
file content (10 lines) | stat: -rwxr-xr-x 231 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
# cts predator prey model 
# Test problem from the AUTO manual pp.ode
# Use AUTO with defaults -- just click Run
p p0=0,p1=3,p2=5,p3=3
u0' = p1*u0*(1-u0)-u0*u1-p0*(1-ep0)
u1' = -u1+p3*u0*u1
ep0=exp(-p2*u0)
u0(0)=.33333
u1(0)=2.0
d