Mercurial > templog
annotate py/fridge.py @ 168:bfc3213edee4
add nowort mode
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 20 Feb 2013 21:08:42 +0800 |
parents | 5d5424acfed0 |
children | 78255c49bf9a |
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 |
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
|
9 FRIDGE_AIR_MIN_RANGE = 3 # ÂșC |
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
10 FRIDGE_AIR_MAX_RANGE = 3 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
11 |
144 | 12 def __init__(self, server): |
13 gevent.Greenlet.__init__(self) | |
14 self.server = server | |
141 | 15 self.setup_gpio() |
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 |
149
d686b111dab4
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
148
diff
changeset
|
18 self.fridge_off_clock = server.now() |
141 | 19 |
20 def setup_gpio(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
21 dir_fn = '%s/direction' % config.FRIDGE_GPIO |
145 | 22 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
|
23 f.write('low') |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
24 val_fn = '%s/value' % config.FRIDGE_GPIO |
148 | 25 self.value_file = open(val_fn, 'r+') |
141 | 26 |
27 def turn(self, value): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
28 self.value_file.seek(0) |
141 | 29 if value: |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
30 self.value_file.write('1') |
141 | 31 else: |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
32 self.value_file.write('0') |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
33 self.value_file.flush() |
141 | 34 |
35 def on(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
36 self.turn(True) |
141 | 37 |
38 def off(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
39 self.turn(False) |
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() |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
57 gevent.sleep(config.FRIDGE_SLEEP) |
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 | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
65 fridge_min = params.fridge_setpoint - self.FRIDGE_AIR_MIN_RANGE |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
66 fridge_max = params.fridge_setpoint + self.FRIDGE_AIR_MAX_RANGE |
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 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
73 if off_time < config.FRIDGE_DELAY: |
141 | 74 L("fridge skipping, too early") |
75 return | |
76 | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
77 if params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
78 if self.is_on(): |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
79 L("Disabled, turning fridge off") |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
80 self.off() |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
81 return |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
82 |
141 | 83 # handle broken wort sensor |
84 if wort is not None: | |
144 | 85 self.wort_valid_clock = self.server.now() |
141 | 86 else: |
87 W("Invalid wort sensor") | |
144 | 88 invalid_time = self.server.now() - self.wort_valid_clock |
141 | 89 if invalid_time < config.FRIDGE_WORT_INVALID_TIME: |
90 W("Has only been invalid for %d, waiting" % invalid_time) | |
91 return | |
92 | |
93 if fridge is None: | |
94 W("Invalid fridge sensor") | |
95 | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
96 if self.is_on(): |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
97 turn_off = False |
144 | 98 on_time = self.server.now() - self.fridge_on_clock |
141 | 99 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
100 overshoot = 0 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
101 if on_time > params.overshoot_delay: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
102 overshoot = params.overshoot_factor \ |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
103 * min(self.OVERSHOOT_MAX_DIV, on_time) \ |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
104 / self.OVERSHOOT_MAX_DIV |
163 | 105 D("on_time %(on_time)f, overshoot %(overshoot)f" % locals()) |
141 | 106 |
168 | 107 if not params.nowort \ |
108 and wort is not None \ | |
109 and (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
|
110 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
|
111 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
|
112 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
|
113 W("fridge off fallback, fridge %(fridge)f, min %(fridge_min)f" % locals()) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
114 turn_off = True |
141 | 115 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
116 if turn_off: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
117 L("Turning fridge off") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
118 self.off() |
144 | 119 self.fridge_off_clock = self.server.now() |
141 | 120 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
121 else: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
122 # fridge is off |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
123 turn_on = False |
168 | 124 if not params.nowort \ |
125 and wort is not None \ | |
126 and wort >= wort_max: | |
163 | 127 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
|
128 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
|
129 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
|
130 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
|
131 turn_on = True |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
132 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
133 if turn_on: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
134 L("Turning fridge on") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
135 self.on() |
158 | 136 self.fridge_on_clock = self.server.now() |