Channels
Channel
Bases: QuamComponent
, ABC
Base QuAM component for a channel, can be output, input or both.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
sticky
|
Sticky
|
Optional sticky parameters for the channel, i.e. defining whether successive pulses are applied w.r.t the previous pulse or w.r.t 0 V. If not specified, this channel is not sticky. |
required |
digital_outputs
|
Dict[str, DigitalOutputChannel]
|
A dictionary of digital output channels to be used on this channel. The key is the label of the digital output channel (e.g. "DO1") and the value is a DigitalOutputChannel. |
required |
intermediate_frequency
|
float
|
The intermediate frequency of the channel in Hz. If not specified, the intermediate frequency is zero. |
required |
core
|
str
|
The core to use for the channel, useful when sharing a core between channels. If not specified, the core is assigned automatically. |
required |
thread
|
str
|
The channel core, duplicate of 'core' argument, and deprecated from qm.qua >= 1.2.2. |
required |
Source code in quam/components/channels.py
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 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
|
_config_add_digital_outputs(config)
Adds the digital outputs to the QUA config.
config.elements.
Note that the digital outputs are added separately to the controller config in
DigitalOutputChannel.apply_to_config
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
dict
|
The QUA config that's in the process of being generated. |
required |
Source code in quam/components/channels.py
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
|
apply_to_config(config)
Adds this Channel to the QUA configuration.
config.elements.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
dict
|
The QUA config that's in the process of being generated. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If the channel already exists in the config. |
Source code in quam/components/channels.py
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
|
frame_rotation(angle)
Shift the phase of the channel element's oscillator by the given angle.
This is typically used for virtual z-rotations.
Note
The fixed point format of QUA variables of type fixed is 4.28, meaning the
phase must be between $-8$ and $8-2^{28}$. Otherwise the phase value will be
invalid. It is therefore better to use frame_rotation_2pi()
which avoids
this issue.
Note
The phase is accumulated with a resolution of 16 bit.
Therefore, N changes to the phase can result in a phase (and amplitude)
inaccuracy of about :math:N \cdot 2^{-16}
. To null out this accumulated
error, it is recommended to use reset_frame(el)
from time to time.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
angle
|
Union[float, QUA variable of type fixed]
|
The angle to add to the current phase (in radians) |
required |
*elements
|
str
|
a single element whose oscillator's phase will be shifted. multiple elements can be given, in which case all of their oscillators' phases will be shifted |
required |
Source code in quam/components/channels.py
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 |
|
frame_rotation_2pi(angle)
Shift the phase of the oscillator associated with an element by the given angle in units of 2pi radians.
This is typically used for virtual z-rotations.
Note
Unlike the case of frame_rotation(), this method performs the 2-pi radian wrap around of the angle automatically.
Note
The phase is accumulated with a resolution of 16 bit.
Therefore, N changes to the phase can result in a phase inaccuracy of
about :math:N \cdot 2^{-16}
. To null out this accumulated error, it is
recommended to use reset_frame(el)
from time to time.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
angle
|
Union[float,QUA variable of type real]
|
The angle to add to the current phase (in $2\pi$ radians) |
required |
Source code in quam/components/channels.py
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 |
|
play(pulse_name, amplitude_scale=None, duration=None, condition=None, chirp=None, truncate=None, timestamp_stream=None, continue_chirp=False, target='', validate=True)
Play a pulse on this channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
duration
|
int
|
Duration of the pulse in units of the clock cycle (4ns). If not provided, the default pulse duration will be used. It is possible to dynamically change the duration of both constant and arbitrary pulses. Arbitrary pulses can only be stretched, not compressed. |
None
|
chirp
|
Union[(list[int], str), (int, str)]
|
Allows to perform piecewise linear sweep of the element's intermediate frequency in time. Input should be a tuple, with the 1st element being a list of rates and the second should be a string with the units. The units can be either: 'Hz/nsec', 'mHz/nsec', 'uHz/nsec', 'pHz/nsec' or 'GHz/sec', 'MHz/sec', 'KHz/sec', 'Hz/sec', 'mHz/sec'. |
None
|
truncate
|
Union[int, QUA variable of type int]
|
Allows playing only part of the pulse, truncating the end. If provided, will play only up to the given time in units of the clock cycle (4ns). |
None
|
condition
|
A logical expression to evaluate.
|
Will play analog pulse only if the condition's value is true. Any digital pulses associated with the operation will always play. |
None
|
timestamp_stream
|
Union[str, _ResultSource]
|
(Supported from
QOP 2.2) Adding a |
None
|
validate
|
bool
|
If True (default), validate that the pulse is registered in Channel.operations |
True
|
Note
The element
argument from qm.qua.play()
is not needed, as it is
automatically set to self.name
.
Source code in quam/components/channels.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 |
|
update_frequency(new_frequency, units='Hz', keep_phase=False)
Dynamically update the frequency of the associated oscillator.
This changes the frequency from the value defined in the channel.
The behavior of the phase (continuous vs. coherent) is controlled by the
keep_phase
parameter and is discussed in the documentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
new_frequency
|
int
|
The new frequency value to set in units set
by |
required |
units
|
str
|
units of new frequency. Useful when sub-Hz precision is required. Allowed units are "Hz", "mHz", "uHz", "nHz", "pHz" |
'Hz'
|
keep_phase
|
bool
|
Determine whether phase will be continuous
through the change (if |
False
|
Example
with program() as prog:
update_frequency("q1", 4e6) # will set the frequency to 4 MHz
### Example for sub-Hz resolution
# will set the frequency to 100 Hz (due to casting to int)
update_frequency("q1", 100.7)
# will set the frequency to 100.7 Hz
update_frequency("q1", 100700, units='mHz')
Source code in quam/components/channels.py
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 |
|
wait(duration, *other_elements)
Wait for the given duration on all provided elements without outputting anything.
Duration is in units of the clock cycle (4ns)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
duration
|
Union[int,QUA variable of type int]
|
time to wait in units of the clock cycle (4ns). Range: [4, $2^{31}-1$] in steps of 1. |
required |
*other_elements
|
Union[str,sequence of str]
|
elements to wait on, in addition to this channel |
()
|
Warning
In case the value of this is outside the range above, unexpected results may occur.
Note
The current channel element is always included in the wait operation.
Note
The purpose of the wait
operation is to add latency. In most cases, the
latency added will be exactly the same as that specified by the QUA variable or
the literal used. However, in some cases an additional computational latency may
be added. If the actual wait time has significance, such as in characterization
experiments, the actual wait time should always be verified with a simulator.
Source code in quam/components/channels.py
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
DigitalOutputChannel
Bases: QuamComponent
QuAM component for a digital output channel (signal going out of the OPX)
Should be added to Channel.digital_outputs
so that it's also added to the
respective element in the QUA config.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
opx_output
|
DigitalOutputPort
|
Channel output port from the OPX perspective, E.g. FEMDigitalOutputPort("con1", 1, 2) |
required |
delay
|
int
|
Delay in nanoseconds. An intrinsic negative delay of 136 ns exists by default. |
required |
buffer
|
int
|
Digital pulses played to this element will be convolved with a digital pulse of value 1 with this length [ns]. |
required |
shareable
|
bool
|
If True, the digital output can be shared with other QM instances. Default is False |
required |
inverted
|
bool
|
If True, the digital output is inverted. Default is False. |
required |
.
Source code in quam/components/channels.py
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 |
|
apply_to_config(config)
Adds this DigitalOutputChannel to the QUA configuration.
config.controllers.
See QuamComponent.apply_to_config
for details.
Source code in quam/components/channels.py
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 |
|
generate_element_config()
Generates the config entry for a digital channel in the QUA config.
This config entry goes into:
config.elements.
Returns:
Type | Description |
---|---|
Dict[str, int]
|
Dict[str, int]: The digital channel config entry. Contains "port", and optionally "delay", "buffer" if specified |
Source code in quam/components/channels.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
|
IQChannel
Bases: _OutComplexChannel
QuAM component for an IQ output channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output_I
|
LF_output_port_types
|
Channel I output port from the OPX perspective, E.g. LFFEMAnalogOutputPort("con1", 1, 1) |
required |
opx_output_Q
|
LF_output_port_types
|
Channel Q output port from the OPX perspective, E.g. LFFEMAnalogOutputPort("con1", 1, 2) |
required |
opx_output_offset_I
|
float
|
The offset of the I channel. Default is 0. |
required |
opx_output_offset_Q
|
float
|
The offset of the Q channel. Default is 0. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of the mixer. Default is 0.0 |
required |
LO_frequency
|
float
|
Local oscillator frequency. Default is the LO frequency of the frequency converter up component. |
required |
RF_frequency
|
float
|
RF frequency of the mixer. By default, the RF frequency is inferred by adding the LO frequency and the intermediate frequency. |
required |
frequency_converter_up
|
FrequencyConverter
|
Frequency converter QuAM component for the IQ output. |
required |
Source code in quam/components/channels.py
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 |
|
apply_to_config(config)
Adds this IQChannel to the QUA configuration.
See QuamComponent.apply_to_config
for details.
Source code in quam/components/channels.py
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 |
|
set_dc_offset(offset, element_input)
Set the DC offset of an element's input to the given value. This value will remain the DC offset until changed or until the Quantum Machine is closed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
offset
|
QuaNumberType
|
The DC offset to set the input to. This is limited by the OPX output voltage range. The number can be a QUA variable |
required |
element_input
|
Literal['I', 'Q']
|
The element input to set the offset for. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If element_input is not "I" or "Q" |
Source code in quam/components/channels.py
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 |
|
InIQChannel
Bases: _InComplexChannel
QuAM component for an IQ input channel
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "readout") and value is a ReadoutPulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_input_I
|
LF_input_port_types
|
Channel I input port from the OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 1) |
required |
opx_input_Q
|
LF_input_port_types
|
Channel Q input port from the OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 2) |
required |
opx_input_offset_I
|
float
|
The offset of the I channel. Default is 0. |
required |
opx_input_offset_Q
|
float
|
The offset of the Q channel. Default is 0. |
required |
frequency_converter_down
|
Optional[FrequencyConverter]
|
Frequency converter QuAM component for the IQ input port. Only needed for the old Octave. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
input_gain
|
float
|
The gain of the input channel. Default is None. |
required |
Source code in quam/components/channels.py
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 |
|
apply_to_config(config)
Adds this InOutIQChannel to the QUA configuration.
See QuamComponent.apply_to_config
for details.
Source code in quam/components/channels.py
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 |
|
InIQOutSingleChannel
Bases: SingleChannel
, InIQChannel
QuAM component for an IQ input channel with a single output.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "readout") and value is a ReadoutPulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output
|
LF_output_port_types
|
Channel output port from the OPX perspective, e.g. LFFEMAnalogOutputPort("con1", 1, 1) |
required |
opx_output_offset
|
float
|
DC offset for the output port. |
required |
opx_input_I
|
LF_input_port_types
|
Channel I input port from the OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 1) |
required |
opx_input_Q
|
LF_input_port_types
|
Channel Q input port from the OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 2) |
required |
opx_input_offset_I
|
float
|
The offset of the I channel. Default is 0. |
required |
opx_input_offset_Q
|
float
|
The offset of the Q channel. Default is 0. |
required |
filter_fir_taps
|
List[float]
|
FIR filter taps for the output port. |
required |
filter_iir_taps
|
List[float]
|
IIR filter taps for the output port. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX output, default is None. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 |
|
InMWChannel
Bases: _InComplexChannel
QuAM component for a MW FEM input channel
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_input
|
MWFEMAnalogInputPort
|
Channel input port from the OPX perspective, e.g. MWFEMAnalogInputPort("con1", 1, 1) |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX output, default is None. |
required |
Source code in quam/components/channels.py
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 |
|
InOutIQChannel
Bases: IQChannel
, InIQChannel
QuAM component for an IQ channel with both input and output.
An example of such a channel is a readout resonator, where you may want to apply a readout tone and then measure the response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "readout") and value is a ReadoutPulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output_I
|
LF_output_port_types
|
Channel I output port from the OPX perspective, e.g. LFFEMAnalogOutputPort("con1", 1, 1) |
required |
opx_output_Q
|
LF_output_port_types
|
Channel Q output port from the OPX perspective, e.g. LFFEMAnalogOutputPort("con1", 1, 2) |
required |
opx_output_offset_I
|
float
|
The offset of the I channel. Default is 0. |
required |
opx_output_offset_Q
|
float
|
The offset of the Q channel. Default is 0. |
required |
opx_input_I
|
LF_input_port_types
|
Channel I input port from the OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 1) |
required |
opx_input_Q
|
LF_input_port_types
|
Channel Q input port from the OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 2) |
required |
opx_input_offset_I
|
float
|
The offset of the I channel. Default is 0. |
required |
opx_input_offset_Q
|
float
|
The offset of the Q channel. Default is 0. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of the mixer. Default is 0.0 |
required |
LO_frequency
|
float
|
Local oscillator frequency. Default is the LO frequency of the frequency converter up component. |
required |
RF_frequency
|
float
|
RF frequency of the mixer. By default, the RF frequency is inferred by adding the LO frequency and the intermediate frequency. |
required |
frequency_converter_up
|
FrequencyConverter
|
Frequency converter QuAM component for the IQ output. |
required |
frequency_converter_down
|
Optional[FrequencyConverter]
|
Frequency converter QuAM component for the IQ input port. Only needed for the old Octave. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 |
|
InOutMWChannel
Bases: MWChannel
, InMWChannel
QuAM component for a MW FEM input channel
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output
|
MWFEMAnalogOutputPort
|
Channel output port from the OPX perspective, e.g. MWFEMAnalogOutputPort("con1", 1, 1) |
required |
opx_input
|
MWFEMAnalogInputPort
|
Channel input port from the OPX perspective, e.g. MWFEMAnalogInputPort("con1", 1, 1) |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX output, default is None. |
required |
upconverter
|
int
|
The upconverter to use. Default is 1. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 |
|
InOutSingleChannel
Bases: SingleChannel
, InSingleChannel
QuAM component for a single (not IQ) input + output channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output
|
LF_output_port_types
|
Channel output port from the OPX perspective, e.g. LFFEMAnalogOutputPort("con1", 1, 2) |
required |
opx_output_offset
|
float
|
DC offset for the output port. |
required |
opx_input
|
LF_input_port_types
|
Channel input port from OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 2) |
required |
opx_input_offset
|
float
|
DC offset for the input port. |
required |
filter_fir_taps
|
List[float]
|
FIR filter taps for the output port. |
required |
filter_iir_taps
|
List[float]
|
IIR filter taps for the output port. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX output, default is None. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 |
|
InSingleChannel
Bases: Channel
QuAM component for a single (not IQ) input channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_input
|
LF_input_port_types
|
Channel input port from OPX perspective, E.g. LFFEMAnalogInputPort("con1", 1, 2) |
required |
opx_input_offset
|
float
|
DC offset for the input port. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX input, default is None. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 |
|
apply_to_config(config)
Adds this InSingleChannel to the QUA configuration.
See QuamComponent.apply_to_config
for details.
Source code in quam/components/channels.py
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 |
|
measure(pulse_name, amplitude_scale=None, qua_vars=None, stream=None)
Perform a full demodulation measurement on this channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
qua_vars
|
Tuple[QuaVariableType, ...]
|
Two QUA variables to store the I, Q measurement results. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
Returns:
Type | Description |
---|---|
Tuple[QuaVariableType, QuaVariableType]
|
I, Q: The QUA variables used to store the measurement results. If provided as input, the same variables will be returned. If not provided, new variables will be declared and returned. |
Raises:
Type | Description |
---|---|
ValueError
|
If |
Source code in quam/components/channels.py
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 |
|
measure_accumulated(pulse_name, amplitude_scale=None, num_segments=None, segment_length=None, qua_vars=None, stream=None)
Perform an accumulated demodulation measurement on this channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
num_segments
|
int
|
The number of segments to accumulate.
Should either specify this or |
None
|
segment_length
|
int
|
The length of the segment to accumulate.
Should either specify this or |
None
|
qua_vars
|
Tuple[QuaVariableType, ...]
|
Two QUA variables to store the I, Q measurement results. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
Returns:
Type | Description |
---|---|
Tuple[QuaVariableType, QuaVariableType]
|
I, Q: The QUA variables used to store the measurement results. If provided as input, the same variables will be returned. If not provided, new variables will be declared and returned. |
Raises:
Type | Description |
---|---|
ValueError
|
If both |
ValueError
|
If |
Source code in quam/components/channels.py
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 |
|
measure_sliced(pulse_name, amplitude_scale=None, num_segments=None, segment_length=None, qua_vars=None, stream=None)
Perform an accumulated demodulation measurement on this channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
num_segments
|
int
|
The number of segments to accumulate.
Should either specify this or |
None
|
segment_length
|
int
|
The length of the segment to accumulate.
Should either specify this or |
None
|
qua_vars
|
Tuple[QuaVariableType, ...]
|
Two QUA variables to store the I, Q measurement results. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
Returns:
Type | Description |
---|---|
Tuple[QuaVariableType, QuaVariableType]
|
I, Q: The QUA variables used to store the measurement results. If provided as input, the same variables will be returned. If not provided, new variables will be declared and returned. |
Raises:
Type | Description |
---|---|
ValueError
|
If both |
ValueError
|
If |
Source code in quam/components/channels.py
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 |
|
measure_time_tagging(pulse_name, size, max_time, qua_vars=None, stream=None, mode='analog')
Perform a time tagging measurement on this channel.
For details see https://docs.quantum-machines.co/latest/docs/Guides/features/#time-tagging
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
size
|
int
|
The size of the QUA array to store the times of the detected
pulses. Ignored if |
required |
max_time
|
QuaNumberType
|
The maximum time to search for pulses. |
required |
qua_vars
|
Tuple[QuaVariableType, QuaNumberType]
|
QUA variables to store the times and counts of the detected pulses. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
mode
|
Literal['analog', 'high_res', 'digital']
|
The time tagging mode. |
'analog'
|
Returns:
Name | Type | Description |
---|---|---|
times |
QuaVariableType
|
The QUA variable to store the times of the detected pulses. |
counts |
QuaNumberType
|
The number of detected pulses. |
Example
times, counts = channel.measure_time_tagging("readout", size=1000, max_time=1000)
Source code in quam/components/channels.py
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 |
|
InSingleOutIQChannel
Bases: IQChannel
, InSingleChannel
QuAM component for an IQ output channel with a single input.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "readout") and value is a ReadoutPulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output_I
|
LF_output_port_types
|
Channel I output port from the OPX perspective, e.g. LFFEMAnalogOutputPort("con1", 1, 1) |
required |
opx_output_Q
|
LF_output_port_types
|
Channel Q output port from the OPX perspective, e.g. LFFEMAnalogOutputPort("con1", 1, 2) |
required |
opx_output_offset_I
|
float
|
The offset of the I channel. Default is 0. |
required |
opx_output_offset_Q
|
float
|
The offset of the Q channel. Default is 0. |
required |
opx_input
|
LF_input_port_types
|
Channel input port from OPX perspective, e.g. LFFEMAnalogInputPort("con1", 1, 1) |
required |
opx_input_offset
|
float
|
DC offset for the input port. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of the mixer. Default is 0.0 |
required |
LO_frequency
|
float
|
Local oscillator frequency. Default is the LO frequency of the frequency converter up component. |
required |
RF_frequency
|
float
|
RF frequency of the mixer. By default, the RF frequency is inferred by adding the LO frequency and the intermediate frequency. |
required |
frequency_converter_up
|
FrequencyConverter
|
Frequency converter QuAM component for the IQ output. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 |
|
MWChannel
Bases: _OutComplexChannel
QuAM component for a MW FEM output channel
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output
|
MWFEMAnalogOutputPort
|
Channel output port from the OPX perspective. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX output, default is None. |
required |
upconverter
|
int
|
The upconverter to use. Default is 1. |
required |
time_of_flight
|
int
|
Round-trip signal duration in nanoseconds. |
required |
smearing
|
int
|
Additional window of ADC integration in nanoseconds. Used to account for signal smearing. |
required |
Source code in quam/components/channels.py
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 |
|
upconverter_frequency
property
Determine the upconverter frequency from the opx_output.
If the upconverter frequency is not set, the upconverter frequency is inferred from the upconverters dictionary.
Returns:
Type | Description |
---|---|
float
|
The upconverter frequency. |
Raises:
Type | Description |
---|---|
ValueError
|
If the upconverter frequency is not set and cannot be inferred. |
SingleChannel
Bases: Channel
QuAM component for a single (not IQ) output channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
operations
|
Dict[str, Pulse]
|
A dictionary of pulses to be played on this channel. The key is the pulse label (e.g. "X90") and value is a Pulse. |
required |
id
|
(str, int)
|
The id of the channel, used to generate the name.
Can be a string, or an integer in which case it will add
|
required |
opx_output
|
LF_output_port_types
|
Channel output port from the OPX perspective, E.g. LFFEMAnalogOutputPort("con1", 1, 2) |
required |
filter_fir_taps
|
List[float]
|
FIR filter taps for the output port. |
required |
filter_iir_taps
|
List[float]
|
IIR filter taps for the output port. |
required |
opx_output_offset
|
float
|
DC offset for the output port. |
required |
intermediate_frequency
|
float
|
Intermediate frequency of OPX output, default is None. |
required |
Source code in quam/components/channels.py
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 |
|
apply_to_config(config)
Adds this SingleChannel to the QUA configuration.
See QuamComponent.apply_to_config
for details.
Source code in quam/components/channels.py
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 |
|
set_dc_offset(offset)
Set the DC offset of an element's input to the given value. This value will remain the DC offset until changed or until the Quantum Machine is closed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
offset
|
QuaNumberType
|
The DC offset to set the input to. This is limited by the OPX output voltage range. The number can be a QUA variable |
required |
Source code in quam/components/channels.py
664 665 666 667 668 669 670 671 672 673 674 |
|
StickyChannelAddon
Bases: QuamComponent
Addon to make channels sticky.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
duration
|
int
|
The ramp to zero duration, in ns. |
required |
enabled
|
bool
|
If False, the sticky parameters are not applied. Default is True. |
required |
analog
|
bool
|
If False, the sticky parameters are not applied to analog outputs. Default is True. |
required |
digital
|
bool
|
If False, the sticky parameters are not applied to digital outputs. Default is True. |
required |
Source code in quam/components/channels.py
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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|
channel
property
If the parent is a channel, returns the parent, otherwise returns None.
TimeTaggingAddon
Bases: QuamComponent
Addon to perform time tagging on a channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
signal_threshold
|
float
|
The signal threshold in volts. If not specified, the default value is 800 / 4096 ≈ 0.195 V. |
required |
signal_polarity
|
Literal['above', 'below']
|
The polarity of the signal threshold. Default is "below". |
required |
derivative_threshold
|
float
|
The derivative threshold in volts/ns. If not specified, the default value is 300 / 4096 ≈ 0.073 V/ns. |
required |
derivative_polarity
|
Literal['above', 'below']
|
The polarity of the derivative threshold. Default is "below". |
required |
For details see Time Tagging
Source code in quam/components/channels.py
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 |
|
channel
property
If the parent is a channel, returns the parent, otherwise returns None.
_InComplexChannel
Bases: Channel
, ABC
A specialized channel class for performing complex demodulation measurements.
This class extends the basic Channel
class and provides functionality
for performing full dual demodulation measurements on a channel. It allows
for the measurement of both in-phase (I) and quadrature (Q) components of
a signal, which are essential for characterizing quantum signals.
This class is used for both input IQ channels on low-frequency analog inputs and for MW inputs in the MW FEM.
Source code in quam/components/channels.py
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 |
|
measure(pulse_name, amplitude_scale=None, qua_vars=None, stream=None)
Perform a full dual demodulation measurement on this channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
qua_vars
|
Tuple[QuaVariableType, QuaVariableType]
|
Two QUA variables to store the I and Q measurement results. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
Returns:
Type | Description |
---|---|
Tuple[QuaVariableType, QuaVariableType]
|
I, Q: The QUA variables used to store the measurement results. If provided as input, the same variables will be returned. If not provided, new variables will be declared and returned. |
Source code in quam/components/channels.py
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 |
|
measure_accumulated(pulse_name, amplitude_scale=None, num_segments=None, segment_length=None, qua_vars=None, stream=None)
Perform an accumulated dual demodulation measurement on this channel.
Instead of two QUA variables (I and Q), this method returns four variables (II, IQ, QI, QQ)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
num_segments
|
int
|
The number of segments to accumulate.
Should either specify this or |
None
|
segment_length
|
int
|
The length of the segment to accumulate the
measurement.
Should either specify this or |
None
|
qua_vars
|
Tuple[QuaVariableType, ...]
|
Four QUA variables to store the II, IQ, QI, QQ measurement results. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
Returns:
Type | Description |
---|---|
Tuple[QuaVariableType, QuaVariableType, QuaVariableType, QuaVariableType]
|
II, IQ, QI, QQ: The QUA variables used to store the measurement results. If provided as input, the same variables will be returned. If not provided, new variables will be declared and returned. |
Source code in quam/components/channels.py
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 |
|
measure_sliced(pulse_name, amplitude_scale=None, num_segments=None, segment_length=None, qua_vars=None, stream=None)
Perform a sliced dual demodulation measurement on this channel.
Instead of two QUA variables (I and Q), this method returns four variables (II, IQ, QI, QQ)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pulse_name
|
str
|
The name of the pulse to play. Should be registered in
|
required |
amplitude_scale
|
(float, _PulseAmp)
|
Amplitude scale of the pulse. Can be either a float, or qua.amp(float). |
None
|
num_segments
|
int
|
The number of segments to accumulate.
Should either specify this or |
None
|
segment_length
|
int
|
The length of the segment to accumulate the
measurement.
Should either specify this or |
None
|
qua_vars
|
Tuple[QuaVariableType, ...]
|
Four QUA variables to store the II, IQ, QI, QQ measurement results. If not provided, new variables will be declared and returned. |
None
|
stream
|
Optional[StreamType]
|
The stream to save the measurement result to. If not provided, the raw ADC signal will not be streamed. |
None
|
Returns:
Type | Description |
---|---|
Tuple[QuaVariableType, QuaVariableType, QuaVariableType, QuaVariableType]
|
II, IQ, QI, QQ: The QUA variables used to store the measurement results. If provided as input, the same variables will be returned. If not provided, new variables will be declared and returned. |
Source code in quam/components/channels.py
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 |
|
_OutComplexChannel
Bases: Channel
, ABC
Base class for IQ and MW output channels.
Source code in quam/components/channels.py
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 |
|
inferred_LO_frequency
property
Inferred LO frequency by subtracting IF from RF
Can be used by having reference LO_frequency = "#./inferred_LO_frequency"
Returns:
Type | Description |
---|---|
float
|
self.RF_frequency - self.intermediate_frequency |
inferred_RF_frequency
property
Inferred RF frequency by adding LO and IF
Can be used by having reference RF_frequency = "#./inferred_RF_frequency"
Returns:
self.LO_frequency + self.intermediate_frequency
inferred_intermediate_frequency
property
Inferred intermediate frequency by subtracting LO from RF
Can be used by having reference
intermediate_frequency = "#./inferred_intermediate_frequency"
Returns:
Type | Description |
---|---|
float
|
self.RF_frequency - self.LO_frequency |