diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-17 21:26:43 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-17 21:26:43 -0400 |
commit | a590a578a57891922dba0c95d9e883f5489af655 (patch) | |
tree | 1d7999187116bf3735906285fd7d03a3248e35f6 /qolab/hardware/lockin/_basic.py | |
parent | 3924cff3745f15d33690cfae32f45be9113d5cdd (diff) | |
download | qolab-a590a578a57891922dba0c95d9e883f5489af655.tar.gz qolab-a590a578a57891922dba0c95d9e883f5489af655.zip |
refactor lockins to avoid circular loads
Diffstat (limited to 'qolab/hardware/lockin/_basic.py')
-rw-r--r-- | qolab/hardware/lockin/_basic.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/qolab/hardware/lockin/_basic.py b/qolab/hardware/lockin/_basic.py new file mode 100644 index 0000000..f8c9795 --- /dev/null +++ b/qolab/hardware/lockin/_basic.py @@ -0,0 +1,52 @@ +"""Basic lockin classes intended for expansion with hardware aware classes.""" + +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) |