I have been trying to plot a plane wave equation in Matlab. I am trying to plot the real part of, $(1/R)E^i(kR+wT)$ i.e. $(1/R)cos(kR+wT)$. So I used the following code in Matlab (for a single instant, say t=5),
x=-5:0.1:5;
y=-5:0.1:5;
t=5;
w=1.3;
k=1.3;
[X,Y]=meshgrid(x,y);
R=(X.^2+Y.^2)^1/2;
u=20*cos(k*R+w*t);
surf(X,Y,u);
When I run this code, I get the following surface plot: This looks fine I think, as one would expect. But if I increase the wavenumber and angular frequency factors to 15, I get the following: It appears to be an interference pattern but I have no idea why I am getting this because I did not put in the interference effects. Can anyone explain what is going on here?
What I am really trying to do is plot a function for radially outward moving spherical wave (on a surface, like surface of water may be) for demonstration in my class. How can I turn this into a animation which shows waves of waves moving out of a point source?
Thanks for your help