forked from burakbayramli/books
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EqStringMovMat.py
43 lines (37 loc) · 1.84 KB
/
EqStringMovMat.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
""" From "COMPUTATIONAL PHYSICS" & "COMPUTER PROBLEMS in PHYSICS"
by RH Landau, MJ Paez, and CC Bordeianu (deceased)
Copyright R Landau, Oregon State Unv, MJ Paez, Univ Antioquia,
C Bordeianu, Univ Bucharest, 2017.
Please respect copyright & acknowledge our work."""
# EqStrigMovMat.py: Animated leapfrog for string wi MatPlotLib
from numpy import *
import numpy as np, matplotlib.pyplot as plt
import matplotlib.animation as animation
rho = 0.01; ten = 40.; c = sqrt(ten/rho) # Density, tension
c1 = c; ratio = c*c/(c1*c1) # CFL criterium = 1
xi = np.zeros((101,3), float) # Declaration
k = range(0,101)
def Initialize(): # Initial conditions
for i in range(0, 81): xi[i, 0] = 0.00125*i
for i in range (81, 101): xi[i, 0] = 0.1 - 0.005*(i - 80)
def animate(num):
for i in range(1, 100):
xi[i,2] = 2.*xi[i,1] - xi[i,0] + ratio*(xi[i+1,1]
+ xi[i-1,1] - 2*xi[i,1])
line.set_data(k,xi[k,2]) # Data to plot ,x,y
for m in range (0,101):
xi[m, 0] = xi[m, 1] # Recycle array
xi[m, 1] = xi[m, 2]
return line
Initialize() # Plot initial string
fig = plt.figure()
ax = fig.add_subplot(111, autoscale_on=False, xlim=(0, 101),
ylim=(-0.15, 0.15))
ax.grid() # Plot grid
plt.title("Vibrating String")
line, = ax.plot(k, xi[k,0], lw=2)
for i in range(1,100):
xi[i,1] = xi[i,0] + 0.5*ratio*(xi[i+1,0] + xi[i-1,0] -2*xi[i,0])
ani = animation.FuncAnimation(fig, animate,1) # Dummy 1
plt.show()
print("finished")