Skip to content

Commit

Permalink
Hefe
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeon committed Aug 5, 2020
1 parent c9ffcc2 commit 5169d98
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions brew137_hefe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/usr/bin/env python

from sbrew import *

r = Recipe("Warner Weisse")

m = DecoctionMash()
m.ingredient('grain', '2-row (GM)', '4lb')
m.ingredient('grain', 'wheat malt (Weyermann Pale)', '6lb')
m.total_grains(Quantity('100lb'))
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', '12IBU', time='60min', aa='3.7%AA')
b.ingredient('hops', 'hallertau', '0.25oz', time='15min', aa='4.0%AA')
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)

0 comments on commit 5169d98

Please sign in to comment.