Mercurial > templog
annotate py/fridge.py @ 225:f2838211f6ec
fixed point for old values
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 29 Jan 2015 22:55:24 +0800 |
parents | 720809f6c968 |
children | d9e81a563923 |
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 -*- |
163 | 2 from utils import L,W,E,EX,D |
141 | 3 import config |
144 | 4 import gevent |
141 | 5 |
144 | 6 class Fridge(gevent.Greenlet): |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
7 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
8 OVERSHOOT_MAX_DIV = 1800.0 # 30 mins |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
9 |
144 | 10 def __init__(self, server): |
11 gevent.Greenlet.__init__(self) | |
12 self.server = server | |
141 | 13 self.setup_gpio() |
14 self.wort_valid_clock = 0 | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
15 self.fridge_on_clock = 0 |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
16 self.off() |
141 | 17 |
18 def setup_gpio(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
19 dir_fn = '%s/direction' % config.FRIDGE_GPIO |
145 | 20 with open(dir_fn, 'w') as f: |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
21 f.write('low') |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
22 val_fn = '%s/value' % config.FRIDGE_GPIO |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
23 # XXX - Fridge should have __enter__/__exit__, close the file there. |
148 | 24 self.value_file = open(val_fn, 'r+') |
141 | 25 |
26 def turn(self, value): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
27 self.value_file.seek(0) |
141 | 28 if value: |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
29 self.value_file.write('1') |
141 | 30 else: |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
31 self.value_file.write('0') |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
32 self.value_file.flush() |
141 | 33 |
34 def on(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
35 self.turn(True) |
141 | 36 |
37 def off(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
38 self.turn(False) |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
39 self.fridge_off_clock = self.server.now() |
141 | 40 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
41 def is_on(self): |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
42 self.value_file.seek(0) |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
43 buf = self.value_file.read().strip() |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
44 if buf == '0': |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
45 return False |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
46 if buf != '1': |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
47 E("Bad value read from gpio '%s': '%s'" |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
48 % (self.value_file.name, buf)) |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
49 return True |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
50 |
144 | 51 # greenlet subclassed |
52 def _run(self): | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
53 if self.server.params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
54 L("Fridge is disabled") |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
55 while True: |
144 | 56 self.do() |
219
16a83e2c97a0
sleep on a semaphore so it can start/stop immediately when there's a SIGHUP
Matt Johnston <matt@ucc.asn.au>
parents:
197
diff
changeset
|
57 self.server.sleep(config.FRIDGE_SLEEP) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
58 |
145 | 59 def do(self): |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
60 """ this is the main fridge control logic """ |
144 | 61 wort, fridge = self.server.current_temps() |
141 | 62 |
145 | 63 params = self.server.params |
64 | |
170
78255c49bf9a
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
168
diff
changeset
|
65 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
|
66 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
|
67 |
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
|
68 wort_min = params.fridge_setpoint |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
69 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
|
70 |
144 | 71 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
|
72 |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
73 if wort is not None: |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
74 self.wort_valid_clock = self.server.now() |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
75 |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
76 # 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
|
77 # 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
|
78 if not self.is_on() and off_time < config.FRIDGE_DELAY: |
141 | 79 L("fridge skipping, too early") |
80 return | |
81 | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
82 if params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
83 if self.is_on(): |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
84 L("Disabled, turning fridge off") |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
85 self.off() |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
86 return |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
87 |
141 | 88 # handle broken wort sensor |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
89 if wort is None: |
144 | 90 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
|
91 W("Invalid wort sensor for %d secs" % invalid_time) |
141 | 92 if invalid_time < config.FRIDGE_WORT_INVALID_TIME: |
93 W("Has only been invalid for %d, waiting" % invalid_time) | |
94 return | |
95 | |
96 if fridge is None: | |
97 W("Invalid fridge sensor") | |
98 | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
99 if self.is_on(): |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
100 turn_off = False |
144 | 101 on_time = self.server.now() - self.fridge_on_clock |
141 | 102 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
103 overshoot = 0 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
104 if on_time > params.overshoot_delay: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
105 overshoot = params.overshoot_factor \ |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
106 * min(self.OVERSHOOT_MAX_DIV, on_time) \ |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
107 / self.OVERSHOOT_MAX_DIV |
163 | 108 D("on_time %(on_time)f, overshoot %(overshoot)f" % locals()) |
141 | 109 |
178 | 110 if not params.nowort and wort is not None: |
111 if wort - overshoot < params.fridge_setpoint: | |
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
|
112 L("wort has cooled enough, %(wort)f" % locals() ) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
113 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
|
114 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
|
115 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
|
116 if wort is None: |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
117 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
|
118 turn_off = True |
141 | 119 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
120 if turn_off: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
121 L("Turning fridge off") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
122 self.off() |
141 | 123 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
124 else: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
125 # fridge is off |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
126 turn_on = False |
168 | 127 if not params.nowort \ |
128 and wort is not None \ | |
129 and wort >= wort_max: | |
163 | 130 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
|
131 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
|
132 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
|
133 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
|
134 turn_on = True |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
135 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
136 if turn_on: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
137 L("Turning fridge on") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
138 self.on() |
158 | 139 self.fridge_on_clock = self.server.now() |