Mercurial > templog
annotate py/fridge.py @ 274:c0f903cf8268
w1 master dir moved with my new sensor
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 17 Nov 2015 22:25:02 +0800 |
parents | 50a0e2d7d9e3 |
children | 11cebd6f0bfb |
rev | line source |
---|---|
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
1 # -*- coding: utf-8 -*- |
228 | 2 import asyncio |
3 | |
163 | 4 from utils import L,W,E,EX,D |
141 | 5 import config |
6 | |
228 | 7 import gpio |
8 | |
9 class Fridge(object): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
10 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
11 OVERSHOOT_MAX_DIV = 1800.0 # 30 mins |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
12 |
266
20c89630be6c
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
259
diff
changeset
|
13 def __init__(self, server, nowait = False): |
144 | 14 self.server = server |
228 | 15 self.gpio = gpio.Gpio(config.FRIDGE_GPIO_PIN, "fridge") |
141 | 16 self.wort_valid_clock = 0 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
17 self.fridge_on_clock = 0 |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
18 self.off() |
266
20c89630be6c
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
259
diff
changeset
|
19 if nowait: |
20c89630be6c
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
259
diff
changeset
|
20 self.fridge_off_clock = 0 |
141 | 21 |
22 def turn(self, value): | |
228 | 23 self.gpio.turn(value) |
141 | 24 |
25 def on(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
26 self.turn(True) |
259 | 27 pass |
141 | 28 |
29 def off(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
30 self.turn(False) |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
31 self.fridge_off_clock = self.server.now() |
141 | 32 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
33 def is_on(self): |
228 | 34 return self.gpio.get_state() |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
35 |
228 | 36 @asyncio.coroutine |
37 def run(self): | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
38 if self.server.params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
39 L("Fridge is disabled") |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
40 while True: |
232 | 41 try: |
254
ffe25107d520
put more things inside "try"
Matt Johnston <matt@ucc.asn.au>
parents:
233
diff
changeset
|
42 self.do() |
232 | 43 yield from self.server.sleep(config.FRIDGE_SLEEP) |
44 except Exception as e: | |
45 EX("fridge failed") | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
46 |
145 | 47 def do(self): |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
48 """ this is the main fridge control logic """ |
144 | 49 wort, fridge = self.server.current_temps() |
141 | 50 |
145 | 51 params = self.server.params |
52 | |
170
78255c49bf9a
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
168
diff
changeset
|
53 fridge_min = params.fridge_setpoint - params.fridge_range_lower |
78255c49bf9a
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
168
diff
changeset
|
54 fridge_max = params.fridge_setpoint + params.fridge_range_upper |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
55 |
166
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
56 wort_min = params.fridge_setpoint |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
57 wort_max = params.fridge_setpoint + params.fridge_difference |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
58 |
144 | 59 off_time = self.server.now() - self.fridge_off_clock |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
60 |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
61 if wort is not None: |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
62 self.wort_valid_clock = self.server.now() |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
63 |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
64 # Safety to avoid bad things happening to the fridge motor (?) |
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
65 # When it turns off don't start up again for at least FRIDGE_DELAY |
221
720809f6c968
Fridge.is_off() wasn't a method
Matt Johnston <matt@ucc.asn.au>
parents:
220
diff
changeset
|
66 if not self.is_on() and off_time < config.FRIDGE_DELAY: |
141 | 67 L("fridge skipping, too early") |
68 return | |
69 | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
70 if params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
71 if self.is_on(): |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
72 L("Disabled, turning fridge off") |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
73 self.off() |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
74 return |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
75 |
141 | 76 # handle broken wort sensor |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
77 if wort is None: |
144 | 78 invalid_time = self.server.now() - self.wort_valid_clock |
197
3f187baa3439
Fix invalid wort time check
Matt Johnston <matt@ucc.asn.au>
parents:
178
diff
changeset
|
79 W("Invalid wort sensor for %d secs" % invalid_time) |
141 | 80 if invalid_time < config.FRIDGE_WORT_INVALID_TIME: |
81 W("Has only been invalid for %d, waiting" % invalid_time) | |
82 return | |
83 | |
84 if fridge is None: | |
85 W("Invalid fridge sensor") | |
86 | |
233
19569cb5ed46
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
232
diff
changeset
|
87 D("fridge on %s" % self.is_on()) |
19569cb5ed46
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
232
diff
changeset
|
88 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
89 if self.is_on(): |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
90 turn_off = False |
144 | 91 on_time = self.server.now() - self.fridge_on_clock |
141 | 92 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
93 overshoot = 0 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
94 if on_time > params.overshoot_delay: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
95 overshoot = params.overshoot_factor \ |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
96 * min(self.OVERSHOOT_MAX_DIV, on_time) \ |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
97 / self.OVERSHOOT_MAX_DIV |
163 | 98 D("on_time %(on_time)f, overshoot %(overshoot)f" % locals()) |
141 | 99 |
178 | 100 if not params.nowort and wort is not None: |
101 if wort - overshoot < params.fridge_setpoint: | |
269 | 102 max_div = self.OVERSHOOT_MAX_DIV |
103 overshoot_factor = params.overshoot_factor | |
104 L("wort has cooled enough, %(wort)fº (overshoot %(overshoot)fº = %(overshoot_factor)f * min(%(on_time)f) / %(max_div)f)" % locals() ) | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
105 turn_off = True |
166
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
106 elif fridge is not None and fridge < fridge_min: |
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
107 W("fridge off fallback, fridge %(fridge)f, min %(fridge_min)f" % locals()) |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
108 if wort is None: |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
109 W("wort has been invalid for %d" % (self.server.now() - self.wort_valid_clock)) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
110 turn_off = True |
141 | 111 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
112 if turn_off: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
113 L("Turning fridge off") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
114 self.off() |
141 | 115 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
116 else: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
117 # fridge is off |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
118 turn_on = False |
254
ffe25107d520
put more things inside "try"
Matt Johnston <matt@ucc.asn.au>
parents:
233
diff
changeset
|
119 D("fridge %(fridge)s max %(fridge_max)s wort %(wort)s wort_max %(wort_max)s" % locals()) |
168 | 120 if not params.nowort \ |
121 and wort is not None \ | |
122 and wort >= wort_max: | |
163 | 123 L("Wort is too hot %f, max %f" % (wort, wort_max)) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
124 turn_on = True |
166
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
125 elif fridge is not None and fridge >= fridge_max: |
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
126 W("frdge on fallback, fridge %(fridge)f, max %(fridge_max)f" % locals()) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
127 turn_on = True |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
128 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
129 if turn_on: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
130 L("Turning fridge on") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
131 self.on() |
158 | 132 self.fridge_on_clock = self.server.now() |