Created
October 26, 2010 05:25
-
-
Save rjungemann/646374 to your computer and use it in GitHub Desktop.
ebc to srm and vice versa (for beer brewing and teaching purposes)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://www.weekendbrewer.com/brewingformulas.htm#Color | |
def ebc_to_srm units | |
units * 0.375 + 0.46 | |
end | |
def srm_to_ebc units | |
(units - 0.46) / 0.375 | |
end | |
# how to use: | |
puts(ebc_to_srm(55)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment