[Math] Plotting Streamlines Maple

fluid dynamicsmaple

I wonder if anybody could help with this. I've been asked to plot the streamlines of the complex potential $\Omega(z)=Uz + \frac{m}{2\pi}ln(z)$ to which I get the stream function $\psi(r,\theta)=rUsin\theta + \frac{m}{2\pi}\theta$.

Hopefully that is correct, but I cannot seem to plot it using polar coords in Maple. I would like to plot a series of streamlines of $\psi = constant.$ Any help appreciated, thanks!

Best Answer

 [> with(plots):
    conformal(z+ln(z)/(2*Pi), z = -20*I .. 2+20*I);

enter image description here

And for $\psi$, I think you can consider it as a function of two variables and plot it by the following code:

 [> with(plots):
    implicitplot(r*sin(t)+t/(2*Pi), r = 0 .. 10, t = 0 .. 2*Pi);

enter image description here

Related Question