-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsu.py
400 lines (350 loc) · 9.88 KB
/
psu.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
import pyvisa
from utils import timestamp
class PowerSupply:
"""
Partial wrapper for the low-level interface for a SCPI-controlled power supply, with multiple channels.
FIXME: create a basic class, inherited from all the actual instruments?
Attributes
----------
channels: int
number of channels of the power-supply unit
instr_string: str
string containing the USB name or IP address of the instrument
usb: bool
'1': instrument connected with USB, '0': instrument connected with IP address
resource: Resource
handle to the instrument, when connection open; None otherwise
logger: file
handle of the file log
"""
def __init__(self, instr_string: str, usb: bool, ch: int= 4, timestr: str= ''):
"""
Parameters
----------
instr_string: str
string containing the USB name or IP address of the instrument
usb: bool
'1': instrument connected with USB, '0': instrument connected with IP address
ch: int, optional
number of channels of the power-supply unit; default: 4
timestr: str, optional
Timestamp to append to the log file; default: ''
"""
self.channels = ch
self.instr_string = instr_string
self.usb = usb
self.resource = None
self.logger = open('log/psu_tc_'+ str(ch) + 'ch_' + timestr + '.txt', 'w')
self.connect()
def __del__(self):
self.disconnect()
self.logger.close()
def connect(self):
"""
Connect to instrument
Raises
------
pyvisa.errors.VisaIOError
Failed the connection to the instrument
Re-raise other exceptions
"""
try:
rm = pyvisa.ResourceManager()
if not self.usb:
self.resource = rm.open_resource(f"TCPIP::{self.instr_string}::INSTR")
else:
self.resource = rm.open_resource(f"{self.instr_string}") # FIXME: not sure this is the right syntax when using USB
print(f"Connected to power supply at {self.instr_string}")
self.log(f"Connected to TCPIP::{self.instr_string}::INSTR")
except pyvisa.errors.VisaIOError as e:
print(f"Failed to connect to power supply: {e}")
self.resource = None
raise e
def disconnect(self):
"""
Safely disconnect from instrument
Raises
------
pyvisa.errors.VisaIOError
Instrument already disconnected
"""
if self.resource:
self.resource.close()
self.resource = None
print("Disconnected from power supply")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def close(self):
"""
Disconnect from the instrument after stopping query in progress (if any)
"""
self.disconnect()
def idn(self):
"""
Return the identity string of the instrument
Returns
-------
str
Identification string of the instrument
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
return self.resource.query("*IDN?")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def set_voltage(self, ch:int, voltage:float):
"""
Set voltage of a single channel
Parameters
----------
ch : int
Addressed channel
voltage : float
Voltage value to set
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
self.resource.write(f"VOLT {voltage}")
#self.log(f'INST:SEL {ch} VOLT {voltage}')
self.log(f'INST OUT{ch} VOLT {voltage}')
print(f"Set voltage to {voltage} V for channel {ch}")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def set_current(self, ch: int, current: float):
"""
Set current of a single channel
Parameters
----------
ch : int
Addressed channel
current : float
Current value to set
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
self.resource.write(f"CURR {current}")
#self.log(f'INST:SEL {ch} CURR {current}')
self.log(f'INST OUT{ch} CURR {current}')
print(f"Set current to {current} A")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def output_on(self, ch:int):
"""
Enable the output of a single channel
Parameters
----------
ch : int
Addressed channel
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
self.resource.write("OUTP ON")
#self.log(f'INST:SEL {ch} OUTP ON')
self.log(f'INST OUT{ch} OUTP ON')
print("Output turned ON")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def output_off(self, ch:int):
"""
Disable the output of a single channel
Parameters
----------
ch : int
Addressed channel
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
self.resource.write("OUTP OFF")
#self.log(f'INST:SEL {ch} OUTP OFF')
self.log(f'INST OUT{ch} OUTP OFF')
print("Output turned OFF")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def output_all_on(self):
"""
Enable the output of all the channels
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
for ch in range(1, self.channels+1):
self.set_voltage(ch, 0)
self.output_on(ch)
print("All Channels Output ON")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def output_all_off(self):
"""
Disable the output of all the channels
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
for ch in range(1, self.channels+1):
self.output_off(ch)
print("All Channels Output OFF")
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def get_current(self, ch: int):
"""
Read current value of a single channel
Parameters
----------
ch : int
Addressed channel
Returns
-------
float
Measured current
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
#self.log(f'INST:SEL {ch} query(:meas:curr?)')
self.log(f'INST OUT{ch} query(MEAS:CURR?)')
return float(self.resource.query("MEAS:CURR?"))
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def get_voltage(self, ch:int):
"""
Read voltage value of a single channel
Parameters
----------
ch : int
Addressed channel
Returns
-------
float
Measured voltage
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
voltage = self.resource.query("MEAS:VOLT?")
#self.log(f'INST:SEL {ch} query(MEAS:VOLT?)')
self.log(f'INST OUT{ch} query(MEAS:VOLT?)')
return float(voltage)
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def get_power(self, ch):
"""
Read power value of a single channel.
Not all the PSUs support this: if not, use the compute_power function
Parameters
----------
ch : int
Addressed channel
Returns
-------
float
Measured power
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
#self.resource.write(f'INST:SEL {ch}')
self.resource.write(f'INST OUT{ch}')
current = self.resource.query("MEAS:POW?")
#self.log(f'INST:SEL {ch} query(MEAS:POW?)')
self.log(f'INST OUT{ch} query(MEAS:POW?)')
return float(current)
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def compute_power(self, ch):
"""
Compute power value of a single channel from the current and voltage readings
Parameters
----------
ch : int
Addressed channel
Returns
-------
float
Computed power (current x voltage)
Raises
------
pyvisa.errors.VisaIOError
Instrument unavailable or not connected
"""
if self.resource:
curr = self.get_current(ch)
volt = self.get_voltage(ch)
return curr * volt
else:
raise pyvisa.errors.VisaIOError('PSU not connected')
def log(self, txt: str):
"""
Append a time-stamped line to the log
Parameters
----------
txt : str
Line to append after the timestamp
"""
ts = timestamp()
self.logger.write(str(ts)+','+txt+'\n')
self.logger.flush()
def csvHeader(self):
"""
Write the header to the CSV file to match the log lines that will come after
Returns
-------
str
Header string of the CSV file
"""
retStr = ""
for it in range(self.channels):
retStr += (',V'+str(it))
retStr += (',I'+str(it))
retStr += (',P'+str(it))
return retStr
def csvUnits(self):
"""
Define the units of each measurement
Returns
-------
str
String of the units of the measurements, ordered as read from the instrument
"""
unitStr = ''
for it in range(self.channels):
unitStr += (',V')
unitStr += (',A')
unitStr += (',W')
return unitStr