-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew100_hefe.py
executable file
·46 lines (39 loc) · 1.36 KB
/
brew100_hefe.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
#!/usr/bin/env python
from sbrew import *
r = Recipe("Warner Weisse")
m = DecoctionMash()
m.ingredient('grain', 'marris otter (tf)', '37%')
m.ingredient('grain', 'wheat malt (tf)', '63%')
m.total_grains(Quantity('9.5lb'))
m.add_step('infuse', volume='3.6gal', temp='108F')
m.add_step('heat', temp='122F', time='10min')
m.add_step('rest', time='15min')
d1 = m.split(time='5min', remove='40%')
d1.add_step('heat', temp='160F', time='15min')
d1.add_step('rest', time='15min')
d1.add_step('heat', temp='212F', time='15min')
d1.add_step('boil', time='20min')
m.mix(decoction=d1, time='10min')
m.add_step('adjust', temp='147F')
m.add_step('rest', time='20min')
m.add_step('heat', temp='160F', time='7min')
m.add_step('rest', time='13min')
m.add_step('infuse', temp='170F', infusion_temp='212F',
volume='1.2gal', time='5min')
r.add(m)
s = BatchSparge(start=m)
s.property('wort_volume', '6.75gal')
r.add(s)
b = Boil(start=s, duration="60min")
b.ingredient('hops', 'hallertau', '1.25oz', time='60min', aa='3.1%AA')
b.ingredient('hops', 'hallertau', '0.25oz', time='15min', aa='3.1%AA')
# was a bit light, aim for 1.051 OG
b.ingredient('dme', 'muntons extra light', '0.5lb', time='15min')
b.property('boil_end_volume', '6.25gal')
r.add(b)
f = Ferment(start=b)
f.ingredient('yeast', 'wyeast 3056 bavarian weizen', '1packet')
f.property('atten', '80.0%atten')
r.add(f)
r.solve()
print(r)