mbacon29

5 Reputation

0 Badges

11 years, 215 days

MaplePrimes Activity


These are questions asked by mbacon29

so i am trying to plot some limit cycles and it won't plot. I don't know what's wrong.


> restart;
with (DEtools);
> L := -4.80; MU := 0.1e-1;
DE13 := {(D(x))(t) =
y(t)*(1-y(t)*y(t))+MU*x(t)*(x(t)*x(t)-3*y(t)*y(t)-L), (D(y))(t) = -x(t)*(1-2*x(t)*x(t))+MU*y(t)*(x(t)*x(t)-3*y(t)*y(t)-L)};
DEplot(DE13, [x(t), y(t)], t = 0 .. 20, [[x(0) = 0.1e-1, y(0) = .99], [x(0) = -.1, y(0) = -.9], [x(0) = 1.1, y(0) = 0], [x(0) = 0, y(0) = .2], [x(0) = 0, y(0) = .6], [x(0) = .6, y(0) = 0], [x(0) = .75, y(0) = 1], [x(0) = .1, y(0) = .1], [x(0) = .5, y(0) = 1.0], [x(0) = -.5, y(0) = 1], [x(0) = .5, y(0) = -1], [x(0) = -.5, y(0) = -1], [x(0) = -0.1e-1, y(0) = .99], [x(0) = 0.1e-1, y(0) = -.99], [x(0) = -0.1e-1, y(0) = -.99], [x(0) = .5, y(0) = -1], [x(0) = -.5, y(0) = -1], [x(0) = 0.1e-1, y(0) = .9]], stepsize = 0.1e-1, scene = [x(t), y(t)], title = "Phaseplane 3 Prime Plot", linecolor = black, thickness = 1);

Page 1 of 1