##// END OF EJS Templates
Started USB-TMC devices....
Alexis Jeandet -
r1:8ccb7546abb5 default
parent child
Show More
@@ -0,0 +1,24
1 #!/usr/bin/env python
2 #-*- coding: utf-8 -*-
3 """Simple python library to communicate with Agilent 34410A over USB-TMC.
4 """
5 import time
6 import sys
7 import os
8 import agilenttmc
9
10 __author__ = "Alexis Jeandet"
11 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
12 __credits__ = []
13 __license__ = "GPLv2"
14 __version__ = "1.0.0"
15 __maintainer__ = "Alexis Jeandet"
16 __email__ = "alexis.jeandet@member.fsf.org"
17 __status__ = "Development"
18
19 class Agilent3441xA(usbtmc.UsbTmc):
20 def __init__(self,ref,serial=""):
21 isnt=usbtmc.findInstrument(ref,serial)
22 if inst=="":
23 raise UserWarning("Can't find instrument "+ref)
24 self.UsbTmc.__init__(isnt)
@@ -0,0 +1,26
1 #!/usr/bin/env python
2 #-*- coding: utf-8 -*-
3 """Simple python library to communicate with Agilent 34410A over USB-TMC.
4 """
5 import time
6 import sys
7 import os
8 import agilenttmc
9
10 __author__ = "Alexis Jeandet"
11 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
12 __credits__ = []
13 __license__ = "GPLv2"
14 __version__ = "1.0.0"
15 __maintainer__ = "Alexis Jeandet"
16 __email__ = "alexis.jeandet@member.fsf.org"
17 __status__ = "Development"
18
19 "34410A"
20
21 class Agilent3441xA(agilentusbtmc.AgilentUsbTmc):
22 def __init__(self,serial=""):
23 isnt=usbtmc.findInstrument("3441[0-1]A",serial)
24 if inst=="":
25 raise UserWarning("Can't find instrument "+ref)
26 self.UsbTmc.__init__(isnt)
@@ -0,0 +1,24
1 #!/usr/bin/env python
2 #-*- coding: utf-8 -*-
3 """Common Agilent USB-TMC/SCPI traits.
4 """
5 import time
6 import sys
7 import os
8 import usbtmc
9
10 __author__ = "Alexis Jeandet"
11 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
12 __credits__ = []
13 __license__ = "GPLv2"
14 __version__ = "1.0.0"
15 __maintainer__ = "Alexis Jeandet"
16 __email__ = "alexis.jeandet@member.fsf.org"
17 __status__ = "Development"
18
19 class AgilentUsbTmc(usbtmc.UsbTmc):
20 def __init__(self,ref,serial=""):
21 isnt=usbtmc.findInstrument(ref,serial)
22 if inst=="":
23 raise UserWarning("Can't find instrument "+ref)
24 self.UsbTmc.__init__(isnt)
@@ -0,0 +1,55
1 #!/usr/bin/env python
2 #-*- coding: utf-8 -*-
3 """Simple python library to communicate over USB-TMC protocol with linux's
4 usbtmc module.
5 """
6 import time
7 import sys
8 import os
9 import glob
10 import re
11
12 __author__ = "Alexis Jeandet"
13 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
14 __credits__ = []
15 __license__ = "GPLv2"
16 __version__ = "1.0.0"
17 __maintainer__ = "Alexis Jeandet"
18 __email__ = "alexis.jeandet@member.fsf.org"
19 __status__ = "Development"
20
21
22 def find_instrument(ref,serial=""):
23 instruments=glob.glob("/dev/usbtmc[0-9]")
24 p = re.compile(ref)
25 for instrument in instruments:
26 dev=UsbTmc(instrument)
27 idn=dev.idn().split(",")
28 if p.match(idn[1]):
29 if serial=="" or serial == idn[2]:
30 return instrument
31 return ""
32
33 class UsbTmc():
34 def __init__(self,dev):
35 self.__PATH__=dev
36 self.__FILE__ = os.open(dev, os.O_RDWR)
37 if self.__FILE__==-1:
38 raise UserWarning("can't open "+dev)
39 self.Manufacturer=""
40 self.Reference=""
41 self.Serial=""
42 self.Version=""
43
44 def write(self, command):
45 os.write(self.__FILE__, command);
46
47 def read(self, length = 4000):
48 return os.read(self.__FILE__, length)
49
50 def idn(self):
51 self.write("*IDN?")
52 return self.read(100)
53
54 def __str__(self):
55 return self.idn() +"\n"+ self.__PATH__
@@ -7,4 +7,4
7 __version__ = "1.0.0"
7 __version__ = "1.0.0"
8 __maintainer__ = "Alexis Jeandet"
8 __maintainer__ = "Alexis Jeandet"
9 __email__ = "alexis.jeandet@member.fsf.org"
9 __email__ = "alexis.jeandet@member.fsf.org"
10 __status__ = "Production"
10 __status__ = "Development"
This diff has been collapsed as it changes many lines, (664 lines changed) Show them Hide them
@@ -1,331 +1,333
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #-*- coding: utf-8 -*-
2 #-*- coding: utf-8 -*-
3 """Simple python library to drive the analog discovery module from www.digilentinc.com
3 """Simple python library to drive the analog discovery module from www.digilentinc.com
4 """
4 """
5
5
6 from ctypes import *
6 from ctypes import *
7 import time
7 import time
8 import sys
8 import sys
9 import os
9 import os
10 import matplotlib.pyplot as plt
10 import matplotlib.pyplot as plt
11 import numpy as np
11 import numpy as np
12
12
13 __author__ = "Alexis Jeandet"
13 __author__ = "Alexis Jeandet"
14 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
14 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
15 __credits__ = []
15 __credits__ = []
16 __license__ = "GPLv2"
16 __license__ = "GPLv2"
17 __version__ = "1.0.0"
17 __version__ = "1.0.0"
18 __maintainer__ = "Alexis Jeandet"
18 __maintainer__ = "Alexis Jeandet"
19 __email__ = "alexis.jeandet@member.fsf.org"
19 __email__ = "alexis.jeandet@member.fsf.org"
20 __status__ = "Production"
20 __status__ = "Production"
21
21
22
22
23 nodev = c_int(0)
23 nodev = c_int(0)
24 DwfStateDone = c_int(2)
24 DwfStateDone = c_int(2)
25
25
26 DECIAnalogInChannelCount = c_int(1)
26 DECIAnalogInChannelCount = c_int(1)
27 DECIAnalogOutChannelCount = c_int(2)
27 DECIAnalogOutChannelCount = c_int(2)
28 DECIAnalogIOChannelCount = c_int(3)
28 DECIAnalogIOChannelCount = c_int(3)
29 DECIDigitalInChannelCount = c_int(4)
29 DECIDigitalInChannelCount = c_int(4)
30 DECIDigitalOutChannelCount = c_int(5)
30 DECIDigitalOutChannelCount = c_int(5)
31 DECIDigitalIOChannelCount = c_int(6)
31 DECIDigitalIOChannelCount = c_int(6)
32 DECIAnalogInBufferSize = c_int(7)
32 DECIAnalogInBufferSize = c_int(7)
33 DECIAnalogOutBufferSize = c_int(8)
33 DECIAnalogOutBufferSize = c_int(8)
34 DECIDigitalInBufferSize = c_int(9)
34 DECIDigitalInBufferSize = c_int(9)
35 DECIDigitalOutBufferSize = c_int(10)
35 DECIDigitalOutBufferSize = c_int(10)
36
36
37 trigsrcNone = c_byte(0)
37 trigsrcNone = c_byte(0)
38 trigsrcPC = c_byte(1)
38 trigsrcPC = c_byte(1)
39 trigsrcDetectorAnalogIn = c_byte(2)
39 trigsrcDetectorAnalogIn = c_byte(2)
40 trigsrcDetectorDigitalIn = c_byte(3)
40 trigsrcDetectorDigitalIn = c_byte(3)
41 trigsrcAnalogIn = c_byte(4)
41 trigsrcAnalogIn = c_byte(4)
42 trigsrcDigitalIn = c_byte(5)
42 trigsrcDigitalIn = c_byte(5)
43 trigsrcDigitalOut = c_byte(6)
43 trigsrcDigitalOut = c_byte(6)
44 trigsrcAnalogOut1 = c_byte(7)
44 trigsrcAnalogOut1 = c_byte(7)
45 trigsrcAnalogOut2 = c_byte(8)
45 trigsrcAnalogOut2 = c_byte(8)
46 trigsrcAnalogOut3 = c_byte(9)
46 trigsrcAnalogOut3 = c_byte(9)
47 trigsrcAnalogOut4 = c_byte(10)
47 trigsrcAnalogOut4 = c_byte(10)
48 trigsrcExternal1 = c_byte(11)
48 trigsrcExternal1 = c_byte(11)
49 trigsrcExternal2 = c_byte(12)
49 trigsrcExternal2 = c_byte(12)
50 trigsrcExternal3 = c_byte(13)
50 trigsrcExternal3 = c_byte(13)
51 trigsrcExternal4 = c_byte(14)
51 trigsrcExternal4 = c_byte(14)
52 trigAuto = c_byte(254)
52 trigAuto = c_byte(254)
53 trigNormal = c_byte(255)
53 trigNormal = c_byte(255)
54
54
55 AnalogOutNodeCarrier = c_int(0)
55 AnalogOutNodeCarrier = c_int(0)
56 AnalogOutNodeFM = c_int(1)
56 AnalogOutNodeFM = c_int(1)
57 AnalogOutNodeAM = c_int(2)
57 AnalogOutNodeAM = c_int(2)
58
58
59
59
60 shapes = {'DC' : 0,
60 shapes = {'DC' : 0,
61 'Sine' : 1,
61 'Sine' : 1,
62 'Square' : 2,
62 'Square' : 2,
63 'Triangle' : 3,
63 'Triangle' : 3,
64 'RampUp' : 4,
64 'RampUp' : 4,
65 'RampDown' : 5,
65 'RampDown' : 5,
66 'Noise' : 6,
66 'Noise' : 6,
67 'Custom' : 30,
67 'Custom' : 30,
68 'Play' :31, }
68 'Play' :31, }
69
69
70 closed=False
70 closed=False
71 opened=True
71 opened=True
72
72
73
73
74 class discoveryLimits():
74 class DiscoveryLimits():
75 class limitRange():
75 class limitRange():
76 def __init__(self,Min,Max,name="Unknow",unit=""):
76 def __init__(self,Min,Max,name="Unknow",unit=""):
77 self.Min = Min
77 self.Min = Min
78 self.Max = Max
78 self.Max = Max
79 self.name = name
79 self.name = name
80 self.unit = unit
80 self.unit = unit
81
81
82 def conform(self,value):
82 def conform(self,value):
83 if value<self.Min:
83 if value<self.Min:
84 raise UserWarning("Parameter "+self.name+" out of bound\nValue="+str(value)+"\nForce to "+str(self.Min))
84 raise UserWarning("Parameter "+self.name+" out of bound\nValue="+str(value)+"\nForce to "+str(self.Min))
85 return self.Min
85 return self.Min
86 if value>self.Max:
86 if value>self.Max:
87 raise UserWarning("Parameter "+self.name+" out of bound\nValue="+str(value)+"\nForce to "+str(self.Max))
87 raise UserWarning("Parameter "+self.name+" out of bound\nValue="+str(value)+"\nForce to "+str(self.Max))
88 return self.Max
88 return self.Max
89 return value
89 return value
90
90
91 def printme(self):
91 def __str__(self):
92 print(self.name + ":\n Min="+str(self.Min)+" "+self.unit+",Max="+str(self.Max)+" "+self.unit)
92 return self.name + ":\n Min="+str(self.Min)+" "+self.unit+",Max="+str(self.Max)+" "+self.unit
93
93
94 errors = {0: RuntimeError("No card opened"),
94 errors = {0: RuntimeError("No card opened"),
95 1: UserWarning("Parameter out of bound"),
95 1: UserWarning("Parameter out of bound"),
96 }
96 }
97 def __init__(self,libdwf,hdwf):
97 def __init__(self,libdwf,hdwf):
98 self.limits=[]
98 self.limits=[]
99 self.ACQ_IN_RANGES=[0.0]
99 self.ACQ_IN_RANGES=[0.0]
100 if hdwf.value == nodev.value:
100 if hdwf.value == nodev.value:
101 return
101 return
102 self.__hdwf=hdwf
102 self.__hdwf=hdwf
103 self.__libdwf=libdwf
103 self.__libdwf=libdwf
104 Mind=c_double()
104 Mind=c_double()
105 Maxd=c_double()
105 Maxd=c_double()
106 Mini=c_int()
106 Mini=c_int()
107 Maxi=c_int()
107 Maxi=c_int()
108 StepsCount=c_int()
108 StepsCount=c_int()
109 Steps=(c_double*32)()
109 Steps=(c_double*32)()
110 self.__libdwf.FDwfAnalogInBufferSizeInfo(self.__hdwf, byref(Mini), byref(Maxi))
110 self.__libdwf.FDwfAnalogInBufferSizeInfo(self.__hdwf, byref(Mini), byref(Maxi))
111 self.ACQ_BUF=self.limitRange(Mini.value,Maxi.value,"ACQ Buffer Size","Sps")
111 self.ACQ_BUF=self.limitRange(Mini.value,Maxi.value,"ACQ Buffer Size","Sps")
112 self.limits.append(self.ACQ_BUF)
112 self.limits.append(self.ACQ_BUF)
113 self.__libdwf.FDwfAnalogInFrequencyInfo(self.__hdwf, byref(Mind), byref(Maxd))
113 self.__libdwf.FDwfAnalogInFrequencyInfo(self.__hdwf, byref(Mind), byref(Maxd))
114 self.ACQ_FREQ=self.limitRange(Mind.value,Maxd.value,"ACQ Frequency","Hz")
114 self.ACQ_FREQ=self.limitRange(Mind.value,Maxd.value,"ACQ Frequency","Hz")
115 self.limits.append(self.ACQ_FREQ)
115 self.limits.append(self.ACQ_FREQ)
116 self.__libdwf.FDwfAnalogInChannelRangeSteps(self.__hdwf, byref(Steps), byref(StepsCount))
116 self.__libdwf.FDwfAnalogInChannelRangeSteps(self.__hdwf, byref(Steps), byref(StepsCount))
117 self.ACQ_IN_RANGES=Steps[0:StepsCount.value]
117 self.ACQ_IN_RANGES=Steps[0:StepsCount.value]
118 self.__libdwf.FDwfAnalogOutNodeAmplitudeInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
118 self.__libdwf.FDwfAnalogOutNodeAmplitudeInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
119 byref(Mind), byref(Maxd))
119 byref(Mind), byref(Maxd))
120 self.GEN_AMPL=self.limitRange(Mind.value,Maxd.value,"GEN Amplitude","V")
120 self.GEN_AMPL=self.limitRange(Mind.value,Maxd.value,"GEN Amplitude","V")
121 self.limits.append(self.GEN_AMPL)
121 self.limits.append(self.GEN_AMPL)
122 self.__libdwf.FDwfAnalogOutNodeFrequencyInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
122 self.__libdwf.FDwfAnalogOutNodeFrequencyInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
123 byref(Mind), byref(Maxd))
123 byref(Mind), byref(Maxd))
124 self.GEN_FREQ=self.limitRange(Mind.value,Maxd.value,"GEN Frequency","Hz")
124 self.GEN_FREQ=self.limitRange(Mind.value,Maxd.value,"GEN Frequency","Hz")
125 self.limits.append(self.GEN_FREQ)
125 self.limits.append(self.GEN_FREQ)
126 self.__libdwf.FDwfAnalogOutNodeOffsetInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
126 self.__libdwf.FDwfAnalogOutNodeOffsetInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
127 byref(Mind), byref(Maxd))
127 byref(Mind), byref(Maxd))
128 self.GEN_OFFSET=self.limitRange(Mind.value,Maxd.value,"GEN Offset","V")
128 self.GEN_OFFSET=self.limitRange(Mind.value,Maxd.value,"GEN Offset","V")
129 self.limits.append(self.GEN_OFFSET)
129 self.limits.append(self.GEN_OFFSET)
130 self.__libdwf.FDwfAnalogOutNodeDataInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
130 self.__libdwf.FDwfAnalogOutNodeDataInfo(self.__hdwf,c_int(0), AnalogOutNodeCarrier,
131 byref(Mini), byref(Maxi))
131 byref(Mini), byref(Maxi))
132 self.GEN_BUFF=self.limitRange(Mini.value,Maxi.value,"GEN Buffer size","Sps")
132 self.GEN_BUFF=self.limitRange(Mini.value,Maxi.value,"GEN Buffer size","Sps")
133 self.limits.append(self.GEN_BUFF)
133 self.limits.append(self.GEN_BUFF)
134
134
135
135
136 def __conformParam(self,minVal,maxVal,val):
136 def __conformParam(self,minVal,maxVal,val):
137 if val<minVal:
137 if val<minVal:
138 raise self.errors.get(1)
138 raise self.errors.get(1)
139 print("Force to "+str(minVal))
139 print("Force to "+str(minVal))
140 return minVal
140 return minVal
141 if val>maxVal:
141 if val>maxVal:
142 raise self.errors.get(1)
142 raise self.errors.get(1)
143 print("Force to "+str(maxVal))
143 print("Force to "+str(maxVal))
144 return maxVal
144 return maxVal
145 return val
145 return val
146
146
147 def acqFreq(self, value):
147 def acqFreq(self, value):
148 return self.ACQ_FREQ.conform(value)
148 return self.ACQ_FREQ.conform(value)
149
149
150 def acqBufSize(self, value):
150 def acqBufSize(self, value):
151 return self.ACQ_BUF.conform(value)
151 return self.ACQ_BUF.conform(value)
152
152
153 def genFreq(self, value):
153 def genFreq(self, value):
154 return self.GEN_FREQ.conform(value)
154 return self.GEN_FREQ.conform(value)
155
155
156 def genAmplitude(self, value):
156 def genAmplitude(self, value):
157 return self.GEN_AMPL.conform(value)
157 return self.GEN_AMPL.conform(value)
158
158
159 def genOffset(self, value):
159 def genOffset(self, value):
160 return self.GEN_OFFSET.conform(value)
160 return self.GEN_OFFSET.conform(value)
161
161
162 def genBuffSize(self, value):
162 def genBuffSize(self, value):
163 return self.GEN_BUFF.conform(value)
163 return self.GEN_BUFF.conform(value)
164
164
165 def printme(self):
165 def __str__(self):
166 for i in self.limits:
166 res=str()
167 i.printme()
167 for i in self.limits:
168 print("ACQ Input ranes: "+str(self.ACQ_IN_RANGES))
168 res+=i.__str__()+"\n"
169
169 res+="ACQ Input ranes: "+str(self.ACQ_IN_RANGES)
170
170 return res
171 class discovery():
171
172
172
173 errors = {0: RuntimeError("No card opened"),
173 class Discovery():
174 1: UserWarning("Parameter out of bound"),
174
175 }
175 errors = {0: RuntimeError("No card opened"),
176 def __init__(self,card=-1):
176 1: UserWarning("Parameter out of bound"),
177 if sys.platform.startswith("win"):
177 }
178 self.__libdwf = cdll.dwf
178 def __init__(self,card=-1):
179 elif sys.platform.startswith("darwin"):
179 if sys.platform.startswith("win"):
180 self.__libdwf = cdll.LoadLibrary("libdwf.dylib")
180 self.__libdwf = cdll.dwf
181 else:
181 elif sys.platform.startswith("darwin"):
182 self.__libdwf = cdll.LoadLibrary("libdwf.so")
182 self.__libdwf = cdll.LoadLibrary("libdwf.dylib")
183 self.__opened = True
183 else:
184 self.__hdwf = c_int()
184 self.__libdwf = cdll.LoadLibrary("libdwf.so")
185 self.__libdwf.FDwfDeviceOpen(c_int(card), byref(self.__hdwf))
185 self.__opened = True
186 if self.__hdwf.value == nodev.value:
186 self.__hdwf = c_int()
187 szerr = create_string_buffer(512)
187 self.__libdwf.FDwfDeviceOpen(c_int(card), byref(self.__hdwf))
188 self.__libdwf.FDwfGetLastErrorMsg(szerr)
188 if self.__hdwf.value == nodev.value:
189 print(szerr.value)
189 szerr = create_string_buffer(512)
190 print("failed to open device")
190 self.__libdwf.FDwfGetLastErrorMsg(szerr)
191 self.__opened=False
191 print(szerr.value)
192 self.__limits=discoveryLimits(self.__libdwf,self.__hdwf)
192 print("failed to open device")
193 self.__limits.printme()
193 self.__opened=False
194
194 self.__limits=DiscoveryLimits(self.__libdwf,self.__hdwf)
195 @property
195 print(self.__limits)
196 def opened(self):
196
197 return self.__opened
197 @property
198
198 def opened(self):
199
199 return self.__opened
200 #############################################################
200
201 # Power Supply
201
202 #############################################################
202 #############################################################
203 def setPower(self,fiveVolt=1,minusFiveVolt=1,master=True):
203 # Power Supply
204 if not self.__opened:
204 #############################################################
205 raise self.errors.get(0)
205 def set_power(self,fiveVolt=1,minusFiveVolt=1,master=True):
206 # enable positive supply
206 if not self.__opened:
207 self.__libdwf.FDwfAnalogIOChannelNodeSet(self.__hdwf, 0, 0, c_double(fiveVolt))
207 raise self.errors.get(0)
208 # enable negative supply
208 # enable positive supply
209 self.__libdwf.FDwfAnalogIOChannelNodeSet(self.__hdwf, 1, 0, c_double(minusFiveVolt))
209 self.__libdwf.FDwfAnalogIOChannelNodeSet(self.__hdwf, 0, 0, c_double(fiveVolt))
210 # master enable
210 # enable negative supply
211 return self.__libdwf.FDwfAnalogIOEnableSet(self.__hdwf, master)
211 self.__libdwf.FDwfAnalogIOChannelNodeSet(self.__hdwf, 1, 0, c_double(minusFiveVolt))
212
212 # master enable
213 def getPower(self):
213 return self.__libdwf.FDwfAnalogIOEnableSet(self.__hdwf, master)
214 if not self.__opened:
214
215 raise self.errors.get(0)
215 def get_power(self):
216 supplyVoltage = c_double()
216 if not self.__opened:
217 supplyCurrent = c_double()
217 raise self.errors.get(0)
218 IsEnabled = c_bool()
218 supplyVoltage = c_double()
219 self.__libdwf.FDwfAnalogIOStatus(self.__hdwf)
219 supplyCurrent = c_double()
220 self.__libdwf.FDwfAnalogIOChannelNodeStatus(self.__hdwf, c_int(3), c_int(0), byref(supplyVoltage))
220 IsEnabled = c_bool()
221 self.__libdwf.FDwfAnalogIOChannelNodeStatus(self.__hdwf, c_int(3), c_int(1), byref(supplyCurrent))
221 self.__libdwf.FDwfAnalogIOStatus(self.__hdwf)
222 self.__libdwf.FDwfAnalogIOEnableStatus(self.__hdwf, byref(IsEnabled))
222 self.__libdwf.FDwfAnalogIOChannelNodeStatus(self.__hdwf, c_int(3), c_int(0), byref(supplyVoltage))
223 return [IsEnabled.value,supplyVoltage.value,supplyCurrent.value]
223 self.__libdwf.FDwfAnalogIOChannelNodeStatus(self.__hdwf, c_int(3), c_int(1), byref(supplyCurrent))
224
224 self.__libdwf.FDwfAnalogIOEnableStatus(self.__hdwf, byref(IsEnabled))
225 #############################################################
225 return [IsEnabled.value,supplyVoltage.value,supplyCurrent.value]
226 # AnalogIn
226
227 #############################################################
227 #############################################################
228 def analogInRead(self,ch1=True,ch2=True,frequency=100000000,samplesCount=100,ch1range=5.0,ch2range=5.0,trigger=trigsrcNone):
228 # AnalogIn
229 if not self.__opened:
229 #############################################################
230 raise self.errors.get(0)
230 def analog_in_read(self,ch1=True,ch2=True,frequency=100000000,samplesCount=100,ch1range=5.0,ch2range=5.0,trigger=trigsrcNone):
231 cnt=self.__limits.acqBufSize(samplesCount)
231 if not self.__opened:
232 self.__libdwf.FDwfAnalogInFrequencySet(self.__hdwf, c_double(self.__limits.acqFreq(frequency)))
232 raise self.errors.get(0)
233 f=c_double()
233 cnt=self.__limits.acqBufSize(samplesCount)
234 self.__libdwf.FDwfAnalogInFrequencyGet(self.__hdwf, byref(f))
234 self.__libdwf.FDwfAnalogInFrequencySet(self.__hdwf, c_double(self.__limits.acqFreq(frequency)))
235 frequency=f.value
235 f=c_double()
236 self.__libdwf.FDwfAnalogInBufferSizeSet(self.__hdwf, c_int(cnt))
236 self.__libdwf.FDwfAnalogInFrequencyGet(self.__hdwf, byref(f))
237 self.__libdwf.FDwfAnalogInChannelEnableSet(self.__hdwf, c_int(0), c_bool(ch1))
237 frequency=f.value
238 self.__libdwf.FDwfAnalogInChannelRangeSet(self.__hdwf, c_int(0), c_double(ch1range))
238 self.__libdwf.FDwfAnalogInBufferSizeSet(self.__hdwf, c_int(cnt))
239 self.__libdwf.FDwfAnalogInChannelEnableSet(self.__hdwf, c_int(1), c_bool(ch2))
239 self.__libdwf.FDwfAnalogInChannelEnableSet(self.__hdwf, c_int(0), c_bool(ch1))
240 self.__libdwf.FDwfAnalogInChannelRangeSet(self.__hdwf, c_int(1), c_double(ch2range))
240 self.__libdwf.FDwfAnalogInChannelRangeSet(self.__hdwf, c_int(0), c_double(ch1range))
241 self.setAnaloInTrigger(trigger)
241 self.__libdwf.FDwfAnalogInChannelEnableSet(self.__hdwf, c_int(1), c_bool(ch2))
242 self.__libdwf.FDwfAnalogInConfigure(self.__hdwf, c_bool(False), c_bool(True))
242 self.__libdwf.FDwfAnalogInChannelRangeSet(self.__hdwf, c_int(1), c_double(ch2range))
243 status = c_byte()
243 self.set_analog_in_trigger(trigger)
244 while True:
244 self.__libdwf.FDwfAnalogInConfigure(self.__hdwf, c_bool(False), c_bool(True))
245 self.__libdwf.FDwfAnalogInStatus(self.__hdwf, c_int(1), byref(status))
245 status = c_byte()
246 if status.value == DwfStateDone.value :
246 while True:
247 break
247 self.__libdwf.FDwfAnalogInStatus(self.__hdwf, c_int(1), byref(status))
248 time.sleep(0.1)
248 if status.value == DwfStateDone.value :
249 if ch1:
249 break
250 ch1data = (c_double*cnt)()
250 time.sleep(0.1)
251 self.__libdwf.FDwfAnalogInStatusData(self.__hdwf, 0, ch1data, cnt)
251 if ch1:
252 if ch2:
252 ch1data = (c_double*cnt)()
253 ch2data = (c_double*cnt)()
253 self.__libdwf.FDwfAnalogInStatusData(self.__hdwf, 0, ch1data, cnt)
254 self.__libdwf.FDwfAnalogInStatusData(self.__hdwf, 1, ch2data, cnt)
254 if ch2:
255 return [np.array([ch1data,ch2data]),frequency]
255 ch2data = (c_double*cnt)()
256 else:
256 self.__libdwf.FDwfAnalogInStatusData(self.__hdwf, 1, ch2data, cnt)
257 return [np.array([ch1data]),frequency]
257 return [np.array([ch1data,ch2data]),frequency]
258 if ch2:
258 else:
259 ch2data = (c_double*cnt)()
259 return [np.array([ch1data]),frequency]
260 self.__libdwf.FDwfAnalogInStatusData(self.__hdwf, 1, ch2data, cnt)
260 if ch2:
261 return [np.array([ch2data]),frequency]
261 ch2data = (c_double*cnt)()
262
262 self.__libdwf.FDwfAnalogInStatusData(self.__hdwf, 1, ch2data, cnt)
263
263 return [np.array([ch2data]),frequency]
264 def setAnaloInTrigger(self,trigger=trigAuto,autoTimeout=0.0):
264
265 if not self.__opened:
265
266 raise self.errors.get(0)
266 def set_analog_in_trigger(self,trigger=trigAuto,autoTimeout=0.0):
267 if trigger == trigAuto:
267 if not self.__opened:
268 self.__libdwf.FDwfAnalogInTriggerSourceSet(self.__hdwf,trigsrcDetectorAnalogIn)
268 raise self.errors.get(0)
269 self.__libdwf.FDwfAnalogInTriggerAutoTimeoutSet(self.__hdwf,c_double(autoTimeout))
269 if trigger == trigAuto:
270 return
270 self.__libdwf.FDwfAnalogInTriggerSourceSet(self.__hdwf,trigsrcDetectorAnalogIn)
271 if trigger == trigNormal:
271 self.__libdwf.FDwfAnalogInTriggerAutoTimeoutSet(self.__hdwf,c_double(autoTimeout))
272 self.__libdwf.FDwfAnalogInTriggerSourceSet(self.__hdwf,trigsrcDetectorAnalogIn)
272 return
273 self.__libdwf.FDwfAnalogInTriggerAutoTimeoutSet(self.__hdwf,c_double(0.0))
273 if trigger == trigNormal:
274 return
274 self.__libdwf.FDwfAnalogInTriggerSourceSet(self.__hdwf,trigsrcDetectorAnalogIn)
275 self.__libdwf.FDwfAnalogInTriggerSourceSet(self.__hdwf,trigger)
275 self.__libdwf.FDwfAnalogInTriggerAutoTimeoutSet(self.__hdwf,c_double(0.0))
276
276 return
277 #############################################################
277 self.__libdwf.FDwfAnalogInTriggerSourceSet(self.__hdwf,trigger)
278 # AnalogOut
278
279 #############################################################
279 #############################################################
280 def analogOutGen(self,frequency=1000, shape='Sine', channel=0, amplitude=1.0, offset=0.0):
280 # AnalogOut
281 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(False))
281 #############################################################
282 self.__libdwf.FDwfAnalogOutNodeEnableSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_bool(True))
282 def analog_out_gen(self,frequency=1000, shape='Sine', channel=0, amplitude=1.0, offset=0.0):
283 self.__libdwf.FDwfAnalogOutNodeFunctionSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_int(shapes.get(shape)))
283 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(False))
284 self.__libdwf.FDwfAnalogOutNodeFrequencySet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genFreq(frequency)))
284 self.__libdwf.FDwfAnalogOutNodeEnableSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_bool(True))
285 self.__libdwf.FDwfAnalogOutNodeAmplitudeSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genAmplitude(amplitude)))
285 self.__libdwf.FDwfAnalogOutNodeFunctionSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_int(shapes.get(shape)))
286 self.__libdwf.FDwfAnalogOutNodeOffsetSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genOffset(offset)))
286 self.__libdwf.FDwfAnalogOutNodeFrequencySet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genFreq(frequency)))
287 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(True))
287 self.__libdwf.FDwfAnalogOutNodeAmplitudeSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genAmplitude(amplitude)))
288
288 self.__libdwf.FDwfAnalogOutNodeOffsetSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genOffset(offset)))
289 def analogOutGenArbit(self,samplesBuffer ,repeatingFrequency=100, channel=0, amplitude=1.0, offset=0.0):
289 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(True))
290 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(False))
290
291 cnt=self.__limits.genBuffSize(len(samplesBuffer))
291 def analog_out_gen_arbit(self,samplesBuffer ,repeatingFrequency=100, channel=0, amplitude=1.0, offset=0.0):
292 buf=(c_double*cnt)()
292 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(False))
293 buf[:]=samplesBuffer[0:cnt]
293 cnt=self.__limits.genBuffSize(len(samplesBuffer))
294 repeatingFrequency = self.__limits.genFreq(repeatingFrequency*cnt)/cnt
294 buf=(c_double*cnt)()
295 self.__libdwf.FDwfAnalogOutNodeEnableSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_bool(True))
295 buf[:]=samplesBuffer[0:cnt]
296 self.__libdwf.FDwfAnalogOutNodeFunctionSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_int(shapes.get("Custom")))
296 repeatingFrequency = self.__limits.genFreq(repeatingFrequency*cnt)/cnt
297 self.__libdwf.FDwfAnalogOutNodeFrequencySet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(repeatingFrequency))
297 self.__libdwf.FDwfAnalogOutNodeEnableSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_bool(True))
298 self.__libdwf.FDwfAnalogOutNodeAmplitudeSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genAmplitude(amplitude)))
298 self.__libdwf.FDwfAnalogOutNodeFunctionSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_int(shapes.get("Custom")))
299 self.__libdwf.FDwfAnalogOutNodeOffsetSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genOffset(offset)))
299 self.__libdwf.FDwfAnalogOutNodeFrequencySet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(repeatingFrequency))
300 self.__libdwf.FDwfAnalogOutNodeDataSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, buf, c_int(cnt))
300 self.__libdwf.FDwfAnalogOutNodeAmplitudeSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genAmplitude(amplitude)))
301 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(True))
301 self.__libdwf.FDwfAnalogOutNodeOffsetSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, c_double(self.__limits.genOffset(offset)))
302
302 self.__libdwf.FDwfAnalogOutNodeDataSet(self.__hdwf, c_int(channel), AnalogOutNodeCarrier, buf, c_int(cnt))
303
303 self.__libdwf.FDwfAnalogOutConfigure(self.__hdwf, c_int(channel), c_bool(True))
304 def __del__(self):
304
305 if self.__opened:
305
306 self.__libdwf.FDwfDeviceClose(self.__hdwf)
306 def __del__(self):
307
307 if self.__opened:
308
308 self.__libdwf.FDwfDeviceClose(self.__hdwf)
309
309
310
310
311 if __name__ == '__main__':
311
312 print("open first dev")
312
313 test = discovery()
313 if __name__ == '__main__':
314 test.setPower()
314 print("open first dev")
315 for i in range(2):
315 test = Discovery()
316 time.sleep(0.2)
316 test.set_power()
317 print(test.getPower())
317 for i in range(2):
318 test.analogOutGen()
318 time.sleep(0.2)
319 res=test.analogInRead(frequency=1000000,samplesCount=1000)
319 print(test.get_power())
320 print(res)
320 test.analog_out_gen()
321 plt.plot(range(len(res[0][0])),res[0][0])
321 res=test.analog_in_read(frequency=1000000,samplesCount=1000)
322 plt.plot(range(len(res[0][0])),res[0][1])
322 print(res)
323 plt.show()
323 plt.plot(range(len(res[0][0])),res[0][0])
324 test.temp()
324 plt.plot(range(len(res[0][0])),res[0][1])
325 # del test
325 plt.show()
326 quit()
326 test.temp()
327
327 # del test
328
328 quit()
329
329
330
330
331
331
332
333
@@ -1,128 +1,126
1 #-*- coding: utf-8 -*-
1 #!/usr/bin/env python
2 #Copyright 2015 Alexis Jeandet
2 #-*- coding: utf-8 -*-
3 #This file is part of lppinstru.
3 """Simple python library to communicate with GW Instek GPD-Series power supplies.
4
4 """
5 #lppinstru is free software: you can redistribute it and/or modify
5 import time
6 #it under the terms of the GNU General Public License as published by
6 import sys
7 #the Free Software Foundation, either version 3 of the License, or
7 import os
8 #(at your option) any later version.
8 import matplotlib.pyplot as plt
9
9 import numpy as np
10 #pydiscovery is distributed in the hope that it will be useful,
10 import serial
11 #but WITHOUT ANY WARRANTY; without even the implied warranty of
11
12 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 __author__ = "Alexis Jeandet"
13 #GNU General Public License for more details.
13 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
14
14 __credits__ = []
15 #You should have received a copy of the GNU General Public License
15 __license__ = "GPLv2"
16 #along with pydiscovery. If not, see <http://www.gnu.org/licenses/>.
16 __version__ = "1.0.0"
17 import time
17 __maintainer__ = "Alexis Jeandet"
18 import sys
18 __email__ = "alexis.jeandet@member.fsf.org"
19 import os
19 __status__ = "Development"
20 import matplotlib.pyplot as plt
20
21 import numpy as np
21
22 import serial
22 class gpd_xxx():
23
23 conf = {"GPD-3303S" : (2,0.0,30.0),
24 class gpd_xxx():
24 "GPD-3303" : (),
25 conf = {"GPD-3303S" : (2,0.0,30.0),
25 }
26 "GPD-3303" : (),
26 trackingMode = {"Independent" : '0',
27 }
27 "Series" : '1',
28 trackingMode = {"Independent" : '0',
28 "Parallel" : '2',
29 "Series" : '1',
29 }
30 "Parallel" : '2',
30 trackingModeStat = {"01": "Independent",
31 }
31 "11" : "Series",
32 trackingModeStat = {"01": "Independent",
32 "10" : "Parallel",
33 "11" : "Series",
33 }
34 "10" : "Parallel",
34 def __init__(self,port):
35 }
35 self.i=0
36 def __init__(self,port):
36 self.__port=serial.Serial(port,timeout=0.5)
37 self.i=0
37
38 self.__port=serial.Serial(port,timeout=0.5)
38 def idn(self):
39
39 self.__port.setTimeout(0.1)
40 def idn(self):
40 self.__port.write(b"*IDN?\n")
41 self.__port.setTimeout(0.1)
41 return self.__port.readall()
42 self.__port.write(b"*IDN?\n")
42
43 return self.__port.readall()
43 def setVoltage(self,index,tension):
44
44 if index < 2:
45 def setVoltage(self,index,tension):
45 self.__port.write("VSET"+str(index+1)+":"+str(tension)+"\n")
46 if index < 2:
46 else:
47 self.__port.write("VSET"+str(index+1)+":"+str(tension)+"\n")
47 raise UserWarning("Parameter out of bound")
48 else:
48
49 raise UserWarning("Parameter out of bound")
49 def voltageSet(self,index):
50
50 if index < 2:
51 def voltageSet(self,index):
51 self.__port.setTimeout(0.1)
52 if index < 2:
52 self.__port.write("VSET"+str(index+1)+"?\n")
53 self.__port.setTimeout(0.1)
53 V=self.__port.readall()
54 self.__port.write("VSET"+str(index+1)+"?\n")
54 return float(V.split("V")[0])
55 V=self.__port.readall()
55 else:
56 return float(V.split("V")[0])
56 raise UserWarning("Parameter out of bound")
57 else:
57
58 raise UserWarning("Parameter out of bound")
58 def voltage(self,index):
59
59 if index < 2:
60 def voltage(self,index):
60 self.__port.setTimeout(0.1)
61 if index < 2:
61 self.__port.write("VOUT"+str(index+1)+"?\n")
62 self.__port.setTimeout(0.1)
62 V=self.__port.readall()
63 self.__port.write("VOUT"+str(index+1)+"?\n")
63 return float(V.split("V")[0])
64 V=self.__port.readall()
64 else:
65 return float(V.split("V")[0])
65 raise UserWarning("Parameter out of bound")
66 else:
66
67 raise UserWarning("Parameter out of bound")
67 def setCurrentLimit(self,index,limit):
68
68 if index < 2:
69 def setCurrentLimit(self,index,limit):
69 self.__port.write("ISET"+str(index+1)+":"+str(limit)+"\n")
70 if index < 2:
70 else:
71 self.__port.write("ISET"+str(index+1)+":"+str(limit)+"\n")
71 raise UserWarning("Parameter out of bound")
72 else:
72
73 raise UserWarning("Parameter out of bound")
73 def currentLimit(self,index):
74
74 if index < 2:
75 def currentLimit(self,index):
75 self.__port.setTimeout(0.1)
76 if index < 2:
76 self.__port.write("ISET"+str(index+1)+"?\n")
77 self.__port.setTimeout(0.1)
77 I = self.__port.readall()
78 self.__port.write("ISET"+str(index+1)+"?\n")
78 return float(I.split("A")[0])
79 I = self.__port.readall()
79 else:
80 return float(I.split("A")[0])
80 raise UserWarning("Parameter out of bound")
81 else:
81
82 raise UserWarning("Parameter out of bound")
82 def current(self,index):
83
83 if index < 2:
84 def current(self,index):
84 self.__port.setTimeout(0.1)
85 if index < 2:
85 self.__port.write("IOUT"+str(index+1)+"?\n")
86 self.__port.setTimeout(0.1)
86 I = self.__port.readall()
87 self.__port.write("IOUT"+str(index+1)+"?\n")
87 return float(I.split("A")[0])
88 I = self.__port.readall()
88 else:
89 return float(I.split("A")[0])
89 raise UserWarning("Parameter out of bound")
90 else:
90
91 raise UserWarning("Parameter out of bound")
91 def turnOn(self,on=True):
92
92 if on:
93 def turnOn(self,on=True):
93 self.__port.write("OUT1\n")
94 if on:
94 else:
95 self.__port.write("OUT1\n")
95 self.__port.write("OUT0\n")
96 else:
96
97 self.__port.write("OUT0\n")
97 def setTracking(self,mode="Independent"):
98
98 self.__port.write("TRACK"+self.trackingMode.get(mode)+"\n")
99 def setTracking(self,mode="Independent"):
99
100 self.__port.write("TRACK"+self.trackingMode.get(mode)+"\n")
100 def setBeep(self,on=True):
101
101 if on:
102 def setBeep(self,on=True):
102 self.__port.write("BEEP1\n")
103 if on:
103 else:
104 self.__port.write("BEEP1\n")
104 self.__port.write("BEEP0\n")
105 else:
105
106 self.__port.write("BEEP0\n")
106 def tracking(self):
107
107 self.__port.write("STATUS?\n")
108 def tracking(self):
108 self.__port.setTimeout(0.1)
109 self.__port.write("STATUS?\n")
109 STAT = self.__port.readall()
110 self.__port.setTimeout(0.1)
110 BITS = STAT.split(" ")
111 STAT = self.__port.readall()
111 return self.trackingModeStat.get(''.join(BITS[2:4]))
112 BITS = STAT.split(" ")
112
113 return self.trackingModeStat.get(''.join(BITS[2:4]))
113 def save(self,mem=1):
114
114 if mem>=1 and mem<=4:
115 def save(self,mem=1):
115 self.__port.write("SAV"+str(mem)+"\n")
116 if mem>=1 and mem<=4:
116 else:
117 self.__port.write("SAV"+str(mem)+"\n")
117 raise UserWarning("Parameter mem of bound 1-4")
118 else:
118
119 raise UserWarning("Parameter mem of bound 1-4")
119 def recal(self,mem=1):
120
120 if mem>=1 and mem<=4:
121 def recal(self,mem=1):
121 self.__port.write("RCL"+str(mem)+"\n")
122 if mem>=1 and mem<=4:
122 else:
123 self.__port.write("RCL"+str(mem)+"\n")
123 raise UserWarning("Parameter mem of bound 1-4")
124 else:
124
125 raise UserWarning("Parameter mem of bound 1-4")
125 if __name__ == '__main__':
126
126 print("")
127 if __name__ == '__main__':
128 print("")
@@ -1,71 +1,71
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #-*- coding: utf-8 -*-
2 #-*- coding: utf-8 -*-
3 """Simple python library to compute transfert functions
3 """Simple python library to compute transfert functions
4 """
4 """
5 import time
5 import time
6 import sys
6 import sys
7 import os
7 import os
8 import matplotlib.pyplot as plt
8 import matplotlib.pyplot as plt
9 import numpy as np
9 import numpy as np
10 from scipy import fftpack
10 from scipy import fftpack
11
11
12 __author__ = "Alexis Jeandet"
12 __author__ = "Alexis Jeandet"
13 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
13 __copyright__ = "Copyright 2015, Laboratory of Plasma Physics"
14 __credits__ = []
14 __credits__ = []
15 __license__ = "GPLv2"
15 __license__ = "GPLv2"
16 __version__ = "1.0.0"
16 __version__ = "1.0.0"
17 __maintainer__ = "Alexis Jeandet"
17 __maintainer__ = "Alexis Jeandet"
18 __email__ = "alexis.jeandet@member.fsf.org"
18 __email__ = "alexis.jeandet@member.fsf.org"
19 __status__ = "Production"
19 __status__ = "Development"
20
20
21
21
22
22
23 def __parseFFT(FFTi,FFTo,signalFreq,samplingFreq):
23 def __parseFFT(FFTi,FFTo,signalFreq,samplingFreq):
24 index=signalFreq*len(FFTi)/samplingFreq
24 index=signalFreq*len(FFTi)/samplingFreq
25 powI=np.abs(FFTi[index-4:index+4])
25 powI=np.abs(FFTi[index-4:index+4])
26 i=np.argmax(powI)+index-4
26 i=np.argmax(powI)+index-4
27 mod=np.abs(FFTo[i])/np.abs(FFTi[i])
27 mod=np.abs(FFTo[i])/np.abs(FFTi[i])
28 arg=np.angle(FFTo[i])-np.angle(FFTi[i])
28 arg=np.angle(FFTo[i])-np.angle(FFTi[i])
29 if arg<-np.pi:
29 if arg<-np.pi:
30 arg = (np.pi*2)+arg
30 arg = (np.pi*2)+arg
31 if arg>np.pi:
31 if arg>np.pi:
32 arg = (-np.pi*2)+arg
32 arg = (-np.pi*2)+arg
33 return [signalFreq,mod,arg]
33 return [signalFreq,mod,arg]
34
34
35 def __step(device,freq,offset=0.0,maxAmp=5.0,lastAmp=1.0):
35 def __step(device,freq,offset=0.0,maxAmp=5.0,lastAmp=1.0):
36 device.analogOutGen(freq, shape='Sine', channel=0, amplitude=lastAmp, offset=offset)
36 device.analog_out_gen(freq, shape='Sine', channel=0, amplitude=lastAmp, offset=offset)
37 samplesCount=8192
37 samplesCount=8192
38 if freq > 500000:
38 if freq > 500000:
39 FS=freq*samplesCount/500.0
39 FS=freq*samplesCount/500.0
40 elif freq > 100000:
40 elif freq > 100000:
41 FS=freq*samplesCount/50.0
41 FS=freq*samplesCount/50.0
42 else:
42 else:
43 FS=freq*samplesCount/10.0
43 FS=freq*samplesCount/10.0
44 res=device.analogInRead(ch1=True,ch2=True,frequency=FS,samplesCount=samplesCount,ch1range=5.0,ch2range=5.0)
44 res=device.analog_in_read(ch1=True,ch2=True,frequency=FS,samplesCount=samplesCount,ch1range=5.0,ch2range=5.0)
45 FFTi=fftpack.fft(res[0][0])
45 FFTi=fftpack.fft(res[0][0])
46 FFTo=fftpack.fft(res[0][1])
46 FFTo=fftpack.fft(res[0][1])
47 return __parseFFT(FFTi,FFTo,freq,res[1])
47 return __parseFFT(FFTi,FFTo,freq,res[1])
48
48
49
49
50 def computeTF(device,startFreq=1.0,stopFreq=100.0,offset=0.0,maxAmp=5.0,nstep=100):
50 def computeTF(device,startFreq=1.0,stopFreq=100.0,offset=0.0,maxAmp=5.0,nstep=100):
51 freq=np.zeros(nstep)
51 freq=np.zeros(nstep)
52 f=[]
52 f=[]
53 mod=[]
53 mod=[]
54 arg=[]
54 arg=[]
55 for i in range(int(nstep)) :
55 for i in range(int(nstep)) :
56 freq[i]=startFreq*np.power(10,((np.log10(stopFreq/startFreq))*i/(nstep-1)))
56 freq[i]=startFreq*np.power(10,((np.log10(stopFreq/startFreq))*i/(nstep-1)))
57 lastAmp=0.1
57 lastAmp=0.1
58 for i in range(len(freq)):
58 for i in range(len(freq)):
59 step=__step(device,freq[i],offset=offset,maxAmp=maxAmp,lastAmp=lastAmp)
59 step=__step(device,freq[i],offset=offset,maxAmp=maxAmp,lastAmp=lastAmp)
60 f.append(step[0])
60 f.append(step[0])
61 mod.append(step[1])
61 mod.append(step[1])
62 arg.append(step[2])
62 arg.append(step[2])
63 return [f,mod,arg]
63 return [f,mod,arg]
64
64
65
65
66 if __name__ == '__main__':
66 if __name__ == '__main__':
67 print("")
67 print("")
68
68
69
69
70
70
71
71
General Comments 0
You need to be logged in to leave comments. Login now