Re: How to plot field lines of conformal mapping
- To: mathgroup at smc.vnet.net
- Subject: [mg26163] Re: [mg26083] How to plot field lines of conformal mapping
- From: Ranko Bojanic <rbojanic at columbus.rr.com>
- Date: Thu, 30 Nov 2000 01:04:07 -0500 (EST)
- Organization: Ohio State University
- References: <200011280655.BAA02200@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Jos:
You have to write f[z] instead of f and Evaluate[t] instead of t.
This works fine on my computer:
n = 3;
t = Table[{Re[f[z]], Im[f[z]]} /. z -> u + i/n Pi/2 I, {i, -n, n}];
ParametricPlot[Evaluate[t], {u, -3, 3}, PlotPoints -> 700]
Regards,
Ranko
Jos R Bergervoet wrote:
>
> I would like to plot a family of field lines obtained from a conformal
> mapping, as in the following code snippet. Is there a shorter way?
>
> f = z + I Sinh[z]
>
> ParametricPlot[{
> {Re[f], Im[f]} /. z->u-Pi/2I,
> {Re[f], Im[f]} /. z->u-1.5I,
> {Re[f], Im[f]} /. z->u-1.25I,
> {Re[f], Im[f]} /. z->u-1.0I,
> {Re[f], Im[f]} /. z->u-0.75I,
> {Re[f], Im[f]} /. z->u-0.5I,
> {Re[f], Im[f]} /. z->u-0.25I,
> {Re[f], Im[f]} /. z->u+0I,
> {Re[f], Im[f]} /. z->u+0.25I,
> {Re[f], Im[f]} /. z->u+0.5I,
> {Re[f], Im[f]} /. z->u+0.75I,
> {Re[f], Im[f]} /. z->u+1.0I,
> {Re[f], Im[f]} /. z->u+1.25I,
> {Re[f], Im[f]} /. z->u+1.5I,
> {Re[f], Im[f]} /. z->u+Pi/2I
> },
> {u,-3,3}, PlotPoints->700]
>
> I tried (without success) to do it after creating a table in advance:
>
> n = 1
> t = Table[{Re[f], Im[f]} /. z->u+i/n Pi/2I , {i, -n,n}]
> ParametricPlot[t, {u,-3,3}, PlotPoints->700]
>
> This does not work. Does anyone know an elegant solution?
>
> NB: I do not want the full CartesianMap[F , {-3,3}, {-Pi/2,Pi/2}]
> but only one of the two families of lines.
>
> Thanks in advance,
> Jos
>
> --
> Dr. Jozef R. Bergervoet Electromagnetism and EMC
> Philips Research Laboratories, Eindhoven, The Netherlands
> Building WS01 FAX: +31-40-2742224
> E-mail: Jos.Bergervoet at philips.com Phone: +31-40-2742403
- References:
- How to plot field lines of conformal mapping
- From: Jos R Bergervoet <Jos.Bergervoet@philips.com>
- How to plot field lines of conformal mapping