forked from burakbayramli/books
-
Notifications
You must be signed in to change notification settings - Fork 0
/
3QMdisks.py
59 lines (53 loc) · 2.65 KB
/
3QMdisks.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
58
59
""" 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."""
# 3QMdisks.py: Wavepacket scattering from 3 disks wi MatPlot
import matplotlib.pylab as p, numpy as np
from mpl_toolkits.mplot3d import Axes3D
r = 10; N = 101; x1 = 51; # 51 = 90.*sqrt 3/2-30
dx = 0.1; dx2 = dx*dx; k0 = 20.; k1 = 0.
dt = 0.002; fc = dt/dx2; Xo = 40; Yo = 25
# Declare arrays
V = np.zeros((N,N),float); Rho = np.zeros((N,N),float)
RePsi = np.zeros((N,N),float); ImPsi = np.zeros((N,N),float)
ix = np.arange(0, 101); iy = np.arange(0,101)
X, Y = np.meshgrid(ix, iy)
fig = p.figure(); ax = Axes3D(fig) # Create figure
def Pot1Disk(xa,ya): # Potential single disk
for i in range (ya-r,ya+r+1):
for j in range(xa-r,xa+r+1):
if np.sqrt((i-ya)**2+(j-xa)**2)<=r: V[i,j] = 5.
def Pot3Disks(): # Potential three disk
Pot1Disk(30,45); Pot1Disk(70,45); Pot1Disk(50,80)
def Psi_0(Xo,Yo): # Initial Psi
for i in np.arange(0,N):
for j in np.arange(0, N):
Gaussian = np.exp(-0.03*(i-Yo)**2-0.03*(j-Xo)**2)
RePsi[i,j] = Gaussian*np.cos(k0*i+k1*j)
ImPsi[i,j] = Gaussian*np.sin(k0*i+k1*j)
Rho[i,j] = RePsi[i,j]**2 + ImPsi[i,j]**2 + 0.01
Psi_0(Xo,Yo) # Psi and Rho initial
Pot3Disks() # Initial Psi
for t in range(0, 120): # 120->30 # Compute Psi t < 120
if t%5 == 0: print 't =', t # Print ea 5th t
ImPsi[1:-1,1:-1] = ImPsi[1:-1,1:-1] + fc*(RePsi[2: ,1:-1] \
+ RePsi[:-2 ,1:-1] - 4*RePsi[1:-1,1:-1] + RePsi[1:-1,2: ]\
+ RePsi[1:-1, :-2]) + V[1:-1,1:-1]*dt*RePsi[1:-1,1:-1]
RePsi[1:-1,1:-1] = RePsi[1:-1,1:-1] - fc*(ImPsi[2: ,1:-1]\
+ImPsi[ :-2,1:-1] - 4*ImPsi[1:-1,1:-1] + ImPsi[1:-1,2: ]\
+ImPsi[1:-1, :-2]) + V[1:-1,1:-1]*dt*ImPsi[1:-1,1:-1]
for i in range(1, N-1): # Compute Rho
for j in range(1,N-1): # Hard Disk, psi = 0
if V[i,j] !=0: RePsi[i,j] = 0; ImPsi[i,j] = 0
Rho[i,j] = 0.1*(RePsi[i,j]**2
+ ImPsi[i,j]**2) + 0.0002*V[i,j]
X, Y = np.meshgrid(ix, iy)
Z = Rho[X,Y]
ax.set_xlabel('y')
ax.set_ylabel('x')
ax.set_zlabel('Rho(x,y)')
ax.plot_wireframe(X, Y, Z, color = 'g')
print("finito")
p.show()