Solution Curves

Select the initial condition of your choice

> P1:= DEplot( MODEL, VAR, DOMAIN, [ IC[1] ],

> scene=[ t, x ], arrows=NONE, linecolor=BLUE ):

> P2:= DEplot( MODEL, VAR, DOMAIN, [ IC[1] ],

> scene=[ t, y ], arrows=NONE, linecolor=GREEN ):

> display( [ P1, P2 ] , title = `x and y vs. t` ); # combined solution curves

> #display( array([P1,P2]), title = `Solution Curve` ); # side-by-side solution curves

>