[Feature request] No max SRM

brag

New Member
Trial Member
Joined
Mar 18, 2015
Messages
1
Reaction score
0
Points
1
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 :
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();
 
Thanks for pointing this out! Honestly I'm not sure why SRM was capped at 40 initially. All references I can find indicate that Morey's equation holds true up until about 50 SRM. I'm going to push out a change to increase the limit to 50 instead.
 

Back
Top