blob: 0ee4fceef05912ae17bb566a434d1136fc257776 (
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
|
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
|