-
Notifications
You must be signed in to change notification settings - Fork 2
/
functions.py
353 lines (289 loc) · 12.7 KB
/
functions.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
from datetime import datetime
import pickle
from threading import Thread
from time import sleep, time
from tkinter import simpledialog, messagebox
import serial # Listado como pyserial em requirements.txt
from serial.tools import list_ports
from simple_pid import PID
import constants as std
experiments = []
experiment_data_x = []
experiment_data_y = []
experiment_data_setpoint = []
class ExperimentPCR:
"""Um objeto que contêm todas as informações de temperatura e tempo dos
processos.
Esses objetos são salvos na lista "experiments" e posteriormente
carregados em um arquivo externo usando o módulo pickle.
Os objetos salvos fornecidos a "steps" devem ser obrigatoriamente da
classe StepPCR.
"""
def __init__(self, name: str, n_cycles=0, final_hold=0, *steps):
self.name = name.capitalize()
self.n_cycles = n_cycles
self.final_hold = final_hold
self.steps = list(steps)
def __str__(self):
str_steps = ''
for step in self.steps:
str_steps += f'-{str(step)}\n'
final_str = f'\nNome do Experimento: "{self.name}"\n' \
f'->Nº de ciclos: {self.n_cycles}\n' \
f'->Temperatura Final: {self.final_hold}°C\n' \
f'{str_steps}'
return final_str
def add_step(self, name, temp, duration):
new_step = StepPCR(name, temp, duration)
self.steps.append(new_step)
@property
def estimated_time(self):
value = 0
for step in self.steps:
value += int(step.duration)
value *= int(self.n_cycles)
return value
class StepPCR:
def __init__(self, name, temp, duration):
self.name = name
self.temperature = temp
self.duration = duration
def __repr__(self):
return f'StepPCR({self.name}, {self.temperature}, {self.duration})'
def __str__(self):
return f'Passo de PCR "{self.name}": ' \
f'{self.temperature}°C, {self.duration}s'
class ArduinoPCR:
"""Classe com protocolos para comunicação serial."""
def __init__(self, baudrate, timeout=1, experiment: ExperimentPCR = None):
self.timeout = timeout
self.baudrate = baudrate
self.experiment: ExperimentPCR = experiment
self.cooling_experiment = ExperimentPCR('Resfriamento', 1, 25,
StepPCR('1',
std.COOLING_TEMP_C,
5))
self.pid = PID(Kp=std.KP,
Ki=std.KI,
Kd=std.KD,
output_limits=(-255, 255), sample_time=0)
# print(self.pid.tunings)
# Conferir com o nome no Gerenciador de dispositivos do windows
# caso esteja usando um arduino diferente.
self.device_type = ''
self.port_connected = None
self.serial_device: serial.Serial = None
self.is_connected = False
self.waiting_update = False
self.monitor_thread = None
self.is_running = False
self.is_waiting = True
self.current_sample_temperature = 0
self.current_lid_temperature = 0
self.current_step = ''
self.current_step_temp = 0
self.current_cycle = 0
self.elapsed_time = 0
self.is_cooling = False
self.reading = ''
self.initialize_connection()
def run_experiment(self):
sleep(1)
started_time = time()
self.elapsed_time = 0
for step in self.experiment.steps:
self.elapsed_time += int(step.duration)
self.elapsed_time *= self.experiment.n_cycles
for i in range(int(self.experiment.n_cycles)):
self.current_cycle = i + 1
for step in self.experiment.steps:
self.pid.reset()
started_step_time = time()
self.current_step = step.name
self.current_step_temp = step.temperature
set_point = int(step.temperature)
duration = int(step.duration)
self.pid.setpoint = set_point
current_time = time()
while current_time - started_step_time <= duration:
if self.is_waiting:
if not self.is_running:
# print('Experiment Cancelled')
messagebox.showinfo('Cetus PCR',
'O experimento foi '
'cancelado.')
self.serial_device.write(b'<peltier 0 0>')
self.is_waiting = False
return
output = self.pid(self.current_sample_temperature)
print(f'output= {output}')
# print(self.current_sample_temperature)
if output >= 0:
new_str = f'<peltier 0 {int(output)}>'
elif output < 0:
new_str = f'<peltier 1 {abs(int(output))}>'
self.serial_device.write(b'%a\r\n' % new_str)
self.is_waiting = False
self.elapsed_time = int(time() - started_time)
if not set_point - std.TOLERANCE < \
self.current_sample_temperature < \
set_point + std.TOLERANCE:
# Delay para atingir a temperatura desejada
difference = time() - current_time
duration += difference
# print(duration)
experiment_data_x.append(current_time - started_time)
experiment_data_y.append(self.current_sample_temperature)
experiment_data_setpoint.append(self.pid.setpoint)
current_time = time()
sleep(0.1)
self.is_cooling = False
print(f'Finish time: {time() - started_time}')
file_path = f'{self.experiment.name} - {datetime.now():%d%m%y%H%M%S}'
with open(f'experiment logs/{file_path}.csv', 'w') as outfile:
outfile.write('X,Y,Set Point\n')
for x, y, sp in zip(experiment_data_x, experiment_data_y,
experiment_data_setpoint):
outfile.write(f'{x},{y},{sp}\n')
messagebox.showinfo('Cetus PCR', f'"{self.experiment.name}" '
f'concluído.')
def serial_monitor(self):
"""Função para monitoramento da porta serial do Arduino.
Todas as informações provenientes da porta serial são exibidas
no prompt padrão do Python.
Determinadas informações também são guardadas em variáveis para
serem posteriormente exibidas para o usuário.
Esse processo deve ser rodado em outra thread para evitar a parada
do mainloop da janela principal.
"""
while self.is_connected:
try:
self.reading = self.serial_device.readline().decode()
self.reading = self.reading.strip('\r\n')
if 'tempSample' in self.reading:
self.current_sample_temperature = \
float(self.reading.split()[1])
# print(self.current_sample_temperature)
if 'tempLid' in self.reading:
self.current_lid_temperature = \
float(self.reading.split()[1])
if 'Cooling finished' in self.reading:
messagebox.showinfo('Cetus PCR', 'Rotina de resfriamento '
'concluída.')
elif self.reading == 'nextpls':
self.is_waiting = True
if 'Heat' in self.reading or 'Cooling' in self.reading:
print(f'(SM) {repr(self.reading)}')
# if not self.is_running:
# self.serial_device.write(b'<peltier 0 0>')
# if self.reading != '':
# print(f'(SM) {repr(self.reading)}')
except serial.SerialException:
messagebox.showerror('Dispositivo desconectado',
'Ocorreu um erro ao se comunicar com '
'o CetusPCR. Verifique a conexão e '
'reinicie o aplicativo.')
self.is_connected = False
self.waiting_update = True
self.is_running = False
std.hover_text = 'Cetus PCR desconectado.'
return # Return para encerrar a thread
def initialize_connection(self):
try:
ports = list_ports.comports()
if not list_ports.comports(): # Se não há nada conectado
raise serial.SerialException
for port in ports:
if self.device_type in port.description:
self.serial_device = serial.Serial(port.device,
self.baudrate,
timeout=self.timeout)
sleep(2) # Delay para esperar o sinal do arduino
self.reading = self.serial_device.readline()
if self.reading == b'Cetus is ready.\r\n':
self.is_connected = True
self.port_connected = port.device
print('Connection Successfully. '
'Initializing Serial Monitor (SM)')
break
else:
raise serial.SerialException
except serial.SerialException:
self.serial_device = None
self.is_connected = False
print('Connection Failed')
if self.is_connected:
self.monitor_thread = Thread(target=self.serial_monitor)
self.monitor_thread.start()
class StringDialog(simpledialog._QueryString):
"""Modificação do ícone da StringDialog original em
tkinter.simpledialog"""
# Créditos ao TeamSpen210 do Reddit
def body(self, master):
super().body(master)
self.iconbitmap(std.WINDOW_ICON)
def ask_string(title, prompt, **kwargs):
# Créditos ao TeamSpen210 do Reddit
d = StringDialog(title, prompt, **kwargs)
return d.result
def open_pickle_file(path: str) -> list:
"""Função para descompactar a lista do arquivo experiments.pcr
(gerado pelo pickle).
Caso o arquivo não seja encontrado, retorna uma lista vazia.
:param path: O caminho do arquivo de experimentos.
:return: Uma lista com os experimentos no arquivo, ou uma
lista vazia caso o arquivo não exista.
"""
try:
with open(path, 'rb') as infile:
new_list = pickle.load(infile)
return new_list
except FileNotFoundError:
return []
except PermissionError:
messagebox.showerror('Acesso Negado',
'Erro com permissões, '
'execute o programa como administrador '
'e tente novamente.')
def save_pickle_file(path: str, obj: object):
"""Salva um objeto no formato binário, utilizando serialização do
módulo pickle.
:param path: O caminho para salvar o objeto.
:param obj: O objeto a ser salvo.
"""
try:
with open(path, 'wb') as outfile:
pickle.dump(obj, outfile, protocol=pickle.HIGHEST_PROTOCOL)
except PermissionError:
messagebox.showerror('Acesso Negado',
'Erro com permissões, '
'execute o programa como administrador '
'e tente novamente.')
def validate_entry(new_text) -> bool:
"""Função callback para validação de entrada dos campos na janela
ExperimentPCR.
É chamada toda vez que o usuário tenta inserir um valor no campo de
entrada.
Uma entrada válida deve atender os seguintes requisitos:
-Ser composto apenas de números inteiros.
-Ter um número de caracteres menor que 3.
:param new_text: Passada pelo próprio widget de entrada.
:return: boolean - Retorna pro widget se a entrada é ou não válida.
"""
if new_text == '': # Se "backspace"
return True
try:
int(new_text)
if len(new_text) <= 3:
return len(new_text) <= 3
except ValueError:
return False
def seconds_to_string(sec):
m, s = divmod(sec, 60)
h, m = divmod(m, 60)
if h > 0:
return f'{h}h {m}m {s}s'
elif m > 0:
return f'{m}m {s}s'
else:
return f'{s}s'