-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGUIfinal.py
More file actions
executable file
·1041 lines (880 loc) · 42 KB
/
Copy pathGUIfinal.py
File metadata and controls
executable file
·1041 lines (880 loc) · 42 KB
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import csv
import sys, os
import time
import datetime as dt
import serial
import numpy as np
from PyQt5.QtCore import Qt, QThread, pyqtSignal, pyqtSlot, QModelIndex, QObject, QTimer
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
import pyqtgraph as pg
from pyqtgraph import PlotWidget, AxisItem, ViewBox
from serial import SerialException
from pathlib import Path
import random
#from mainwindow import Ui_MainWindow
#from AllWindow import Ui_MainWindow
from TabWindow import Ui_MainWindow
from PyQt5.QtSerialPort import QSerialPort, QSerialPortInfo
#https://realpython.com/python-pyqt-qthread/
#https://www.pythonguis.com/tutorials/multithreading-pyqt-applications-qthreadpool/
#timeaxes formatting
class DateAxisItem(AxisItem):
def __init__(self, *args, **kwargs):
AxisItem.__init__(self, *args, **kwargs)
def tickStrings(self, values, scale, spacing):
return [dt.datetime.fromtimestamp(value).strftime("%H:%M:%S\n%Y-%m-%d\n\n") for value in values]
class TimeAxisItem(AxisItem):
def __init__(self, *args, **kwargs):
AxisItem.__init__(self, *args, **kwargs)
def tickStrings(self, values, scale, spacing):
return [dt.datetime.fromtimestamp(value).strftime('%H:%M:%S') for value in values]
#valaxes formatting
class FmtAxisItem(pg.AxisItem):
def tickStrings(self, values, scale, spacing):
return [f' {v:.2f}' for v in values]
#Humidity Atlas EZO-HUM (provides humidity and temperature)
class Hum_Worker(QThread):
#add abshum conversion now 4 floats emit
result = pyqtSignal(str, float, float, float, float)
def __init__(self, port, interval, baud):
super().__init__()
self.ser2 = None
self.interval = interval
self.port = port
self.baud = baud
self.is_running2 = True
self.sensor_string = ""
self.sensor_string_complete = False
self.last_emit_time = dt.datetime.now()
self.latest_reading = None
#debugging incomplete reading that occurs every 12 readings
def run(self):
try:
# device defaults are: 9,600 baud, 8 data bits, 1 stop bit, no parity, no flow control
# Serial() timeout is in seconds
self.ser2 = serial.Serial(self.port, self.baud, parity='N', stopbits=1, bytesize=8, timeout=10000)
# FIXME: switch from continuous mode (default) to single-reading mode?
self.ser2.write(b'O,HUM,1\r\n') # enable humidity
self.ser2.write(b'O,T,1\r\n') # enable temperature
self.ser2.write(b'O,Dew,1\r\n') # enable dewpoint
while self.is_running2:
now_time = dt.datetime.now()
timestamp = str(now_time.strftime('%Y%m%dT%H%M%S.%f')[:-3])
#continue readings (data comes in every 1 s)
if self.ser2.in_waiting > 0:
inchar = self.ser2.read().decode('utf-8')
self.sensor_string += inchar
if inchar == '\r': # FIXME: may be problematic if read() gives >1 byte...
self.sensor_string_complete = True
if self.sensor_string_complete:
#print(self.sensor_string)
parts = self.sensor_string.split(",")
if len(parts) == 4:
HUM = float(parts[0].strip()) # FIXME: add protection here (try/except)
TMP = float(parts[1].strip())
DEW = float(parts[3].strip())
#add abshum conversion
absHUM = (6.112*np.exp((17.67*TMP)/(TMP+243.5))*HUM*2.1674)/(273.15+TMP)
self.latest_reading = (HUM, TMP, DEW, absHUM)
# Can't calculate water vapor content in PPM without pressure reading...
# or can we...? can you get water vapor in ppm from RH, Temperature and Dew Point?!?
if not self.sensor_string[0].isdigit(): # FIXME: ???
print(timestamp, self.sensor_string)
self.sensor_string = ""
self.sensor_string_complete = False
#only emit data to log file based on our interval input
if now_time - self.last_emit_time >= dt.timedelta(seconds=self.interval):
if self.latest_reading:
self.result.emit(timestamp, *self.latest_reading)
# FIXME: should we set self.latest_reading=None now?
else:
self.result.emit(timestamp, np.nan, np.nan, np.nan, np.nan)
self.last_emit_time = now_time
except serial.SerialException as e:
print(f"Serial error: {e}")
finally:
if self.ser2:
self.ser2.close()
def stop(self):
self.is_running2 = False
if self.ser2:
self.ser2.close()
self.quit()
self.wait()
# temperature: Omega OM-HL-EH-TC 8-channel thermocouple data logger
class Temp_Worker(QThread):
result = pyqtSignal(str, tuple)
def __init__(self, port, interval, baud):
super().__init__()
self.ser = None
self.is_running = True
self.port = port
self.interval = interval
self.baud = baud
self.READ_BIT_INHEX = 74
self.READ_BIT = 37
self.MAX_TEMP = 18000 #1800C to determine negative val
#self.ser = serial.Serial(self.port, self.baud, timeout=10000)
#print("Starting Serial")
def run(self):
try:
self.ser = serial.Serial(self.port, self.baud, timeout=10000)
hex_data = [0x01, 0x16, 0x7B, 0x28, 0x48, 0x4C, 0x45, 0x48, 0x54, 0x43, 0x34, 0x30, 0x39, 0x35, 0x67, 0x71, 0x29, 0x7D, 0x7E, 0x04]
byte_data = bytearray(hex_data)
while self.is_running:
write_time1 = dt.datetime.now()
interval_dt = dt.timedelta(seconds = self.interval)
write_time2 = write_time1 + interval_dt
while dt.datetime.now() <= write_time2:
pass
self.ser.write(byte_data)
time.sleep(0.1)
if self.ser.in_waiting:
response = self.ser.read(self.READ_BIT)
if response:
temperatures = parse_temp(self,response)
now_time = dt.datetime.now()
current_time = str(now_time.strftime('%Y%m%dT%H%M%S.%f')[:-3])
print(f"Temperature = {current_time}: {temperatures}")
self.result.emit(current_time, temperatures)
else:
print("No response")
except serial.SerialException as e:
print(f"Serial error: {e}")
#to-do: add close, reopen serial port
#self.ser.close()
#self.ser = serial.Serial(self.port, self.baud, timeout=10000)
#run(self) #resumes the run loop after reopening port, not sure if this will work, need to test!
finally:
if self.ser:
self.ser.close()
"""
#for test w/o serial
def run(self):
while self.is_running:
temperatures = test_temp()
current_time = str(dt.datetime.now().strftime('%Y%m%dT%H%M%S.%f'))
print(f"Time: {current_time}, Temperatures: {temperatures}")
self.result.emit(current_time, temperatures)
time.sleep(5)
"""
def stop(self):
self.is_running = False
if self.ser:
self.ser.close()
self.quit()
self.wait()
#pressure Atlas EZO-PRS
class Pressure_Worker(QThread):
result = pyqtSignal(str, float, float)
def __init__(self, port, interval, baud):
super().__init__()
self.ser3 = None
self.interval = interval
self.port = port
self.baud = baud
self.is_running3 = True
self.sensor_string = ""
self.sensor_string_complete = False
self.last_emit_time = dt.datetime.now()
self.latest_reading = None
self.ATM_P_bar = 1.01325 #bar
def run(self):
try:
# device defaults are: 9,600 baud, 8 data bits, 1 stop bit, no parity, no flow control
# Serial() timeout is in seconds
self.ser3 = serial.Serial(self.port, self.baud, parity='N', stopbits=1, bytesize=8, timeout=10000)
# FIXME: switch from continuous mode (default) to single-reading mode?
self.ser3.write(b'U,psi\r\n') #set unit to psi (default)
self.ser3.write(b'U,?\r\n') #what is the current unit
#self.ser3.write(b'Cal,0\r\n') #low point calibration in psi, uncomment to get 760 Torr at normal condition (sensor detached from vacuum system)
self.ser3.write(b'Cal,clear\r\n') #uncomment to clear calibration to factory setting
while self.is_running3:
now_time = dt.datetime.now()
timestamp = str(now_time.strftime('%Y%m%dT%H%M%S.%f')[:-3])
#continue readings (data comes in every 1 s)
if self.ser3.in_waiting > 0:
inchar = self.ser3.read().decode('utf-8')
self.sensor_string += inchar
if inchar == '\r':
self.sensor_string_complete = True
if self.sensor_string_complete:
Pressure_psi = self.sensor_string.strip()
if self.sensor_string[0].isdigit():
#conver gauge pressure to absolute pressure
Pressure_bar = float(Pressure_psi)*0.06894757 #convert psi to bar
# FIXME: this assumes room pressure is 1 atm...
self.latest_reading = (Pressure_bar+self.ATM_P_bar)*750.061683 #convert to Torr
else:
print(self.sensor_string)
#if not self.sensor_string[0].isdigit():
# print(timestamp, self.sensor_string)
#self.latest_reading = ""
self.sensor_string = ""
self.sensor_string_complete = False
if now_time - self.last_emit_time >= dt.timedelta(seconds=self.interval):
if self.latest_reading:
self.result.emit(timestamp, float(Pressure_psi), self.latest_reading)
#print(timestamp, self.latest_reading)
else:
self.result.emit(timestamp, np.nan, np.nan)
self.last_emit_time = now_time
except serial.SerialException as e:
print(f"Serial error: {e}")
finally:
if self.ser3:
self.ser3.close()
def stop(self):
self.is_running3 = False
if self.ser3:
self.ser3.close()
self.quit()
self.wait()
#temp conversion from hexadecimal
def hex_dec(self, T_hex):
try:
T_val = int(T_hex, 16)
T_max = self.MAX_TEMP
hex_max = 0xFFFF
if T_val > T_max:
T = -(hex_max - T_val + 1) / 10
else:
T = T_val / 10
return T
except ValueError:
return 'err'
#for test w/o serial
def test_temp():
temperatures = []
for i in range(8):
temperatures.append(random.randint(500, 4000))
return tuple(temperatures)
def parse_temp(self, response):
response_hex = response.hex()
if len(response_hex) < self.READ_BIT_INHEX:
return tuple('err' for _ in range(8))
temperatures = []
for i in range(8):
hex_str = response_hex[34 + i*4:36 + i*4] + response_hex[32 + i*4:34 + i*4]
temperatures.append(hex_dec(self,hex_str))
return tuple(temperatures)
def wv_PPM(RH, tC, Ptot):
# compute the water vapor content in parts per million
# RH: relative humidity in percent
# tC: temperature in celsius
# Ptot: total pressure in Pa
# RH*p_wsat gives the water vapor partial pressure
val = (RH*0.01)*p_wsat_huang_2018(tC)/Ptot # water vapor content
return val*1e6 # ppm
def p_wsat_huang_2018(tC):
# calculate saturation water vapor pressure for a given temperature
# tC: temperature in celsius
# returns: saturation vapor pressure in Pascals [Pa]
#
# from Huang, 2018
# A Simple Accurate Formula for Calculating Saturation Vapor Pressure of Water and Ice
# Jianhua Huang
# Journal of Applied Meteorology and Climatology, June 2018, Vol. 57, No. 6
# (June 2018), pp. 1265-1272
# Published by: American Meteorological Society
# Stable URL: https://www.jstor.org/stable/10.2307/26500764
# https://www.jstor.org/stable/26500764?seq=4
# FIXME: modify to be able to handle arrays where some elements have tC < 0 and others > 0
if tC > 0:
pws = np.exp(34.494 - 4924.99/(tC+237.1)) / np.power(tC+105, 1.57)
else:
pws = np.exp(43.494 - 6545.8/(tC+278)) / np.power(tC+868, 2)
return pws
#to store pressure data
class PressureModel(QObject):
dataChanged = pyqtSignal()
def __init__(self, parent=None):
super(PressureModel, self).__init__(parent)
self.Press_time = []
self.Press_raw = []
self.Press_data = []
def lenData(self, parent=QModelIndex()):
return len(self.Press_data)
def appendData(self, time, press_psi, press_torr):
self.Press_time.append(time)
self.Press_raw.append(press_psi)
self.Press_data.append(press_torr)
self.dataChanged.emit()
def clearData(self):
self.Press_time = []
self.Press_raw = []
self.Press_data = []
self.dataChanged.emit()
def getData(self):
return self.Press_time, self.Press_raw, self.Press_data
def reset(self):
self.Press_time = []
self.Press_raw = []
self.Press_data = []
return None
#to store tempdata
class TemperatureModel(QObject):
dataChanged = pyqtSignal()
def __init__(self, parent=None):
super(TemperatureModel, self).__init__(parent)
self.time = []
self.data = [[] for _ in range(8)]
def lenData(self, parent=QModelIndex()):
return len(self.time)
def appendData(self, time, temps):
self.time.append(time)
for i in range(8):
self.data[i].append(temps[i])
#self.data.append(temps)
self.dataChanged.emit()
def clearData(self):
self.time = []
self.data = [[] for _ in range(8)]
self.dataChanged.emit()
def getData(self):
return self.time, self.data
def reset(self):
self.time = []
self.data = [[] for _ in range(8)]
return None
#to store humidity data
class HumidityModel(QObject):
dataChanged = pyqtSignal()
def __init__(self, parent=None):
super(HumidityModel, self).__init__(parent)
self.HUM_time = []
self.RH_val = []
self.TMP_val = []
self.AH_val = []
self.DEW_val = []
self.PPM_val = []
def lenData(self, parent=QModelIndex()):
return len(self.data)
#add abshum
def appendData(self, time, hum, tmp, dew, abshum, ppm):
self.HUM_time.append(time)
self.RH_val.append(hum)
self.TMP_val.append(tmp)
self.DEW_val.append(dew)
self.AH_val.append(abshum)
# FIXME: these are flipped!
#self.AH_val.append(dew)
#self.DEW_val.append(abshum)
self.PPM_val.append(ppm)
#self.data.append((time, hum, tmp, dew, abshum))
self.dataChanged.emit()
def getData(self):
return self.HUM_time, self.RH_val,self.TMP_val, self.AH_val,self.DEW_val,self.PPM_val
def clearData(self):
self.HUM_time = []
self.RH_val = []
self.TMP_val = []
self.AH_val = []
self.DEW_val = []
self.PPM_val = []
#self.data = []
self.dataChanged.emit()
def reset(self): # FIXME: why both reset() and clearData()?
self.HUM_time = []
self.RH_val = []
self.TMP_val = []
self.AH_val = []
self.DEW_val = []
self.PPM_val = []
#self.data = []
return None
class MainWindow(QMainWindow):
def __init__(self):
super(MainWindow, self).__init__()
self.setWindowIcon(QIcon('logo.png'))
self.worker1 = None
self.worker2 = None
self.worker3 = None
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
#connect buttons to actions
#self.ui.startStopButton.pressed.connect(self.toggleRun)
self.ui.startStopButton.setCheckable(True)
self.ui.startStopButton.clicked.connect(self.toggleRun)
self.ui.startStopButton_2.setCheckable(True)
self.ui.startStopButton_2.clicked.connect(self.togglePressure)
self.ui.clearButton.pressed.connect(self.clearPlot)
self.ui.HumclearButton.pressed.connect(self.HumclearPlot)
self.ui.PressclearButton.pressed.connect(self.PresclearPlot)
self.ui.TempLogButton.pressed.connect(self.TempstartLogging)
self.ui.HumLogButton.pressed.connect(self.HumstartLogging)
self.ui.PressLogButton.setCheckable(True)
self.ui.PressLogButton.pressed.connect(self.PressstartLogging)
self.ui.LogBothButton.setCheckable(True)
self.ui.LogBothButton.clicked.connect(self.BothstartLogging)
self.ui.refreshButton_2.pressed.connect(self.refreshSerialPorts)
self.ui.refreshButton.pressed.connect(self.refreshSerialPorts)
self.ui.saveDirectoryButton.pressed.connect(self.chooseSaveDirectory)
self.ui.HumsaveDirectoryButton.pressed.connect(self.chooseHumSaveDirectory)
self.ui.PresssaveDirectoryButton.pressed.connect(self.choosePressSaveDirectory)
# FIXME: should make this change in the UI generator, not here.... (Designer)
self.ui.Humlabel4.setText(f"PPM:")
self.temperature_model = TemperatureModel()
self.humidity_model = HumidityModel()
self.pressure_model = PressureModel()
self.initGraph()
self.filename = None
self.Humfilename = None
self.Pressfilename = None
self.serialPort = None
self.serialPort2 = None
self.serialPort3 = None
self.saveDirectory = None
self.HumsaveDirectory = None
self.PresssaveDirectory = None
self.interval = 2 #2 sec default
self.baud = 38400 #38400 default
def initFile(self):
now = dt.datetime.now()
self.filename = "temp_log_" + str(now.strftime('%Y%m%dT%H%M%S')) + ".csv"
try:
with open(f"{self.saveDirectory}/{self.filename}", 'w', newline='') as file:
writer = csv.writer(file)
writer.writerow(['Time', 'T1', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7', 'T8'])
except Exception as e:
print(f"Error opening file: {e}")
def HuminitFile(self):
now = dt.datetime.now()
self.Humfilename = "hum_log_" + str(now.strftime('%Y%m%dT%H%M%S')) + ".csv"
try:
with open(f"{self.HumsaveDirectory}/{self.Humfilename}", 'w', newline='') as file:
writer = csv.writer(file)
writer.writerow(['Time', 'HUM', 'TMP', 'DEW', 'absHUM'])
except Exception as e:
print(f"Error opening file: {e}")
def PressinitFile(self):
now = dt.datetime.now()
self.Pressfilename = "press_log_" + str(now.strftime('%Y%m%dT%H%M%S')) + ".csv"
try:
with open(f"{self.PresssaveDirectory}/{self.Pressfilename}", 'w', newline='') as file:
writer = csv.writer(file)
writer.writerow(['Time', 'Pressure Reading (psi)', 'Pressure (Torr)'])
except Exception as e:
print(f"Error opening file: {e}")
def initGraph(self):
#PLOT 1
#TempPlot = self.ui.TempPlotWidget
self.ui.TempPlotWidget.setBackground("w")
styles = {"color": "black", "font-size": "18px"}
self.ui.TempPlotWidget.setLabel("left", "Temperature (°C)", **styles)
self.ui.TempPlotWidget.setLabel("bottom", "Time", **styles)
self.ui.TempPlotWidget.getAxis('bottom').setStyle(tickTextOffset=10)
self.ui.TempPlotWidget.setAxisItems({'bottom': DateAxisItem(orientation='bottom')})
self.ui.TempPlotWidget.showGrid(x=True, y=True, alpha=0.4)
"""
self.time = []
self.data = [[] for _ in range(8)]
"""
self.plotLines = []
self.colors = [(183, 101, 224), (93, 131, 212), (49, 205, 222), (36, 214, 75), (214, 125, 36), (230, 78, 192), (209, 84, 65), (0, 184, 245)]
"""
for i in range(8):
plot_line = self.ui.TempPlotWidget.plot(self.time, self.data[i], pen=pg.mkPen(color=self.colors[i], width=2))
self.plotLines.append(plot_line)
"""
for i in range(8):
plot_line = self.ui.TempPlotWidget.plot([], [], pen=pg.mkPen(color=self.colors[i], width=2))
self.plotLines.append(plot_line)
#PLOT 2
#graphic layout for multi-axes plot (HUM, TMP, DEW)
self.ui.graphics_layout.setBackground("w")
self.hum_plot = self.ui.graphics_layout.addPlot(row=0, col=0)
self.tmp_plot = self.ui.graphics_layout.addPlot(row=1, col=0)
self.dew_plot = self.ui.graphics_layout.addPlot(row=2, col=0)
self.dew_plot.setLabel('bottom', 'Time', **styles)
self.hum_plot.getAxis('bottom').setStyle(tickTextOffset=10)
self.tmp_plot.getAxis('bottom').setStyle(tickTextOffset=10)
self.dew_plot.getAxis('bottom').setStyle(tickTextOffset=10)
self.hum_plot.setAxisItems({'bottom': TimeAxisItem(orientation='bottom')})
self.tmp_plot.setAxisItems({'bottom': TimeAxisItem(orientation='bottom')})
self.dew_plot.setAxisItems({'bottom': DateAxisItem(orientation='bottom')})
self.hum_plot.setAxisItems({'left': FmtAxisItem(orientation='left')})
self.tmp_plot.setAxisItems({'left': FmtAxisItem(orientation='left')})
self.dew_plot.setAxisItems({'left': FmtAxisItem(orientation='left')})
self.hum_plot.setLabel('left', text='<span style="color: #be1111;">RH(%)</span>')
self.tmp_plot.setLabel('left', text='<span style="color: #00b8f5;">TMP(°C)</span>')
self.dew_plot.setLabel('left',text='<span style="color: #000000;">DEW(°C)</span>')
"""
self.hum_time = []
self.hum_data = {'HUM': [], 'TMP': [], 'DEW': [], 'absHUM': []}
self.hum_plotLines = {}
self.hum_plotLines['HUM'] = self.hum_plot.plot(self.hum_time, self.hum_data['HUM'], pen=pg.mkPen(color=(190, 17, 17), width=2), name='HUM')
self.hum_plotLines['TMP'] = self.tmp_plot.plot(self.hum_time, self.hum_data['TMP'], pen=pg.mkPen(color=(0, 184, 245), width=2), name='TMP')
self.hum_plotLines['DEW'] = self.dew_plot.plot(self.hum_time, self.hum_data['DEW'], pen=pg.mkPen(color=(0,0,0), width=2), name='DEW')
"""
self.hum_plotLines = {}
self.hum_plotLines['HUM'] = self.hum_plot.plot([],[], pen=pg.mkPen(color=(190, 17, 17), width=2), name='HUM')
self.hum_plotLines['TMP'] = self.tmp_plot.plot([],[], pen=pg.mkPen(color=(0, 184, 245), width=2), name='TMP')
self.hum_plotLines['DEW'] = self.dew_plot.plot([],[], pen=pg.mkPen(color=(0,0,0), width=2), name='DEW')
#PLOT 3
self.ui.HumPlotWidget2.setBackground("w")
self.temp_viewbox = pg.ViewBox()
self.ui.HumPlotWidget2.plotItem.showAxis('right')
self.ui.HumPlotWidget2.plotItem.scene().addItem(self.temp_viewbox)
self.ui.HumPlotWidget2.plotItem.getViewBox().sigResized.connect(self.updateViews)
self.ui.HumPlotWidget2.plotItem.getAxis('right').linkToView(self.temp_viewbox)
self.temp_viewbox.setXLink(self.ui.HumPlotWidget2.plotItem)
self.ui.HumPlotWidget2.setLabel('bottom', 'Time', **styles)
self.ui.HumPlotWidget2.getAxis('bottom').setStyle(tickTextOffset=10)
self.ui.HumPlotWidget2.setAxisItems({'bottom': DateAxisItem(orientation='bottom')})
self.ui.HumPlotWidget2.setLabel("left", "Water vapor (ppm)", **{"color": "blue", "font-size": "18px"})
#self.ui.HumPlotWidget2.setLabel("left", "Absolute Humidity (g/m3)", **{"color": "blue", "font-size": "18px"})
#self.hum_plot = self.ui.HumPlotWidget2.plot(self.hum_time, self.hum_data['absHUM'], pen=pg.mkPen(color='b', width=2), name="absHUM")
# FIXME: the name self.hum_plot is already used!!!!!!!!
self.hum_plot = self.ui.HumPlotWidget2.plot([],[], pen=pg.mkPen(color='b', width=2), name="wvPPM")
self.ui.HumPlotWidget2.setLabel("right", "Output Temperature (°C)", **{"color": "red", "font-size": "18px"})
#self.temp_plot = pg.PlotDataItem(self.time, self.data[7], pen=pg.mkPen(color='r', width=2), name="T8")
self.temp_plot = pg.PlotDataItem([], [], pen=pg.mkPen(color='r', width=2), name="T8")
self.temp_viewbox.addItem(self.temp_plot)
#PLOT 4
#Pressure Plot
self.ui.PressPlotWidget.setLabel("left", "Pressure (Torr)", **styles)
self.ui.PressPlotWidget.setLabel("bottom", "Time", **styles)
self.ui.PressPlotWidget.getAxis('bottom').setStyle(tickTextOffset=10)
self.ui.PressPlotWidget.setAxisItems({'bottom': DateAxisItem(orientation='bottom')})
self.ui.PressPlotWidget.showGrid(x=True, y=True, alpha=0.4)
#self.Presstime = []
#self.Pressdata = []
self.PressPlot = self.ui.PressPlotWidget.plot([],[], pen=pg.mkPen(color='blue', width=2))
def updateViews(self):
self.temp_viewbox.setGeometry(self.ui.HumPlotWidget2.getPlotItem().getViewBox().sceneBoundingRect())
self.temp_viewbox.linkedViewChanged(self.ui.HumPlotWidget2.getPlotItem().getViewBox(), self.temp_viewbox.XAxis)
def toggleRun(self):
if self.ui.startStopButton.isChecked():
self.ui.startStopButton.setText("Running")
self.ui.startStopButton.setStyleSheet("QPushButton {background-color: lightgreen}")
self.ui.startStopButton_2.setText("Running")
self.ui.startStopButton_2.setStyleSheet("QPushButton {background-color: lightgreen}")
else:
self.ui.startStopButton.setText("Stopped")
self.ui.startStopButton.setStyleSheet("QPushButton {background-color: lightcoral}")
self.ui.LogBothButton.setText("Logging Stopped")
self.ui.LogBothButton.setStyleSheet("QPushButton {background-color: lightcoral}")
if self.worker1 is not None:
self.stopRun()
else:
self.startRun()
def togglePressure(self):
if self.ui.startStopButton_2.isChecked():
self.ui.startStopButton_2.setText("Running")
self.ui.startStopButton_2.setStyleSheet("QPushButton {background-color: lightgreen}")
else:
self.ui.startStopButton_2.setText("Stopped")
self.ui.startStopButton_2.setStyleSheet("QPushButton {background-color: lightcoral}")
self.ui.PressLogButton.setText("Logging Stopped")
self.ui.PressLogButton.setStyleSheet("QPushButton {background-color: lightcoral}")
if self.worker3 is not None:
self.stopPressure()
else:
self.startPressure()
def startPressure(self):
self.serialPort3 = self.ui.PressPortBox.currentText()
try:
self.interval3 = int(self.ui.intervalInput_2.text())
print(f"Using input interval: {self.interval3} seconds")
except ValueError:
print("Using default interval: 2 seconds")
self.interval3 = 2
self.baud3 = int(self.ui.PressBaudBox.currentText())
print(f"Connected to Pressure Sensor: {self.serialPort3}")
self.worker3 = Pressure_Worker(self.serialPort3, self.interval3, self.baud3)
self.worker3.result.connect(self.Pressupdate)
self.worker3.start()
def stopPressure(self):
if self.worker3:
self.worker3.stop()
self.worker3 = None
print("Stopping Serial 3")
#for log all (Tem,Hum,Pres)
def startRun(self):
self.serialPort = self.ui.TempPortBox.currentText()
self.baud = int(self.ui.TempBaudBox.currentText())
self.serialPort2 = self.ui.HumPortBox.currentText()
self.baud2 = int(self.ui.HumBaudBox.currentText())
self.serialPort3 = self.ui.PressPortBox.currentText()
self.baud3 = int(self.ui.PressBaudBox.currentText())
if 'COM' not in self.serialPort:
self.serialPort = "/dev/" + self.ui.TempPortBox.currentText()
if 'COM' not in self.serialPort2:
self.serialPort2 = "/dev/" + self.ui.HumPortBox.currentText()
print(f"Connected to Tmp: {self.serialPort}")
#print(f"Set Tmp baud rate to: {self.baud}")
print(f"Connected to Hum: {self.serialPort2}")
#print(f"Set Hum baud rate to: {self.baud2}")
if self.serialPort is None:
print(self, "No port selected")
return
try:
self.interval = int(self.ui.intervalInput.text())
self.interval3 = int(self.ui.intervalInput_2.text())
print(f"Using input interval: {self.interval} seconds")
except ValueError:
print("Using default interval: 2 seconds")
self.interval = 2
self.interval3 = 2
try:
self.worker1 = Temp_Worker(self.serialPort, self.interval, self.baud)
self.worker1.result.connect(self.updateTemp)
self.worker1.start()
print("Starting Temp_Worker")
self.worker2 = Hum_Worker(self.serialPort2, self.interval, self.baud2)
self.worker2.result.connect(self.updateHum)
self.worker2.start()
print("Starting Hum_Worker")
self.worker3 = Pressure_Worker(self.serialPort3, self.interval3, self.baud3)
self.worker3.result.connect(self.Pressupdate)
self.worker3.start()
print("Starting Pres_Worker")
except serial.SerialException as e:
print(f"Could not open serial port: {e}")
self.worker1 = None
self.worker2 = None
self.worker3 = None
#def startRunTwo(self):
# self.serialPort = self.ui.TempPortBox.currentText()
# self.baud = int(self.ui.TempBaudBox.currentText())
#
# self.serialPort2 = self.ui.HumPortBox.currentText()
# self.baud2 = int(self.ui.HumBaudBox.currentText())
#
# if 'COM' not in self.serialPort:
# self.serialPort = "/dev/" + self.ui.TempPortBox.currentText()
# if 'COM' not in self.serialPort2:
# self.serialPort2 = "/dev/" + self.ui.HumPortBox.currentText()
#
# print(f"Connected to Tmp: {self.serialPort}")
# #print(f"Set Tmp baud rate to: {self.baud}")
# print(f"Connected to Hum: {self.serialPort2}")
# #print(f"Set Hum baud rate to: {self.baud2}")
#
#
# if self.serialPort is None:
# print(self, "No port selected")
# return
#
# try:
# self.interval = int(self.ui.intervalInput.text())
# print(f"Using input interval: {self.interval} seconds")
# except ValueError:
# print("Using default interval: 2 seconds")
# self.interval = 2
#
# try:
# self.worker1 = Temp_Worker(self.serialPort, self.interval, self.baud)
# self.worker1.result.connect(self.updateTemp)
# self.worker1.start()
# print("Starting Temp_Worker")
#
# self.worker2 = Hum_Worker(self.serialPort2, self.interval, self.baud2)
# self.worker2.result.connect(self.updateHum)
# self.worker2.start()
# print("Starting Hum_Worker")
#
# except serial.SerialException as e:
# print(f"Could not open serial port: {e}")
# self.worker1 = None
def stopRun(self):
if self.worker1:
self.worker1.stop()
self.worker1 = None
print("Stopping Serial 1")
if self.worker2:
self.worker2.stop()
self.worker2 = None
print("Stopping Serial 2")
def clearPlot(self):
self.temperature_model.clearData()
def HumclearPlot(self):
self.humidity_model.clearData()
def PresclearPlot(self):
self.pressure_model.clearData()
#Logging
def TempstartLogging(self):
self.initFile()
self.ui.fileLabel.setText(f"{self.saveDirectory}/{self.filename}")
def HumstartLogging(self):
self.HuminitFile()
self.ui.HumfileLabel.setText(f"{self.HumsaveDirectory}/{self.Humfilename}")
def PressstartLogging(self):
if self.ui.PressLogButton.isChecked():
self.ui.PressLogButton.setText("Logging")
self.ui.PressLogButton.setStyleSheet("QPushButton {background-color: lightgreen}")
else:
self.ui.PressLogButton.setText("Log Pressure")
self.ui.PressLogButton.setStyleSheet("QPushButton {background-color: white}")
self.PressinitFile()
self.ui.PressfileLabel.setText(f"{self.PresssaveDirectory}/{self.Pressfilename}")
def BothstartLogging(self):
if self.ui.LogBothButton.isChecked():
self.ui.LogBothButton.setText("Logging")
self.ui.LogBothButton.setStyleSheet("QPushButton {background-color: lightgreen}")
self.ui.HumLogButton.setStyleSheet("QPushButton {background-color: darkGray}")
self.ui.TempLogButton.setStyleSheet("QPushButton {background-color: darkGray}")
self.ui.PressLogButton.setStyleSheet("QPushButton {background-color: darkGray}")
else:
self.ui.LogBothButton.setText("Log Both")
self.ui.LogBothButton.setStyleSheet("QPushButton {background-color: white}")
self.ui.HumLogButton.setStyleSheet("QPushButton {background-color: white}")
self.ui.TempLogButton.setStyleSheet("QPushButton {background-color: white}")
self.ui.PressLogButton.setStyleSheet("QPushButton {background-color: white}")
self.initFile()
self.ui.fileLabel.setText(f"{self.saveDirectory}/{self.filename}")
self.HuminitFile()
self.ui.HumfileLabel.setText(f"{self.HumsaveDirectory}/{self.Humfilename}")
self.PressinitFile()
self.ui.PressfileLabel.setText(f"{self.PresssaveDirectory}/{self.Pressfilename}")
def refreshSerialPorts(self):
self.ui.TempPortBox.clear()
self.ui.HumPortBox.clear()
self.ui.PressPortBox.clear()
ports = QSerialPortInfo.availablePorts()
for port in ports:
self.ui.TempPortBox.addItem(port.portName())
self.ui.HumPortBox.addItem(port.portName())
self.ui.PressPortBox.addItem(port.portName())
def chooseSaveDirectory(self):
self.saveDirectory = QFileDialog.getExistingDirectory(self, "Save Directory")
if self.saveDirectory:
self.ui.fileLabel.setText(f"{self.saveDirectory}")
def chooseHumSaveDirectory(self):
self.HumsaveDirectory = QFileDialog.getExistingDirectory(self, "Save Directory")
if self.HumsaveDirectory:
self.ui.HumfileLabel.setText(f"{self.HumsaveDirectory}")
def choosePressSaveDirectory(self):
self.PresssaveDirectory = QFileDialog.getExistingDirectory(self, "Save Directory")
if self.PresssaveDirectory:
self.ui.PressfileLabel.setText(f"{self.PresssaveDirectory}")
#TEMP slot
@pyqtSlot(str, tuple)
def updateTemp(self, current_time, temperatures):
for i in range(8):
if temperatures[i] != 'err':
self.ui.labels[i].setText(f"T{i + 1}: {temperatures[i]:.1f}")
else:
self.ui.labels[i].setText(f"T{i + 1}: err")
"""
active_ch = tuple(temperatures[i] if self.ui.checkboxes[i].isChecked() else np.nan for i in range(8))
formattime = dt.datetime.strptime(current_time, '%Y%m%dT%H%M%S.%f').timestamp()
self.time.append(formattime)
for i in range(8):
self.data[i].append(temperatures[i])
if self.ui.checkboxes[i].isChecked():
self.plotLines[i].setData(self.time, self.data[i])
self.temp_plot.setData(self.time, self.data[7])
"""
#using the model
formattime = dt.datetime.strptime(current_time, '%Y%m%dT%H%M%S.%f').timestamp()
self.temperature_model.appendData(formattime, temperatures)
Temp_time, Temp_data = self.temperature_model.getData()
#print(temperatures)
for i in range(8):
if self.ui.checkboxes[i].isChecked():
self.plotLines[i].setData(Temp_time, Temp_data[i])
self.temp_plot.setData(Temp_time, Temp_data[7])
if self.filename:
self.LogData(current_time, temperatures)
def LogData(self, timestamp, temperatures):
try:
with open(f"{self.saveDirectory}/{self.filename}", 'a', newline='') as file:
writer = csv.writer(file)
writer.writerow([timestamp] + list(temperatures))
file.flush()
except Exception as e:
print(f"Error writing to file: {e}")
#HUMIDITY SLOT
@pyqtSlot(str, float, float, float, float)
def updateHum(self, timestamp, HUM, TMP, DEW, absHUM):
# compute water vapor content in ppm from RH, Temperature and pressure
_, __, pressuresTorr = self.pressure_model.getData()
if len(pressuresTorr) > 0:
Ptot = pressuresTorr[-1]*133.322368 # convert torr to Pascals
else:
print('no pressures...')
Ptot = 101325.0 # Pascals (dummy value... no measured data yet...)
PPM = wv_PPM(HUM, TMP, Ptot)
#print(f"Humudity = {timestamp}: RH: {HUM}, TMP: {TMP}, DEW: {DEW}, AH: {absHUM:.2f}")
print(f"Humidity = {timestamp}: RH: {HUM}, TMP: {TMP}, DEW: {DEW}, AH: {absHUM:.2f}")
print(f" wv_PPM: {PPM}")
self.ui.Humlabel1.setText(f"RH: {HUM:.2f}")
self.ui.Humlabel2.setText(f"Tmp: {TMP:.2f}")
self.ui.Humlabel3.setText(f"Dew: {DEW:.2f}")
#self.ui.Humlabel4.setText(f"AH: {absHUM:.2f}")
self.ui.Humlabel4.setText(f"PPM: {PPM:.1f}") # FIXME: use integer
formattime = dt.datetime.strptime(timestamp, '%Y%m%dT%H%M%S.%f').timestamp()
self.humidity_model.appendData(formattime, HUM, TMP, DEW, absHUM, PPM)
# FIXME: just append a single data point to the plots rather than getting
# all data every time?
HUM_time, RH_val,TMP_val,AH_val,DEW_val, PPM_val = self.humidity_model.getData()
self.hum_plotLines['HUM'].setData(HUM_time, RH_val)
self.hum_plotLines['TMP'].setData(HUM_time, TMP_val)
self.hum_plotLines['DEW'].setData(HUM_time, DEW_val)
#self.hum_plotLines['ABSHUM'].setData(HUM_time, AH_val)
#self.hum_plot.setData(HUM_time, AH_val)
# plot water vapor content in ppm
self.hum_plot.setData(HUM_time, PPM_val)
"""
self.hum_time.append(formattime)
self.hum_data['HUM'].append(HUM)
self.hum_data['TMP'].append(TMP)
self.hum_data['DEW'].append(DEW)
self.hum_data['absHUM'].append(absHUM)
self.hum_plotLines['HUM'].setData(self.hum_time, self.hum_data['HUM'])
self.hum_plotLines['TMP'].setData(self.hum_time, self.hum_data['TMP'])
self.hum_plotLines['DEW'].setData(self.hum_time, self.hum_data['DEW'])
self.hum_plot.setData(self.hum_time, self.hum_data['absHUM'])
"""
# FIXME: replace with some isLogging boolean flag...
if self.Humfilename:
self.HumLogData(timestamp, HUM, TMP, DEW, absHUM, PPM)
def HumLogData(self, timestamp, HUM, TMP, DEW, absHUM, PPM):
try:
# FIXME: os.path.join()
with open(f"{self.HumsaveDirectory}/{self.Humfilename}", 'a', newline='') as file:
writer = csv.writer(file)
writer.writerow([timestamp, HUM,TMP,DEW, absHUM, PPM])
file.flush()
except Exception as e:
print(f"Error writing to file: {e}")
#PRESSURE slot