-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo_bio_quantum.bsim.json
More file actions
62 lines (62 loc) · 1.23 KB
/
demo_bio_quantum.bsim.json
File metadata and controls
62 lines (62 loc) · 1.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"metadata": {
"source_arbol": "demo_bio_quantum.arbol",
"version": "0.3",
"description": "Bio-quantum hybrid circuit with light stimulus"
},
"instructions": [
{
"instruction_id": 0,
"command": "INITIALIZE",
"params": {
"max_time": 500,
"dt": 5,
"env": {
"light_schedule": []
},
"quantum": {
"p700_threshold": 0.8,
"decoherence_rate": 0.05
},
"bio": {
"p700_synthesis_rate": 1.0,
"p700_degradation_rate": 0.1,
"optimal_temp": 35.0,
"temp_sensitivity": 0.1,
"genes": {},
"grn": {}
}
}
},
{
"instruction_id": 1,
"command": "STIMULUS_APPLY",
"params": {
"stimulus": "light",
"target": "q1",
"arguments": {
"wavelength": "660nm",
"duration": "10ms"
}
}
},
{
"instruction_id": 2,
"command": "QUANTUM_OP",
"params": {
"gate": "H",
"qubits": [
"q1"
]
}
},
{
"instruction_id": 3,
"command": "MEASURE",
"params": {
"qubit": "q1",
"classical_bit": "c1"
}
}
]
}