Article 6VNAN Duplicating a hand-drawn contour plot

Duplicating a hand-drawn contour plot

by
John
from John D. Cook on (#6VNAN)

Like the previous post, this post also seeks to approximately reproduce a hand-drawn plot. This time the goal is reproduce figure 7.3 from A&S page 298.

AS_p298.png

This plot is a visualizing of the function of a complex variable

w(z) = exp(-z^2) erfc(- iz)

where erfc is the complementary error function.

A&S calls the graph above an altitude chart." This could be a little misleading since it's the overlay of two plots. One plot is the absolute value of w(z), which could well be called altitude. But it also contains a plot of the phase. To put it another way, if we denote the values of the function in polar form r exp(i) the altitude chart is an overlay of a plot of r and a plot of .

We begin by defining

f[z_] := Exp[-z^2] Erfc[-I z]

The following code reproduces the lines of constant phase fairly well.

ContourPlot[Arg[f[x + I y]], {x, 0.1, 3.1}, {y, -2.5, 3}, Contours -> 20, ContourShading -> None, AspectRatio -> 1.6]

AS_p298_phase.png

The lines of constant absolute value take a little more effort to reproduce. If we let Mathematica pick where to put the contour lines, they will not be distributed the same way they were in A&S.

ContourPlot[Abs[f[x + I y]], {x, 0, 3.1}, {y, -2.6, 3}, Contours -> 20, ContourShading -> None, AspectRatio -> 1.6]

AS_p298_abs1.png

We can duplicated the spacing in the original plot by providing Mathematica a list of contour values rather than number of contour values.

ContourPlot[Abs[f[x + I y]], {x, 0, 3.1}, {y, -2.6, 3}, Contours -> {0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 2, 3, 4, 5, 10, 100}, ContourShading -> None, AspectRatio -> 1.6]

AS_p298_abs2.png

(For reasons I don't understand, Mathematica does not draw the contours corresponding to w = 10 and w = 100.)

When I overlay the phase and absolute value plots with the Show command I get a plot approximately reproducing the original.

AS_p298_jdc.png

Related postsThe post Duplicating a hand-drawn contour plot first appeared on John D. Cook.
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments