-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSinusoidal wave.py
57 lines (49 loc) · 1.53 KB
/
Sinusoidal wave.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from vpython import *
scene.width = 1000
scene.height = 600
scene.background = color.black
#Parameters
wavelength = 600
scene.range = 1*wavelength
E0 = 1e4
c = 3e8
frequency = c/wavelength
period = 1/frequency
dt = 3e-4*period
t = 0
pointlist=arange(-3*wavelength/2, 3*wavelength/2, wavelength/16)
arrowlist=[]
# Loop over observation locations and create electric and magnetic field arrows there
for x in pointlist:
Earrow=arrow(pos=vector(x,0,0), color=color.orange, shaftwidth=wavelength/40)
Earrow.B=arrow(pos=vector(x,0,0), color=color.cyan, shaftwidth=wavelength/40)
arrowlist.append(Earrow)
if abs(x) < 0.03*wavelength:
Earrow.color = color.red
Earrow.B.color = color.black
yy = -wavelength*.65
xx = -0.5*wavelength
dyy = wavelength/5
pts = [vector(xx, yy+dyy, 0), vector(xx, yy-dyy, 0),vector(xx, yy, 0),vector(xx+wavelength, yy, 0),
vector(xx+wavelength, yy+dyy, 0), vector(xx+wavelength, yy-dyy, 0)]
ruler = curve(color=color.green, pos=pts, radius=wavelength/60)
run = True
def B_Runbutton(b):
global run
run = not run
if run:
b.text = "Pause"
else:
b.text = "Run"
button(text="Pause", bind=B_Runbutton)
scene.append_to_caption(" The green marker indicates the length of one wavelength.")
#Dynamics of wave motion
while True:
rate(1000)
if not run: continue
for Earrow in arrowlist:
E = vector(0,E0*cos(2*pi*(frequency*t-Earrow.pos.x/wavelength)),0)
B = vector(0,0,E.y/c)
Earrow.axis = E/40
Earrow.B.axis = B*(c/50)
t = t+dt