spin_element#

The module contains definitions related to spin qubit elements.

Module Contents#

Classes#

PortsSpin

Submodule containing the ports.

ClocksFrequenciesSpin

Submodule containing the clock frequencies specifying the transitions to address.

RxyGaussian

Submodule containing parameters for performing an Rxy operation.

DispersiveMeasurementSpin

Submodule containing parameters to perform a measurement.

BasicSpinElement

A device element representing a Loss–DiVincenzo Spin qubit.

class PortsSpin(parent: qcodes.instrument.base.InstrumentBase, name: str, **kwargs: Any)[source]#

Bases: qcodes.instrument.InstrumentChannel

Submodule containing the ports.

microwave[source]#

Name of the element’s microwave port.

gate[source]#

Name of the element’s ohmic gate port.

readout[source]#

Name of the element’s readout port.

class ClocksFrequenciesSpin(parent: qcodes.instrument.base.InstrumentBase, name: str, **kwargs: Any)[source]#

Bases: qcodes.instrument.InstrumentChannel

Submodule containing the clock frequencies specifying the transitions to address.

f_larmor[source]#

Larmor frequency for the spin qubit

readout[source]#

Frequency of the ro clock.

class RxyGaussian(parent: qcodes.instrument.base.InstrumentBase, name: str, **kwargs: Any)[source]#

Bases: qcodes.instrument.InstrumentChannel

Submodule containing parameters for performing an Rxy operation.

The Rxy operation uses a Gaussian pulse.

amp180[source]#

Amplitude required to perform a $pi$ pulse.

duration[source]#

Duration of the control pulse.

class DispersiveMeasurementSpin(parent: qcodes.instrument.base.InstrumentBase, name: str, **kwargs: Any)[source]#

Bases: quantify_scheduler.device_under_test.transmon_element.DispersiveMeasurement

Submodule containing parameters to perform a measurement.

The measurement that is performed is using dispersive_measurement_spin().

gate_pulse_amp[source]#

Amplitude of the gate pulse.

class BasicSpinElement(name: str, **kwargs: Any)[source]#

Bases: quantify_scheduler.device_under_test.device_element.DeviceElement

A device element representing a Loss–DiVincenzo Spin qubit. The element refers to the intrinsic spin-1/2 degree of freedom of individual electrons/holes trapped in quantum dots. The charge of the particule is coupled to a resonator.

Parameters:
  • name – The name of the spin element.

  • kwargs – Can be used to pass submodule initialization data by using submodule name as keyword and as argument a dictionary containing the submodule parameter names and their value.

submodules_to_add[source]#
submodule_data[source]#
reset: quantify_scheduler.device_under_test.transmon_element.IdlingReset[source]#

Submodule IdlingReset.

rxy: RxyGaussian[source]#

Submodule RxyGaussian.

measure: DispersiveMeasurementSpin[source]#

Submodule DispersiveMeasurementSpin.

ports: PortsSpin[source]#

Submodule PortsSpin.

clock_freqs: ClocksFrequenciesSpin[source]#

Submodule ClocksFrequenciesSpin.

_generate_config() Dict[str, Dict[str, quantify_scheduler.backends.graph_compilation.OperationCompilationConfig]][source]#

Generate part of the device configuration specific to a single qubit.

This method is intended to be used when this object is part of a device object containing multiple elements.

generate_device_config() quantify_scheduler.backends.graph_compilation.DeviceCompilationConfig[source]#

Generate a valid device config.

The config will be used for the quantify-scheduler making use of the compile_circuit_to_device_with_config_validation() function.

This enables the settings of this qubit to be used in isolation.