예제 #1
0
 def __init__(self):
     # init bus for LockIn
     MAVmask=16
     IfaceReadyMask=0
     CMDexecMask=2
     GPIBAddr = 8
     LockInBUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask,CMDexecMask)
     # init bus for sine generator
     MAVmask=16
     IfaceReadyMask=0
     GPIBAddr = 10
     SineBUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask)
     # init LCR device
     LCRmeterLockIn_Agilent.__init__(self, LockInBUS, SineBUS)
     return
예제 #2
0
 def __init__(self):
     MAVmask=8
     IfaceReadyMask=0
     GPIBAddr = 27
     BUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask)
     Electrometer617.__init__(self, BUS)
     return
예제 #3
0
 def __init__(self):
     MAVmask=16
     IfaceReadyMask=0
     GPIBAddr = 22
     BUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask)
     A34401_HAMAMATSU.__init__(self, BUS)
     return
예제 #4
0
 def __init__(self):
     MAVmask=16
     IfaceReadyMask=0
     GPIBAddr = 26
     BUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask)
     SM2602_4PP.__init__(self, BUS, NPLC=10)
     return
예제 #5
0
 def __init__(self):
     MAVmask=16
     IfaceReadyMask=0
     GPIBAddr = 10
     BUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask)
     A33220_square.__init__(self, BUS)
     return
예제 #6
0
 def __init__(self):
     MAVmask=16
     IfaceReadyMask=0
     CMDexecMask=2
     GPIBAddr = 8
     BUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask,CMDexecMask)
     LockInSR830.__init__(self,BUS)
     return
예제 #7
0
 def __init__(self):
     MAVmask=16
     IfaceReadyMask=0
     GPIBAddr = 13
     integrTime = 5
     identString = 'B'
     elements = 'READ,TST,ETEM,VSO'
     units ='A,s,C,V'
     BUS = GPIBBus (visa.GpibInstrument("GPIB0::%d::INSTR" % GPIBAddr), MAVmask,IfaceReadyMask)
     Electrometer6517.__init__(self, BUS, integrTime, identString, elements, units)
     return
예제 #8
0
 def __init__(self):
     LCRmeterHIOKI.__init__(self, GPIBBus ('HIOKI'))
     return
예제 #9
0
 def __init__(self):
     LCRmeterHP.__init__(self, GPIBBus ('HPLCR'))
     return
예제 #10
0
 def __init__(self):
     A34401_temp.__init__(self, GPIBBus ('Pt100meter', IfaceReadyMask=0))
     return