devices
Devices.
ATS
Bases: FluxDevice
ATS Device.
Source code in qcsys/devices/ats.py
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
|
common_ops()
Written in the linear basis.
Source code in qcsys/devices/ats.py
18 19 20 21 22 23 24 25 26 27 28 |
|
get_H_full()
Return full H in linear basis.
Source code in qcsys/devices/ats.py
99 100 101 102 103 104 105 |
|
get_H_linear()
Return linear terms in H.
Source code in qcsys/devices/ats.py
42 43 44 45 |
|
get_H_nonlinear(phi_op)
Return nonlinear terms in H.
Source code in qcsys/devices/ats.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
|
get_linear_ω()
Get frequency of linear terms.
Source code in qcsys/devices/ats.py
38 39 40 |
|
n_zpf()
Return Charge ZPF.
Source code in qcsys/devices/ats.py
34 35 36 |
|
phi_zpf()
Return Phase ZPF.
Source code in qcsys/devices/ats.py
30 31 32 |
|
potential(phi)
Return potential energy for a given phi.
Source code in qcsys/devices/ats.py
107 108 109 110 111 112 113 114 115 116 117 118 |
|
Device
Bases: ABC
Source code in qcsys/devices/base.py
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
common_ops()
abstractmethod
Set up common ops in the specified basis.
Source code in qcsys/devices/base.py
133 134 135 |
|
create(N, params, label=0, N_pre_diag=None, use_linear=False, hamiltonian=None, basis=None)
classmethod
Create a device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
N
|
int
|
dimension of Hilbert space. |
required |
params
|
dict
|
parameters of the device. |
required |
label
|
int
|
label for the device. Defaults to 0. This is useful when you have multiple of the same device type in the same system. |
0
|
N_pre_diag
|
int
|
dimension of Hilbert space before diagonalization. Defaults to None, in which case it is set to N. This must be greater than or rqual to N. |
None
|
use_linear
|
bool
|
whether to use the linearized device. Defaults to False. This will override the hamiltonian keyword argument. This is a bit redundant with hamiltonian, but it is kept for backwards compatibility. |
False
|
hamiltonian
|
HamiltonianTypes
|
type of Hamiltonian. Defaults to None, in which case the full hamiltonian is used. |
None
|
basis
|
BasisTypes
|
type of basis. Defaults to None, in which case the fock basis is used. |
None
|
Source code in qcsys/devices/base.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
get_H()
Return diagonalized H. Explicitly keep only diagonal elements of matrix.
Source code in qcsys/devices/base.py
149 150 151 152 153 |
|
get_H_full()
abstractmethod
Return full H.
Source code in qcsys/devices/base.py
145 146 147 |
|
get_H_linear()
abstractmethod
Return linear terms in H.
Source code in qcsys/devices/base.py
141 142 143 |
|
get_linear_ω()
abstractmethod
Get frequency of linear terms.
Source code in qcsys/devices/base.py
137 138 139 |
|
param_validation(N, N_pre_diag, params, hamiltonian, basis)
classmethod
This can be overridden by subclasses.
Source code in qcsys/devices/base.py
76 77 78 79 |
|
Drive
Bases: ABC
Source code in qcsys/devices/drive.py
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 |
|
get_H()
Bare "drive" Hamiltonian (ωd * M) in the extended Hilbert space.
Source code in qcsys/devices/drive.py
67 68 69 70 71 |
|
FluxDevice
Bases: Device
Source code in qcsys/devices/base.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
|
phi_zpf()
abstractmethod
Return Phase ZPF.
Source code in qcsys/devices/base.py
224 225 226 |
|
potential(phi)
abstractmethod
Return potential energy as a function of phi.
Source code in qcsys/devices/base.py
270 271 272 |
|
Fluxonium
Bases: FluxDevice
Fluxonium Device.
Source code in qcsys/devices/fluxonium.py
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 |
|
common_ops()
Written in the linear basis.
Source code in qcsys/devices/fluxonium.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
get_H_full()
Return full H in linear basis.
Source code in qcsys/devices/fluxonium.py
55 56 57 58 59 |
|
get_H_linear()
Return linear terms in H.
Source code in qcsys/devices/fluxonium.py
47 48 49 50 51 52 53 |
|
get_linear_ω()
Get frequency of linear terms.
Source code in qcsys/devices/fluxonium.py
43 44 45 |
|
phi_zpf()
Return Phase ZPF.
Source code in qcsys/devices/fluxonium.py
39 40 41 |
|
potential(phi)
Return potential energy for a given phi.
Source code in qcsys/devices/fluxonium.py
72 73 74 75 76 77 78 79 80 81 82 |
|
IdealQubit
Bases: Device
Ideal qubit Device.
Source code in qcsys/devices/ideal_qubit.py
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 |
|
common_ops()
Written in the linear basis.
Source code in qcsys/devices/ideal_qubit.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
get_H_full()
Return full H in linear basis.
Source code in qcsys/devices/ideal_qubit.py
53 54 55 |
|
get_H_linear()
Return linear terms in H.
Source code in qcsys/devices/ideal_qubit.py
48 49 50 51 |
|
get_linear_ω()
Get frequency of linear terms.
Source code in qcsys/devices/ideal_qubit.py
44 45 46 |
|
param_validation(N, N_pre_diag, params, hamiltonian, basis)
classmethod
This can be overridden by subclasses.
Source code in qcsys/devices/ideal_qubit.py
19 20 21 22 23 24 25 |
|
KNO
Bases: Device
Kerr Nonlinear Oscillator Device.
Source code in qcsys/devices/kno.py
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 |
|
get_H_full()
Return full H in linear basis.
Source code in qcsys/devices/kno.py
50 51 52 53 54 55 56 57 58 59 |
|
get_H_linear()
Return linear terms in H.
Source code in qcsys/devices/kno.py
45 46 47 48 |
|
get_anharm()
Get anharmonicity.
Source code in qcsys/devices/kno.py
41 42 43 |
|
get_linear_ω()
Get frequency of linear terms.
Source code in qcsys/devices/kno.py
37 38 39 |
|
param_validation(N, N_pre_diag, params, hamiltonian, basis)
classmethod
This can be overridden by subclasses.
Source code in qcsys/devices/kno.py
19 20 21 22 23 24 |
|
Resonator
Bases: FluxDevice
Resonator Device.
Source code in qcsys/devices/resonator.py
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 |
|
common_ops()
Written in the linear basis.
Source code in qcsys/devices/resonator.py
17 18 19 20 21 22 23 24 25 26 27 28 |
|
get_H_full()
Return full H in linear basis.
Source code in qcsys/devices/resonator.py
47 48 49 |
|
get_H_linear()
Return linear terms in H.
Source code in qcsys/devices/resonator.py
42 43 44 45 |
|
get_linear_ω()
Get frequency of linear terms.
Source code in qcsys/devices/resonator.py
38 39 40 |
|
phi_zpf()
Return Phase ZPF.
Source code in qcsys/devices/resonator.py
30 31 32 |
|
potential(phi)
Return potential energy for a given phi.
Source code in qcsys/devices/resonator.py
51 52 53 |
|
Transmon
Bases: FluxDevice
Transmon Device.
Source code in qcsys/devices/transmon.py
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
calculate_wavefunctions(phi_vals)
Calculate wavefunctions at phi_exts.
Source code in qcsys/devices/transmon.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
common_ops()
Written in the specified basis.
Source code in qcsys/devices/transmon.py
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 |
|
get_H_full()
Return full H in specified basis.
Source code in qcsys/devices/transmon.py
105 106 107 |
|
get_H_linear()
Return linear terms in H.
Source code in qcsys/devices/transmon.py
100 101 102 103 |
|
get_H_truncated()
Return truncated H in specified basis.
Source code in qcsys/devices/transmon.py
109 110 111 112 113 114 |
|
get_linear_ω()
Get frequency of linear terms.
Source code in qcsys/devices/transmon.py
96 97 98 |
|
n_zpf()
Return Charge ZPF.
Source code in qcsys/devices/transmon.py
92 93 94 |
|
param_validation(N, N_pre_diag, params, hamiltonian, basis)
classmethod
This can be overridden by subclasses.
Source code in qcsys/devices/transmon.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
phi_zpf()
Return Phase ZPF.
Source code in qcsys/devices/transmon.py
88 89 90 |
|
potential(phi)
Return potential energy for a given phi.
Source code in qcsys/devices/transmon.py
126 127 128 129 130 131 132 133 134 135 136 137 |
|
TunableTransmon
Bases: Transmon
Tunable Transmon Device.
Source code in qcsys/devices/tunable_transmon.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
harm_osc_wavefunction(n, x, l_osc)
Taken from scqubits... not jit-able
For given quantum number n=0,1,2,... return the value of the harmonic
oscillator wave function :math:\psi_n(x) = N H_n(x/l_{osc}) \exp(-x^2/2l_\text{
osc})
, N being the proper normalization factor.
Directly uses scipy.special.pbdv
(implementation of the parabolic cylinder
function) to mitigate numerical stability issues with the more commonly used
expression in terms of a Gaussian and a Hermite polynomial factor.
Parameters
n: index of wave function, n=0 is ground state x: coordinate(s) where wave function is evaluated l_osc: oscillator length, defined via <0|x^2|0> = l_osc^2/2
Returns
value of harmonic oscillator wave function
Source code in qcsys/common/utils.py
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 |
|