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
46
47
48
49
50
|
from qolab.hardware.scpi import SCPIinstr
from qolab.hardware.basic import BasicInstrument
class Lockin(BasicInstrument):
"""Basic lockin class with.
Intended to be expanded in hardware specific classes.
"""
def __init__(self, *args, **kwds):
BasicInstrument.__init__(self, *args, **kwds)
self.config["Device type"] = "Lockin"
self.config["FnamePrefix"] = "lockin"
self.config["Device model"] = "Generic Lockin Without Hardware interface"
self.config["FnamePrefix"] = "lockin"
self.deviceProperties.update(
{
"FreqInt",
"FreqExt",
"Harm",
"SinAmpl",
"SinOffset",
"RefPhase",
"Sensitivity",
"TimeConstan",
"FilterSlope",
"EquivalentNoiseBW",
}
)
# Minimal set of methods to be implemented.
pass
class LockinSCPI(SCPIinstr, Lockin):
"""Basic lockin class with SCPI interface.
Intended to be expanded in hardware specific classes.
Example
-------
>>> rm = pyvisa.ResourceManager()
>>> LockinSCPI(rm.open_resource('TCPIP::192.168.0.2::INSTR'))
"""
pass
def __init__(self, resource, *args, **kwds):
SCPIinstr.__init__(self, resource)
Lockin.__init__(self, *args, **kwds)
self.config["DeviceId"] = str.strip(self.idn)
|