-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathtimebin_no_cascade.py
97 lines (76 loc) · 3.16 KB
/
timebin_no_cascade.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
from pathlib import Path
import math
import statistics
import sequence
from sequence.kernel.event import Event
from sequence.kernel.process import Process
from sequence.kernel.timeline import Timeline
from sequence.qkd.BB84 import *
from sequence.components.optical_channel import *
from sequence.topology.node import *
from sequence.utils.encoding import *
if __name__ == "__main__":
runtime = 1e12
dark_count = 425
distances = [1, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120] # distances in km
errors = [] # store error rates
throughputs = [] # store throughputs
latencies = [] # store latencies
# open file to store experiment results
Path("results/timebin").mkdir(parents=True, exist_ok=True)
filename = "results/timebin/distance_no_cascade.log"
fh = open(filename, 'w')
for distance in distances:
rate = distance if distance > 70 else 1
tl = Timeline(runtime * rate)
qc0 = QuantumChannel("qc0", tl, distance=distance * 1e3, attenuation=0.0002)
qc1 = QuantumChannel("qc1", tl, distance=distance * 1e3, attenuation=0.0002)
cc0 = ClassicalChannel("cc0", tl, distance=distance * 1e3)
cc1 = ClassicalChannel("cc1", tl, distance=distance * 1e3)
# Alice
ls_params = {"frequency": 2e6, "mean_photon_num": 0.1}
alice = QKDNode("alice", tl, encoding=time_bin, stack_size=1)
alice.set_seed(0)
for name, param in ls_params.items():
alice.update_lightsource_params(name, param)
# Bob
detector_params = [{"efficiency": 0.072, "dark_count": dark_count, "time_resolution": 10},
{"efficiency": 0.072, "dark_count": dark_count, "time_resolution": 10},
{"efficiency": 0.072, "dark_count": dark_count, "time_resolution": 10}]
bob = QKDNode("bob", tl, encoding=time_bin, stack_size=1)
bob.set_seed(0)
for i in range(len(detector_params)):
for name, param in detector_params[i].items():
bob.update_detector_params(i, name, param)
qc0.set_ends(alice, bob.name)
qc1.set_ends(bob, alice.name)
cc0.set_ends(alice, bob.name)
cc1.set_ends(bob, alice.name)
# BB84
pair_bb84_protocols(alice.protocol_stack[0], bob.protocol_stack[0])
process = Process(alice.protocol_stack[0], "push", [256, 10, math.inf])
event = Event(0, process)
tl.schedule(event)
tl.init()
tl.run()
bba = alice.protocol_stack[0]
error = statistics.mean(bba.error_rates)
throughput = statistics.mean(bba.throughputs)
latency = bba.latency
print("{} km:".format(distance))
print("\tbb84 error:\t\t\t{}".format(error))
print("\tbb84 throughput:\t{}".format(throughput))
errors.append(error)
throughputs.append(throughput)
latencies.append(latency)
fh.write(str(distance))
fh.write(' ')
fh.write(str(error))
fh.write(' ')
fh.write(str(throughput))
fh.write(' ')
fh.write(str(latency))
fh.write('\n')
print(errors)
print(throughputs)
print(latencies)