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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
|
#!/usr/bin/env python3
# vim:tabstop=4 softtabstop=4 shiftwidth=4 textwidth=160 smarttab expandtab colorcolumn=160
#
# Copyright (C) 2021 Daniel Friesel
#
# SPDX-License-Identifier: GPL-2.0-or-later
"""kaxxxxp-viewer - Data Logger and Viewer for KAxxxxP power supplies
DESCRIPTION
kaxxxxp-viewer logs voltage and current readings provided by a KAxxxxP power supply
with serial/USB interface, sold under brands such as Korad or RND Lab.
Measurements can be taken directly (by specifying <measurement duration> in seconds)
or loaded from a logfile using --load <file>. Data can be plotted or aggregated on stdout.
WARNING
The power supply's serial communication protocol is supports both read and write
operations. Communication errors or bugs may cause the power supply to set an
incompatible voltage or current limit, which may result in damaged equipment or
fire. By using this software, you acknowledge that you are aware of these risks
and the following disclaimer.
This software is provided by the copyright holders and contributors "as is" and
any express or implied warranties, including, but not limited to, the implied
warranties of merchantability and fitness for a particular purpose are
disclaimed. In no event shall the copyright holder or contributors be liable
for any direct, indirect, incidental, special, exemplary, or consequential
damages (including, but not limited to, procurement of substitute goods or
services; loss of use, data, or profits; or business interruption) however
caused and on any theory of liability, whether in contract, strict liability,
or tort (including negligence or otherwise) arising in any way out of the use
of this software, even if advised of the possibility of such damage.
OPTIONS
"""
import argparse
import numpy as np
import serial
import serial.threaded
import signal
import sys
import tempfile
import time
terminate_measurement = False
def running_mean(x: np.ndarray, N: int) -> np.ndarray:
"""
Compute `N` elements wide running average over `x`.
:param x: 1-Dimensional NumPy array
:param N: how many items to average. Should be even for optimal results.
"""
# to ensure that output.shape == input.shape, we need to insert data
# at the boundaries
boundary_array = np.insert(x, 0, np.full((N // 2), x[0]))
boundary_array = np.append(boundary_array, np.full((N // 2 + N % 2 - 1), x[-1]))
return np.convolve(boundary_array, np.ones((N,)) / N, mode="valid")
class SerialReader(serial.threaded.Protocol):
def __init__(self):
self.remaining_chars = 0
self.read_complete = False
self.expect_binary = False
self.recv_buf = ""
self.lines = []
def expect(self, num_chars, binary=False):
self.recv_buf = ""
self.remaining_chars = num_chars
self.read_complete = False
self.expect_binary = binary
def __call__(self):
return self
def data_received(self, data):
if self.expect_binary:
self.lines.extend(list(data))
self.remaining_chars -= len(data)
if self.remaining_chars <= 0:
self.read_complete = True
return
try:
str_data = data.decode("UTF-8")
self.recv_buf += str_data
except UnicodeDecodeError:
sys.stderr.write("UART output contains gargabe: {data}\n".format(data=data))
return
self.remaining_chars -= len(str_data)
if self.remaining_chars <= 0:
self.lines.append(self.recv_buf)
self.read_complete = True
def get_expected_line(self):
if len(self.lines):
if self.expect_binary:
ret = self.lines
else:
ret = self.lines[0]
self.lines = list()
return ret
return None
def get_line(self):
if len(self.lines):
ret = self.lines[-1]
self.lines = []
return ret
return None
class KoradStatus:
# The status command is unreliable. Disable OCP/OVP does not reflect in the OCP/OVP bits.
# Or they're the wrong bits altogether.
# <https://sigrok.org/wiki/Korad_KAxxxxP_series> and
# <https://www.eevblog.com/forum/testgear/korad-ka3005p-io-commands/>
# don't agree on how to parse the status byte.
def __init__(self, status_bytes):
status_byte = status_bytes[0]
self.over_current_protection_enabled = bool(status_byte & 0x20)
self.output_enabled = bool(status_byte & 0x40)
self.over_voltage_protection_enabled = bool(status_byte & 0x80)
def __repr__(self):
return f"KoradStatus<ovp={self.over_voltage_protection_enabled}, ocp={self.over_current_protection_enabled}, out={self.output_enabled}>"
class KA320:
def __init__(self, port, channel=1):
self.ser = serial.serial_for_url(port, do_not_open=True)
self.ser.baudrate = 9600
self.ser.parity = "N"
self.ser.rtscts = False
self.ser.xonxoff = False
try:
self.ser.open()
except serial.SerialException as e:
sys.stderr.write(
"Could not open serial port {}: {}\n".format(self.ser.name, e)
)
sys.exit(1)
self.channel = channel
self.reader = SerialReader()
self.worker = serial.threaded.ReaderThread(self.ser, self.reader)
self.worker.start()
def rw(self, cmd, num_chars, exact=False, binary=False):
self.reader.expect(num_chars, binary=binary)
self.ser.write(cmd)
timeout = 20
while not self.reader.read_complete and not timeout == 0:
time.sleep(0.02)
timeout -= 1
if exact:
return self.reader.get_expected_line()
elif self.reader.read_complete:
return self.reader.get_line()
else:
return self.reader.recv_buf
# See <https://sigrok.org/wiki/Korad_KAxxxxP_series> for supported commands
def connect(self):
# Device ID length is unknown
return self.rw(b"*IDN?", 32, exact=False)
def get_status(self):
return KoradStatus(self.rw(b"STATUS?", 1, exact=True, binary=True))
def ovp(self, enable=True):
enable_bit = int(enable)
self.ser.write(f"OVP{enable_bit}".encode())
time.sleep(0.1)
# assert self.get_status().over_voltage_protection_enabled == enable
def ocp(self, enable=True):
enable_bit = int(enable)
self.ser.write(f"OCP{enable_bit}".encode())
time.sleep(0.1)
# assert self.get_status().over_current_protection_enabled == enable
def set_max_voltage(self, max_voltage):
self.ser.write(f"VSET{self.channel:d}:{max_voltage:05.2f}".encode())
time.sleep(0.1)
def set_max_current(self, max_current):
self.ser.write(f"ISET{self.channel:d}:{max_current:05.3f}".encode())
time.sleep(0.1)
def get_max_voltage(self):
return float(self.rw(f"VSET{self.channel:d}?".encode(), 5, True))
def get_max_current(self):
return float(self.rw(f"ISET{self.channel:d}?".encode(), 5, True))
def get_voltage(self):
try:
return float(self.rw(f"VOUT{self.channel:d}?".encode(), 5, True))
except TypeError:
return None
def get_current(self):
try:
return float(self.rw(f"IOUT{self.channel:d}?".encode(), 5, True))
except TypeError:
return None
def set_output(self, enable):
if enable:
self.ser.write(b"OUT1")
else:
self.ser.write(b"OUT0")
time.sleep(0.1)
def disconnect(self):
self.worker.stop()
self.ser.close()
def graceful_exit(sig, frame):
global terminate_measurement
terminate_measurement = True
def measure_data(
port,
filename,
duration,
channel=1,
ocp=False,
ovp=False,
max_voltage=None,
max_current=None,
on_off=False,
):
global terminate_measurement
signal.signal(signal.SIGINT, graceful_exit)
signal.signal(signal.SIGTERM, graceful_exit)
signal.signal(signal.SIGQUIT, graceful_exit)
korad = KA320(port, channel)
start_ts = time.time()
if filename is not None:
output_handle = open(filename, "w+")
else:
output_handle = tempfile.TemporaryFile("w+")
if max_voltage or max_current:
# turn off output before setting current and voltage limits
print("Turning off outputs")
korad.set_output(False)
if max_voltage:
print(f"Setting voltage limit to {max_voltage:5.2f} V")
korad.set_max_voltage(max_voltage)
if max_current:
print(f"Setting current limit to {max_current:5.3f} A")
korad.set_max_current(max_current)
if ovp:
print("Enabling over-voltage protection")
korad.ovp(True)
if ocp:
print("Enabling over-current protection")
korad.ocp(True)
if max_voltage or max_current or on_off:
print("Turning on outputs")
korad.set_output(True)
if duration:
print(f"Logging data for {duration} seconds. Press Ctrl+C to stop early.")
else:
print(f"Starting data acquisition. Press Ctrl+C to stop.")
print("# Device: " + korad.connect(), file=output_handle)
print("# Timestamp Voltage Current", file=output_handle)
while not terminate_measurement:
ts = time.time()
current = korad.get_current()
voltage = korad.get_voltage()
if voltage is not None and current is not None:
print(f"{ts:.3f} {voltage:5.2f} {current:5.3f}", file=output_handle)
elif voltage is not None:
print(f"{ts:.3f} {voltage:5.2f} NaN", file=output_handle)
elif current is not None:
print(f"{ts:.3f} NaN {current:5.3f}", file=output_handle)
else:
print(f"{ts:.3f} NaN NaN", file=output_handle)
time.sleep(0.1)
if duration and ts - start_ts > duration:
terminate_measurement = True
if on_off:
print("Turning off outputs")
korad.set_output(False)
korad.disconnect()
output_handle.seek(0)
output = output_handle.read()
output_handle.close()
return output
def plot_data(data, mode):
import matplotlib.pyplot as plt
if mode == "U":
(datahandle,) = plt.plot(data[:, 0], data[:, 1], "b-", label="U", markersize=1)
(meanhandle,) = plt.plot(
data[:, 0],
running_mean(data[:, 1], 10),
"r-",
label="mean(U, 10)",
markersize=1,
)
plt.legend(handles=[datahandle, meanhandle])
plt.ylabel("Voltage [V]")
elif mode == "I":
(datahandle,) = plt.plot(data[:, 0], data[:, 2], "b-", label="I", markersize=1)
(meanhandle,) = plt.plot(
data[:, 0],
running_mean(data[:, 2], 10),
"r-",
label="mean(I, 10)",
markersize=1,
)
plt.legend(handles=[datahandle, meanhandle])
plt.ylabel("Current [A]")
elif mode == "P":
(datahandle,) = plt.plot(
data[:, 0], data[:, 1] * data[:, 2], "b-", label="P", markersize=1
)
(meanhandle,) = plt.plot(
data[:, 0],
running_mean(data[:, 1] * data[:, 2], 10),
"r-",
label="mean(P, 10)",
markersize=1,
)
plt.legend(handles=[datahandle, meanhandle])
plt.ylabel("Power [W]")
plt.show()
def parse_data(log_data, skip=None, limit=None):
lines = log_data.split("\n")
data_count = sum(map(lambda x: len(x) > 0 and x[0] != "#", lines))
data_lines = filter(lambda x: len(x) > 0 and x[0] != "#", lines)
data = np.empty((data_count, 3))
skip_index = 0
limit_index = data_count
for i, line in enumerate(data_lines):
fields = line.split()
if len(fields) == 3:
timestamp, voltage, current = map(float, fields)
else:
raise RuntimeError('cannot parse line "{}"'.format(line))
if i == 0:
first_timestamp = timestamp
timestamp = timestamp - first_timestamp
if skip is not None and timestamp < skip:
skip_index = i + 1
continue
if limit is not None and timestamp > limit:
limit_index = i - 1
break
data[i] = [timestamp, voltage, current]
data = data[skip_index:limit_index]
return data
def main():
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter, description=__doc__
)
parser.add_argument("--load", metavar="FILE", type=str, help="Load data from FILE")
parser.add_argument(
"--port",
metavar="PORT",
type=str,
default="/dev/ttyACM0",
help="Set PSU serial port",
)
parser.add_argument("--channel", type=int, default=1, help="Measurement Channel")
parser.add_argument(
"--over-current-protection",
"--ocp",
action="store_true",
help="Enable over-current protection",
)
parser.add_argument(
"--over-voltage-protection",
"--ovp",
action="store_true",
help="Enable over-voltage protection",
)
parser.add_argument(
"--voltage-limit",
type=float,
help="Set voltage limit",
)
parser.add_argument(
"--current-limit",
type=float,
help="Set current limit",
)
parser.add_argument(
"--on-off",
action="store_true",
help="Enable output after starting the measurement; disable it after stopping it",
)
parser.add_argument(
"--save", metavar="FILE", type=str, help="Save measurement data in FILE"
)
parser.add_argument(
"--skip",
metavar="N",
type=float,
default=0,
help="Skip the first N seconds of data. This is useful to avoid startup code influencing the results of a long-running measurement",
)
parser.add_argument(
"--limit",
type=float,
metavar="N",
help="Limit analysis to the first N seconds of data",
)
parser.add_argument(
"--plot",
metavar="UNIT",
choices=["U", "I", "P"],
help="Plot voltage / current / power over time",
)
parser.add_argument(
"duration", type=int, nargs="?", help="Measurement duration in seconds"
)
args = parser.parse_args()
if args.load is None and args.duration is None:
print("Either --load or duration must be specified", file=sys.stderr)
sys.exit(1)
if args.load:
if args.load.endswith(".xz"):
import lzma
with lzma.open(args.load, "rt") as f:
log_data = f.read()
else:
with open(args.load, "r") as f:
log_data = f.read()
else:
log_data = measure_data(
args.port,
args.save,
args.duration,
channel=args.channel,
ocp=args.over_current_protection,
ovp=args.over_voltage_protection,
max_voltage=args.voltage_limit,
max_current=args.current_limit,
on_off=args.on_off,
)
data = parse_data(log_data, skip=args.skip, limit=args.limit)
if args.plot:
plot_data(data, args.plot)
if __name__ == "__main__":
main()
|