-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.json
More file actions
39 lines (36 loc) · 1.05 KB
/
example.json
File metadata and controls
39 lines (36 loc) · 1.05 KB
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
{
"name": "Quantum_Connection",
"description": "A simple quantum link",
"nodes": [
{
"id": "192.168.18.13",
"name": "node_A",
"type": "edge",
"class": "node",
"memory": 3,
"delay-config": { "delay": 5 },
"ports": ["qport"]
},
{
"id": "192.168.18.14",
"name": "node_B",
"type": "edge",
"memory": 3,
"class": "node",
"ports": ["qportL"]
}
],
"connections": [
{
"name": "quantum",
"type": "quantum",
"connection": ["192.168.18.13", "192.168.18.14"],
"to": {"id": "192.168.18.13", "port": "qport"},
"from": {"id": "192.168.18.14", "port": "qportL"},
"distance": "43",
"delay-type": "FibreDelayModel",
"loss-type": "FibreLossModel",
"loss-config": { "p_loss_init": 0.83, "p_loss_length": 0.2}
}
]
}