Skip to content

Instantly share code, notes, and snippets.

@rjungemann
Created October 26, 2010 05:25
Show Gist options
  • Save rjungemann/646374 to your computer and use it in GitHub Desktop.
Save rjungemann/646374 to your computer and use it in GitHub Desktop.
ebc to srm and vice versa (for beer brewing and teaching purposes)
# 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