Mercurial > templog
annotate py/fridge.py @ 582:cebec9b40ad2
merge
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 30 Nov 2015 21:45:17 +0800 |
parents | 358293768234 |
children | 6087c692d381 |
rev | line source |
---|---|
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
1 # -*- coding: utf-8 -*- |
527 | 2 import asyncio |
3 | |
462 | 4 from utils import L,W,E,EX,D |
439 | 5 import config |
6 | |
527 | 7 import gpio |
570 | 8 import utils |
527 | 9 |
10 class Fridge(object): | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
11 |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
12 OVERSHOOT_MAX_DIV = 1800.0 # 30 mins |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
13 |
565
26f20cee71be
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
556
diff
changeset
|
14 def __init__(self, server, nowait = False): |
443 | 15 self.server = server |
527 | 16 self.gpio = gpio.Gpio(config.FRIDGE_GPIO_PIN, "fridge") |
570 | 17 self.integrator = utils.StepIntegrator(self.server.now, self.server.params.overshoot_delay) |
439 | 18 self.wort_valid_clock = 0 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
19 self.fridge_on_clock = 0 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
20 self.off() |
565
26f20cee71be
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
556
diff
changeset
|
21 if nowait: |
26f20cee71be
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
556
diff
changeset
|
22 self.fridge_off_clock = 0 |
439 | 23 |
24 def turn(self, value): | |
527 | 25 self.gpio.turn(value) |
570 | 26 self.integrator.turn(value) |
439 | 27 |
28 def on(self): | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
29 self.turn(True) |
439 | 30 |
31 def off(self): | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
32 self.turn(False) |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
33 self.fridge_off_clock = self.server.now() |
439 | 34 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
35 def is_on(self): |
527 | 36 return self.gpio.get_state() |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
37 |
527 | 38 @asyncio.coroutine |
39 def run(self): | |
461
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
40 if self.server.params.disabled: |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
41 L("Fridge is disabled") |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
42 while True: |
531 | 43 try: |
554
39540ddacdca
put more things inside "try"
Matt Johnston <matt@ucc.asn.au>
parents:
532
diff
changeset
|
44 self.do() |
531 | 45 yield from self.server.sleep(config.FRIDGE_SLEEP) |
46 except Exception as e: | |
47 EX("fridge failed") | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
48 |
444 | 49 def do(self): |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
50 """ this is the main fridge control logic """ |
443 | 51 wort, fridge = self.server.current_temps() |
439 | 52 |
444 | 53 params = self.server.params |
54 | |
469
de4abcbe8f46
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
467
diff
changeset
|
55 fridge_min = params.fridge_setpoint - params.fridge_range_lower |
de4abcbe8f46
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
467
diff
changeset
|
56 fridge_max = params.fridge_setpoint + params.fridge_range_upper |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
57 |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
58 wort_min = params.fridge_setpoint |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
59 wort_max = params.fridge_setpoint + params.fridge_difference |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
60 |
443 | 61 off_time = self.server.now() - self.fridge_off_clock |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
62 |
476
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
63 if wort is not None: |
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
64 self.wort_valid_clock = self.server.now() |
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
65 |
570 | 66 self.integrator.set_limit(params.overshoot_delay) |
67 | |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
68 # Safety to avoid bad things happening to the fridge motor (?) |
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
69 # When it turns off don't start up again for at least FRIDGE_DELAY |
520
9b98091ca573
Fridge.is_off() wasn't a method
Matt Johnston <matt@ucc.asn.au>
parents:
519
diff
changeset
|
70 if not self.is_on() and off_time < config.FRIDGE_DELAY: |
439 | 71 L("fridge skipping, too early") |
72 return | |
73 | |
461
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
74 if params.disabled: |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
75 if self.is_on(): |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
76 L("Disabled, turning fridge off") |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
77 self.off() |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
78 return |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
79 |
439 | 80 # handle broken wort sensor |
476
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
81 if wort is None: |
443 | 82 invalid_time = self.server.now() - self.wort_valid_clock |
497
455f19b64e0f
Fix invalid wort time check
Matt Johnston <matt@ucc.asn.au>
parents:
477
diff
changeset
|
83 W("Invalid wort sensor for %d secs" % invalid_time) |
439 | 84 if invalid_time < config.FRIDGE_WORT_INVALID_TIME: |
85 W("Has only been invalid for %d, waiting" % invalid_time) | |
86 return | |
87 | |
88 if fridge is None: | |
89 W("Invalid fridge sensor") | |
90 | |
532
9b1d71310c83
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
531
diff
changeset
|
91 D("fridge on %s" % self.is_on()) |
9b1d71310c83
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
531
diff
changeset
|
92 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
93 if self.is_on(): |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
94 turn_off = False |
578
358293768234
fix missing on_time variable
Matt Johnston <matt@ucc.asn.au>
parents:
571
diff
changeset
|
95 on_time = self.integrator.integrate() |
358293768234
fix missing on_time variable
Matt Johnston <matt@ucc.asn.au>
parents:
571
diff
changeset
|
96 on_percent = on_time / params.overshoot_delay |
439 | 97 |
571
ccfaa4351fd8
scale integrate by delay time
Matt Johnston <matt@ucc.asn.au>
parents:
570
diff
changeset
|
98 overshoot = params.overshoot_factor * on_percent |
ccfaa4351fd8
scale integrate by delay time
Matt Johnston <matt@ucc.asn.au>
parents:
570
diff
changeset
|
99 D("on_time %(on_percent)f, overshoot %(overshoot)f" % locals()) |
439 | 100 |
477 | 101 if not params.nowort and wort is not None: |
102 if wort - overshoot < params.fridge_setpoint: | |
568 | 103 max_div = self.OVERSHOOT_MAX_DIV |
104 overshoot_factor = params.overshoot_factor | |
105 L("wort has cooled enough, %(wort)fº (overshoot %(overshoot)fº = %(overshoot_factor)f * min(%(on_time)f) / %(max_div)f)" % locals() ) | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
106 turn_off = True |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
107 elif fridge is not None and fridge < fridge_min: |
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
108 W("fridge off fallback, fridge %(fridge)f, min %(fridge_min)f" % locals()) |
476
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
109 if wort is None: |
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
110 W("wort has been invalid for %d" % (self.server.now() - self.wort_valid_clock)) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
111 turn_off = True |
439 | 112 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
113 if turn_off: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
114 L("Turning fridge off") |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
115 self.off() |
439 | 116 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
117 else: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
118 # fridge is off |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
119 turn_on = False |
554
39540ddacdca
put more things inside "try"
Matt Johnston <matt@ucc.asn.au>
parents:
532
diff
changeset
|
120 D("fridge %(fridge)s max %(fridge_max)s wort %(wort)s wort_max %(wort_max)s" % locals()) |
467 | 121 if not params.nowort \ |
122 and wort is not None \ | |
123 and wort >= wort_max: | |
462 | 124 L("Wort is too hot %f, max %f" % (wort, wort_max)) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
125 turn_on = True |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
126 elif fridge is not None and fridge >= fridge_max: |
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
127 W("frdge on fallback, fridge %(fridge)f, max %(fridge_max)f" % locals()) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
128 turn_on = True |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
129 |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
130 if turn_on: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
131 L("Turning fridge on") |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
132 self.on() |
457 | 133 self.fridge_on_clock = self.server.now() |