I want to picture the phase plane of the normalized system. Here I've defined only the right hand sides.
νmax = 100; gE = 5; kv = 20; u0 = 24; τD = 2000; δxD = 0.01; σ = 5;
CC = 10;
Clear[f];
f[x_?NumericQ] =Piecewise[{{0, x < 0}, {x, x > 0 && x < 1}, {1, x > 1}}];
ν[x_] = νmax f[(x - u0)/kv];
rhs1[x_, v_] = (1 - x)/τD - (δxD x ν[v])/1000;
rhs2[x_, v_] = (-v + gE ν[v] (x - 0.5))/CC;
StreamPlot[{rhs2[x, v], rhs1[x, v]}, {v, 0, 200}, {x, 0, 1}, StreamPoints -> Fine, PlotRange -> {{0, 200}, {0, 1}}]
The problem is a low resolution of StreamPlot command. It's just a single line depicted on the phase plane and, obviously, it can not say much about behaviour of the system. Here I have piecewise function, and I want to get a very detailed, that is with many lines, phase plane in each interval. But an option StreamPoints-> Fine doesn't provide me that.
I've tried to specify explicitly those points the lines of phase plane have to pass through, but it was as effective as usage the value "Fine" in the option "StreamPoints".

StreamPlot[{-v, x}, {v, -5, 5}, {x,-1, 1}, StreamPoints -> Fine]myStreamPlot[{-v, x}, {v, -5, 5}, {x, -1, 1}, StreamPoints -> Fine]The first returns the correct result when the second returns the phase plane shifted left. It seems to be the same problem when I compare both phase planes made with StreamPlot and myStreamPlot for my original problem in the interval $ (v,x) \in ( [0,u0],[0,1] )$. That several lines StreamPlot returns don't coincidence with that of myStreamPlot does. – Artem Zefirov Oct 12 '17 at 10:24solss = NDSolve[{v'[t] == -v[t]/CC, x'[t] == (1 - x[t])/τD, v[0] == 15, x[0] == 0.3}, {v, x}, {t, 0, 100}];solsspl = ParametricPlot[Evaluate[{v[t], x[t]} /. solss], {t, 0, 100}, PlotRange -> {{0, u0}, {0, 1}}, PlotStyle -> Red];Show[ss1, solsspl]– Artem Zefirov Oct 12 '17 at 10:55vwas interfering with thevinmyStreamPlot. I tried to fix it above. – Chris K Oct 12 '17 at 14:23