When I design dark beers, I'd like to see the SRM value even when higher than 40.
For now I use this bookmark I created to hack around :
For now I use this bookmark I created to hack around :
Code:
javascript:window.calculateSRMMorey = function (c, b) { if (!isNumber(b)) { return 0 } if (b <= 0) { return 0 } if (c.length == 0) { return 0 } var d = 0; var a = calculateMCUtotal(c, b); d = 1.4922 * Math.pow(a, 0.6859); return d; }; updateAll();