You are on page 1of 1

PRACTICAL 11(B) (CONFORMAL

MAPPING)

FIND THE IMAGE OF f(z)=Exp(z) UNDER CONFORMAL MAPPING


f[z_] := Exp[z];
x1 := ⅇx Cos[y]
y1 := ⅇx Sin[y]
x2 := Simplify[Re[Expand[f[x1 + ⅈ y1]]]]
y2 := Simplify[Im[Expand[f[x1 + ⅈ y1]]]]
p1 := ParametricPlot[{x1, y1}, {x, 0, 2 * Pi}, {y, 0, 2 * π},
PlotLabel → " Z-PLANE ", PlotStyle → {Dashing → {.02, .02}, Red}]
p2 := ParametricPlot[{x2, y2}, {x, 0, 2 * Pi}, {y, 0, 2 * π}, PlotLabel → " W-PLANE ",
PlotRange → {{- 1.5, 1.5}, {- 1.5, 1.5}}, PlotStyle → {Thickness[.02], Green}]
GraphicsRow[{p1, p2}]

Z-PLANE W-PLANE
1.5
100
1.0
50
0.5

0 0.0

-50 -0.5

-1.0
-100
-1.5
-100 -50 0 50 100 -1.5 -1.0 -0.5 0.0 0.5 1.0 1.5

You might also like