Source code for instruments.lakeshore.lakeshore340

#!/usr/bin/env python
"""
Provides support for the Lakeshore 340 cryogenic temperature controller.
"""

# IMPORTS #####################################################################

from instruments.generic_scpi import SCPIInstrument
from instruments.units import ureg as u
from instruments.util_fns import ProxyList

# CLASSES #####################################################################


[docs] class Lakeshore340(SCPIInstrument): """ The Lakeshore340 is a multi-sensor cryogenic temperature controller. Example usage: >>> import instruments as ik >>> import instruments.units as u >>> inst = ik.lakeshore.Lakeshore340.open_gpibusb('/dev/ttyUSB0', 1) >>> print(inst.sensor[0].temperature) >>> print(inst.sensor[1].temperature) """ # INNER CLASSES ##
[docs] class Sensor: """ Class representing a sensor attached to the Lakeshore 340. .. warning:: This class should NOT be manually created by the user. It is designed to be initialized by the `Lakeshore340` class. """ def __init__(self, parent, idx): self._parent = parent self._idx = idx + 1 # PROPERTIES ## @property def temperature(self): """ Gets the temperature of the specified sensor. :units: Kelvin :type: `~pint.Quantity` """ value = self._parent.query(f"KRDG?{self._idx}") return u.Quantity(float(value), u.kelvin)
# PROPERTIES ## @property def sensor(self): """ Gets a specific sensor object. The desired sensor is specified like one would access a list. For instance, this would query the temperature of the first sensor:: >>> bridge = Lakeshore340.open_serial("COM5") >>> print(bridge.sensor[0].temperature) The Lakeshore 340 supports up to 2 sensors (index 0-1). :rtype: `~Lakeshore340.Sensor` """ return ProxyList(self, Lakeshore340.Sensor, range(2))