2018-12-17 01:29:53 +00:00
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
a1 = 1.0 + 0.0j
|
|
|
|
a2 = 0.0 + 0.0j
|
|
|
|
T = 0.9
|
|
|
|
K = 0.1
|
|
|
|
t = np.sqrt(T) + 0.0j
|
|
|
|
k = 0.0 - 1j * np.sqrt(K)
|
|
|
|
|
2018-12-17 01:55:58 +00:00
|
|
|
Coupler = np.array([[t, k], [k.conjugate(), -t.conjugate()]])
|
2018-12-17 01:29:53 +00:00
|
|
|
|
|
|
|
num_cycle = 1000
|
|
|
|
a = np.zeros((num_cycle, 2), dtype=complex)
|
|
|
|
b = np.zeros((num_cycle, 2), dtype=complex)
|
|
|
|
|
|
|
|
a[0, 0] = a1
|
|
|
|
a[0, 1] = a2
|
|
|
|
|
|
|
|
for n in range(num_cycle):
|
|
|
|
pass
|