I am trying to plot a couple of streamlines over a circle, defined as x^2 + y^2 - 4, so the radius is 2. I am trying plot using a function, specifically using PSTricks. However, I keep getting extra lines that I do not want like so:

Using an image editing program I just filled in the lines that I am not interested in with the colour blue.
The code I am using to generate the above image is:
\documentclass{article}
\usepackage{pst-func}
\begin{document}
\begin{pspicture}(-5, -5)(5, 5)
\psaxes{<->}(0, 0)(-5, -5)(5, 5)[$x$, 0][$y$, 90]
\psplotImp
[
algebraic,
linecolor = red,
stepFactor = 0.1
]
(-5,-5)(5,5)
{
y - y * (y^2 + x^2 - 4)^-1 - 1.1
}
\end{pspicture}
\end{document}
I am also trying to create a plot that plots many streamlines, how would I do this? If you look at the function, y - y * (y^2 + x^2 - 4)^-1 - 1.1, it is only 1.1 that would need to be changed, iteratively with a common difference of 0.1, in order to get different streamlines.
Any help would be so much appreciated!

pst-funcdocumenation. – Christoph Feb 01 '14 at 23:29