-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
55 lines (43 loc) · 1.78 KB
/
main.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
from math import sin,pi,sqrt,floor,ceil
from wave_point import Point
import time
import PIL
import image_gif
import os
#Wave specific properties
amplitudes = [2]
perdiods = [0.5]
lengths = [20]
n_waves = len(amplitudes)
max_amplitude = 0
for a in amplitudes:
max_amplitude += a
#Image and GIF properties
width = 200
height = 200
#Location of wave centers
height_of_centers = [100]
width_of_centers = [100]
def displacement(t,x,amplitude,period,length): #Returns displacement for point that has a distance x from the center at time t
return amplitude*sin(2*pi*(t/period-x/length))
def displacement_to_color(d): #Returns a color depending on displacement (negative displacemet gets same color as positive displacement)
return [ceil(abs(d/max_amplitude*255)),0,0]
def simulate(time_total,time_step): #Simulate the wave
for i in range(0,floor(time_total/time_step)):
next(time_step*i,i)
def next(current_time,n_image):
points = [] #List with all the points/pixels that will be in the gif
for x in range(0,width):
for y in range(0,height):
d = 0
#Go through loop to add wave displacemnts together for all waves at x,y
for w in range(0,n_waves):
distance = sqrt((x-width_of_centers[w])**2+(y-height_of_centers[w])**2)
d += displacement(current_time,distance,amplitudes[w],perdiods[w],lengths[w])
points.append(Point(displacement_to_color(d)))
image_gif.write_image(points,width,height,n_image) #Write an image that will be turned into a gif later on
try: #Make Images folder in case it doesn't exist yet
os.mkdir("Images")
except: #Called if the folder already exists
print("Images folder already exists (Everything's fine)")
simulate(1,0.03) #Start the creation of the gif