I want to make a phase plane for an equation system. I want it to look something like a Mu-Space in Stat-Mech. Basically I want it to show the same system with various different initial condition pairs {C(0), N(0)} and show how the system evolves as an {C[t], N[t]} pair. I would like to have these different systems plotted on the same plane. Unfortunately I am not well equipped to deal with this sort of thing. The code I have right now is below:
(*Constants*)
s = .1;
g = 1;
a = .75;
p = 30;
da = .1;
alpha = .01;
beta = 1;
k = 10000;
deltaP = 10;
(*Algebraic*)
Pn = deltaP/10000;
f[t_] = 1 - 1/(a*Ca[t] + 1);
(*ODE system*)
solution =
NDSolve[{Ca'[t] == s*(p + Pn*Na[t])*f[t] - (g + da)*Ca[t],
Na'[t] == alpha + beta/k*Na[t]*(k - Na[t]), Ca[0] == 1,
Na[0] == 1}, {Ca, Na}, t]
Plot[Evaluate[{Na[x], Ca[x]} /. solution], {x, 0, 10},
PlotRange -> All]
I would like to be able to turn this code into something similar to what I described above. Any assistance is appreciated.
Edit
I have been trying to use Equation Trekker from the linked material. I am unsure what mistake I am making.
EquationTrekker[
Ca'[t] == s*(p + Pn*Na[t])*f - (g + da)*Ca[t],
Na'[t] == alpha + beta/k*Na[t]*(k - Na[t]),
Na[t], {Ca[t], 0, 10}]
Edit2
Also, Using the parametric plot code listed in one of the responses
ParametricPlot[Evaluate[{nn[t], cc[t]} /. solution], {t, 0, 10}, AspectRatio -> 1/2]
I now have a plot of C vs N for one set of initial conditions. I don't know what the best way to get multiple such plots with different intial conditions. I have also fixed my variable names in the body of my code.



N0,C0, etc... in addition,NandCare mathematica own symbols so using them for variables will get you in trouble very quickly. – Nasser Apr 03 '15 at 06:49