-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew077_gpa.py
executable file
·40 lines (32 loc) · 994 Bytes
/
brew077_gpa.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
#!/usr/bin/env python
from sbrew import *
r = Recipe("GPA (Ginger Pale Ale 5.0)")
# ithaca water
m = InfusionMash()
m.ingredient('grain', '2-row', '8lb')
m.ingredient('grain', 'wheat', '1lb')
m.ingredient('water', 'strike', '4.9gal')
m.property('temp', '152F')
m.property('t_mashtun', '60F')
m.solve()
r.add(m)
s = BatchSparge(start=m)
s.property('wort_volume', '7.0gal')
s.solve()
r.add(s)
b = Boil(start=s)
b.time = Quantity('60min')
b.ingredient('hops', 'amarillo', '0.75oz',
time=Quantity('60min'), aa=Quantity('10.0%AA'))
b.ingredient('hops', 'amarillo', '0.25oz',
time=Quantity('15min'), aa=Quantity('10.0%AA'))
b.ingredient('misc', 'irish moss', '1tsp', time=Quantity('15min'))
b.ingredient('misc', 'fresh ginger', '5oz', time=Quantity('15min'))
b.ingredient('misc', 'brown sugar', '8oz', time=Quantity('15min'))
b.property('boil_end_volume', '6.5gal')
b.solve()
r.add(b)
f = Ferment(start=b)
f.ingredient('yeast', 'us-05', '1packet')
r.add(f)
print(r)