qcodes_contrib_drivers.drivers.QphoX.CryoSwitchController package¶
Submodules¶
qcodes_contrib_drivers.drivers.QphoX.CryoSwitchController.CryoSwitchController module¶
qcodes_contrib_drivers.drivers.QphoX.CryoSwitchController.libphox module¶
qcodes_contrib_drivers.drivers.QphoX.CryoSwitchController.qcodes_driver module¶
- class qcodes_contrib_drivers.drivers.QphoX.CryoSwitchController.qcodes_driver.CryoSwitchChannel(parent: Instrument, name: str, channel: str)[source]¶
Bases:
InstrumentChannel
CryoSwitchChannel class is used to define the channels for the CryoSwitchControllerDriver. It is a subclass of the InstrumentChannel class from qcodes.
- parent¶
The parent instrument to which the channel is attached.
- Type:
Instrument
- active_contact¶
The active contact for the channel. It can be a number between 0 and 6.
- Type:
Parameter
- __init__(parent: Instrument, name: str, channel: str)[source]¶
Initializes a new instance of the CryoSwitchChannel class.
- connect(contact: int)[source]¶
Applies a current pulse to make a specified contact.
- Parameters:
contact (int) – The contact to be connected.
- Returns:
The current waveform after the connection.
- Return type:
np.ndarray
- disconnect(contact: int)[source]¶
Applies a current pulse to disconnect a specified contact.
- Parameters:
contact (int) – The contact to be disconnected.
- Returns:
The current waveform after the disconnection.
- Return type:
np.ndarray
- disconnect_all()[source]¶
Applies a disconnecting pulse to all contacts.
- Returns:
The current waveform after all contacts are disconnected.
- Return type:
np.ndarray
- smart_connect(contact: int)[source]¶
Connects a contact to the channel smartly, i.e., disconnects the previously connected contacts and connects the specified switch contact based on the tracking history.
- Parameters:
contact (int) – The contact to be connected.
- Returns:
The current waveform after the smart connection.
- Return type:
np.ndarray
- class qcodes_contrib_drivers.drivers.QphoX.CryoSwitchController.qcodes_driver.CryoSwitchControllerDriver(*args: Any, **kwargs: Any)[source]¶
Bases:
Instrument
CryoSwitchControllerDriver class is used to control the Cryoswitch. It is a subclass of the Instrument class from qcodes.
- output_voltage¶
The output voltage of the controller. It can be a number between 0 and 25 (V).
- Type:
Parameter
- pulse_duration¶
The pulse duration of the controller. It can be a number between 0 and 1000 (ms).
- Type:
Parameter
- OCP_value¶
The overcurrent protection trigger value of the controller. It can be a number between 0 and 1000 (mA).
- Type:
Parameter
- chopping¶
The chopping function status of the controller. It can be a boolean value.
- Type:
Parameter
- switch_model¶
The switch model used by the controller. It can be either ‘R583423141’ or ‘R573423600’. Equvalently, one may set the model using ‘RT’ (room temperature) for R573423600, and ‘CRYO’ instead of ‘R583423141’. The two switch types require different connectivity between the D-Sub on the controller box and the switch.
- Type:
Parameter
- power_status¶
The power status of the controller. It can be either 0 (disabled) or 1 (enabled).
- Type:
Parameter
- __init__(name: str, **kwargs)[source]¶
Initializes a new instance of the CryoSwitchControllerDriver class.
- Parameters:
name (str) – The name of the instrument.
- connect(port: str, contact: int)[source]¶
Applies a current pulse to connect a specific contact of a switch at a selected port.
- disconnect(port: str, contact: int)[source]¶
Applies a current pulse to disconnect a specific contact of a switch at a selected port.
- disconnect_all(port: str)[source]¶
Applies a disconnecting current pulse to all contacts of the specified port
- Parameters:
port (str) – A letter A-D indicating the port to be controlled.