Problem 1146. Calculate Alcohol By Volume with Original and Final Gravity
Given an initial gravity of un-fermented wort (OG) and a final gravity of fermented wort (FG), better known as beer, it is possible to get the general ABV (will be a %).
Note: Any wort that gets denser through fermentation will appear to have a negative ABV; in those cases the ABV should be marked as 0. Most brews do not have a lot of room on the label so round to the 2nd decimal place. Assume a constant of 131 is involved (this is why it is only a general ABV).
Example:
x = [OG FG] = [1.085 1.009]
ABV = (OG-FG)*131 = 9.96%
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers77
Suggested Problems
-
2353 Solvers
-
Increment a number, given its digits
673 Solvers
-
Reverse the Words (not letters) of a String
461 Solvers
-
Remove white space from the string
199 Solvers
-
Calculate the area of a triangle between three points
3315 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!