aboutsummaryrefslogtreecommitdiff
path: root/qolab/hardware/power_supply/__init__.py
blob: 80f55228fa00288e3892fb296e1bfc518971f099 (plain)
1
2
3
4
5
6
7
8
9
10
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
from qolab.hardware.scpi import SCPIinstr
from qolab.hardware.basic import BasicInstrument


class PowerSupply(BasicInstrument):
    """Base class for a Power Supply.

    Contains minimal set of methods to be implemented by a Power Supply.

    Intended to be used as a parent for hardware aware power supplies.
    """

    def __init__(self, *args, **kwds):
        BasicInstrument.__init__(self, *args, **kwds)
        self.config["Device type"] = "PowerSupply"
        self.config[
            "Device model"
        ] = "Generic Power Supply generator Without Hardware interface"
        self.config["FnamePrefix"] = "power_supply"
        self.deviceProperties.update({})


class PowerSupplySCPI(SCPIinstr, PowerSupply):
    """SCPI aware power supply.

    Intended to be used as a parent for hardware aware power supplies.

    Example
    -------

    >>> rm = pyvisa.ResourceManager()
    >>> PowerSupplySCPI(rm.open_resource('TCPIP::192.168.0.2::INSTR'))

    or

    >>> PowerSupplySCPI(rm.open_resource('USB0::10893::4354::MY61001869::0::INSTR'))
    """

    def __init__(self, resource, *args, **kwds):
        SCPIinstr.__init__(self, resource)
        PowerSupply.__init__(self, *args, **kwds)
        self.config["DeviceId"] = str.strip(self.idn)


from .keysight_e3612a import KeysightE3612A