-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1451 lines (1406 loc) · 80.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta content="minimum-scale=1.0, width=device-width, maximum-scale=1, user-scalable=no" name="viewport" />
<meta name="description" content="Free and simple brewing calculators for hops, yeast, malt, wort, water, BIAB and equipment.">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico">
<title>Homebrew Calculators & BIAB Checklist - Hops, Yeast, Malt, Wort, Equipment, Water, Strike Temperature</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-slider.min.css" rel="stylesheet">
<link href="css/main.css?ver=1.843" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target=".sidebar" data-offset="100">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="pull-left navbar-logo"><img src="./logo.png" style="width:16px;height:16px;" height="16" width="16"></a>
<a href="/" class="navbar-brand" >Homebrew Calcs & Checklist</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<li class="active"><a href="#Overview">Home</a></li>
<li><a href="#BIABChecklist">The BIAB Checklist</a></li>
<li><a href="#StrikeTemp">Strike Temperature</a></li>
<li><a href="#AlcoholCalc">Alcohol by Volume</a></li>
<li><a href="#MashInfusion">Mash Infusion</a></li>
<li><a href="#WaterHeating">Water Heating</a></li>
<li><a href="#DilutionWater">Dilution</a></li>
<li><a href="#MashSize">Mash Size</a></li>
<li role="presentation" class="divider disabled"><a href="javascript:void(0);">Hops & Additions</a></li>
<li><a href="#HopsAlpha">Hops Alpha Adjustment</a></li>
<li><a href="#HopStorage">Hops Storage</a></li>
<li><a href="#HopsScheduler">Hop Scheduler</a></li>
<li role="presentation" class="divider disabled"><a href="javascript:void(0);">Carbonation & Kegging</a></li>
<li><a href="#PrimingSugar">Priming Sugar</a></li>
<li><a href="#KegCarbonation">Keg Carbonation</a></li>
<li><a href="#LineBalancing">Keg Line Balancing</a></li>
<li role="presentation" class="divider disabled"><a href="javascript:void(0);">Equipment</a></li>
<li><a href="#TunSize">Brew Kettle Size</a></li>
<li><a href="#HydroTemp">Hydrometer Temp. Adj.</a></li>
<li><a href="#RefractAlcohol">Refractometer Alcohol Adj.</a></li>
<li role="presentation" class="divider disabled"><a href="javascript:void(0);">Misc / Converters</a></li>
<li><a href="#BrixGravity">Brix <-> Gravity</a></li>
<li><a href="#Weight">Weight <span class="label label-success">new</span></a></li>
<li><a href="#ColorCalc">Color</a></li>
<li><a href="#Changelog">Changelog</a></li>
</ul>
</div>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<div class="hbcAnchor" id="Overview">
<h1>Free, simple homebrew calculators + BIAB checklist for every day use.</h1>
<p>A collection of the hops, yeast, malt and equipment calculators I use for brewing. If you have any suggestions or want to contribute please visit <a href="https://github.com/eithe/Homebrewcalc">https://github.com/eithe/Homebrewcalc</a>.<br/>
<br/></p>
<div class="hbcUnitSelectors">
<h2>Units</h2>
<button type="button" class="btn btn-success btn-lg hbcUnitBtn hbcMetricBtn">Metric</button>
<button type="button" class="btn btn-default btn-lg hbcUnitBtn hbcUSBtn">US</button>
</div>
</div>
<div class="hbcAnchor" id="BIABChecklist">
<div class="panel panel-primary">
<div class="panel-heading"><strong>The Brew In a Bag (BIAB) Checklist</strong></div>
<div class="panel-body">
<p>
A to-the-point, printable reminder checklist for BIAB home brewing including what to prepare the days before you brew. Customize it to your own setup by downloading the <a href="files/BIAB_Checklist.docx">Word source</a>.
</p>
<br/>
<p>
<a class="btn btn-default" target="_blank" href="files/BIAB_Checklist.pdf"><span class="glyphicon glyphicon-download" aria-hidden="true"></span> The BIAB Checklist PDF</a> (<a href="files/BIAB_Checklist.docx">Word source</a>)<br/>
<br/>
There is also a <a href="files/BIAB_Sjekkliste.pdf" target="_blank"> Norwegian version</a> available (<a href="files/BIAB_Sjekkliste.docx">Word source</a>)
</p>
</div>
</div>
</div>
<div class="hbcAnchor" id="StrikeTemp">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Strike Temperature</strong></div>
<div class="panel-body">
<p>
Estimates the temperature your strike water needs to be in order to hit the desired mash-in temperature. Please note that the calculator assumes that no heat will be lost to the surroundings. You can minimize this error by pre-heating the tun. Based on <a href="http://howtobrew.com/book/section-3/the-methods-of-mashing/calculations-for-boiling-water-additions">Palmer, in How to Brew</a>.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Grain Weight</span>
<input type="number" step="0.01" class="form-control hbcKiloInput" id="STGrainWeightInput" placeholder="0 kg"/>
<span class="input-group-addon hbcWeightAddon hbcKiloAddon">kg</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Grain Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="STGrainTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Mash Liquid Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="STMashVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Target Mash Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="STMashTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-2">
<div class="well well-sm">
<span class="hbcResult hbcResultNA hbcTempOutput" id="STCalcValue"> --- </span> <span class="hbcTempUnitName">°C</span>
</div>
</div>
<div class="col-sm-8">
<button type="button" class="btn btn-default btn-lg" id="STCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
<small></small>
</div>
</div>
</div>
<div class="hbcAnchor" id="AlcoholCalc">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Alcohol by Volume Calculator</strong></div>
<div class="panel-body">
<p>
Estimates your <abbr title="Alcohol By Volume">ABV</abbr> based on your <abbr title="Original Gravity">OG</abbr> and <abbr title="Specific Gravity">SG</abbr>/<abbr title="Final Gravity">FG</abbr>. Inspired by <a href="https://www.brewtoad.com/tools/alcohol-calculator">brewtoad</a>, but with the <a href="http://www.brewersfriend.com/2011/06/16/alcohol-by-volume-calculator-updated/">alternative ABV formula</a>.
</p>
<h4>Gravity version</h4>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Original Gravity</span>
<input type="number" step="0.001" class="form-control" id="ACOGInput" placeholder="1.xxx"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Specific Gravity</span>
<input type="number" step="0.001" class="form-control" id="ACSGInput" placeholder="1.xxx"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
</form>
<h4>Brix version</h4>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Original Brix</span>
<input type="number" step="0.001" class="form-control" id="ACOGBrixInput" placeholder="0 °Bx"/>
<span class="input-group-addon hbcBrixAddon" title="Brix degrees"><strong>°Bx</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Specific Brix</span>
<input type="number" step="0.001" class="form-control" id="ACSGBrixInput" placeholder="0 °Bx"/>
<span class="input-group-addon hbcBrixAddon" title="Brix degrees"><strong>°Bx</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="ACCalcValue"> --- </span> % ABV
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="ACCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="MashInfusion">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Mash Infusion / Boiling water additions</strong></div>
<div class="panel-body">
<p>
Estimates the amount of hot/boiling water you need to add to hit your next mash/rest temperature. Please note that the calculator assumes that no heat will be lost to the surroundings. Based on <a href="http://howtobrew.com/book/section-3/the-methods-of-mashing/calculations-for-boiling-water-additions">Palmer, in How to Brew</a>.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Grain Weight</span>
<input type="number" step="0.01" class="form-control hbcKiloInput" id="MIGrainWeightInput" placeholder="0 kg"/>
<span class="input-group-addon hbcWeightAddon hbcKiloAddon">kg</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Current Water Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="MIWaterVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Current Mash Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="MICurrentTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Target Mash Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="MITargetTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon" title="The actual temperature of the hot/boiling water you are adding">Hot Water Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="MIWaterTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-2">
<div class="well well-sm">
<span class="hbcResult hbcResultNA hbcVolumeOutput" id="MICalcValue"> --- </span> <span class="hbcVolumeUnitName">L</span>
</div>
</div>
<div class="col-sm-8">
<button type="button" class="btn btn-default btn-lg" id="MICalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
<small></small>
</div>
</div>
</div>
<div class="hbcAnchor" id="WaterHeating">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Water Heating</strong></div>
<div class="panel-body">
<p>
Estimates the time it takes to heat water. Please note that the calculator assumes that no heat will be lost to the surroundings.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Initial Water Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="WHInitialTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Target Water Temp</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="WHDesiredTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Water Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="WHVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Heating Power</span>
<input type="number" step="10" class="form-control" id="WHPowerInput" placeholder="0 W"/>
<span class="input-group-addon hbcPowerAddon">W</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="WHCalcValue"> --- </span> minutes
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="WHCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="DilutionWater">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Dilution Calculator</strong> <span class="text-muted">(Find water addition - target gravity known)</span></div>
<div class="panel-body">
<p>
Calculates the amount of water you need to add to get your wort to a desired gravity.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Initial Wort Gravity</span>
<input type="number" step="0.001" class="form-control" id="DLWInitialGravityInput" placeholder="1.xxx"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Desired Wort Gravity</span>
<input type="number" step="0.001" class="form-control" id="DLWDesiredGravityInput" placeholder="1.xxx"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Wort Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="DLWVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="DLWCalcValue"> --- </span> <span class="hbcVolumeUnitName">L</span>
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="DLWCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="DilutionWater2">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Dilution Calculator</strong> <span class="text-muted">(Find final gravity - water addition known)</span></div>
<div class="panel-body">
<p>
Calculates the final gravity you get when adding x amount of water to your wort.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Initial Wort Gravity</span>
<input type="number" step="0.001" class="form-control" id="DLGInitialGravityInput" placeholder="1.xxx"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Wort Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="DLGInitVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Target Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="DLGTargetVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="DLGCalcValue"> --- </span> FG
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="DLGCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="MashSize">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Mash Size</strong></div>
<div class="panel-body">
<p>
Calculates the volume of your grains and strike water so you can check if your tun is large enough.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Grain Weight</span>
<input type="number" step="0.001" class="form-control hbcKiloInput" id="MSGrainWeightInput" placeholder="0 kg"/>
<span class="input-group-addon hbcWeightAddon hbcKiloAddon" title="Weight"><strong>Kg</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Mash Tickness</span>
<input type="number" step="0.001" class="form-control" id="MSMashTicknessInput" placeholder="0 L/kg"/>
<span class="input-group-addon hbcRatioAddon hbcLiterKiloRatio"><strong>L/kg</strong> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="MSCalcValue"> --- </span> <span class="hbcVolumeUnitName">L</span>
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="MSCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
<br/><br/><br/>
</div>
</div>
<div class="hbcAnchor" id="HopsAlpha">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Hops Alpha Adjustment</strong></div>
<div class="panel-body">
<p>
Helps you adjust the amount of hops if the alpha acid differs between the receipe and your actual hops.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Recipe Hops Weight</span>
<input type="number" step="0.5" class="form-control hbcGramInput" id="HAHopsWeightInput" placeholder="0 g"/>
<span class="input-group-addon hbcWeightAddon hbcGramAddon" title="Weight">g</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Recipe Hops Alpha</span>
<input type="number" step="0.1" class="form-control" id="HAHopsAlphaInput" placeholder="0 %"/>
<span class="input-group-addon hbcPercentAddon">% </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Actual Hops Alpha</span>
<input type="number" step="0.1" class="form-control" id="HAHopsActualAlphaInput" placeholder="0 %"/>
<span class="input-group-addon hbcPercentAddon">% </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="HACalcValue"> --- </span> <span class="hbcGramUnitName">g</a>
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="HACalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="HopStorage">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Hops Storage Alpha Loss</strong></div>
<div class="panel-body">
<p>
Estimates the loss of alpha acid when you store hops. Based on <a href="http://morebeer.com/brewingtechniques/library/backissues/issue2.1/garetztable.html#1">MoreBeer Brewing Techniques</a>.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Hops Alpha Acid</span>
<input type="number" step="0.1" class="form-control" id="HSInitAlphaInput" placeholder="0 %"/>
<span class="input-group-addon hbcPercentAddon" title="">% </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Loss After 6 Months</span>
<select class="form-control" id="HSSixMonthLossSelect">
<option value="20">Excellent - 20%</option>
<option value="40">Good - 40%</option>
<option value="60">Poor - 60%</option>
<option value="50">Cascade - 50%</option>
<option value="37">Centennial - 37%</option>
<option value="32">Chinook - 32%</option>
<option value="17">Cluster - 17%</option>
<option value="49">Crystal - 49%</option>
<option value="45">East Kent Goldings - 45%</option>
<option value="40">Eroica - 40%</option>
<option value="37">Fuggle - 37%</option>
<option value="15">Galena - 15%</option>
<option value="45">German Spalter - 45%</option>
<option value="45">Hallertauer (domestic) - 45%</option>
<option value="40">Hallertauer Hersbrucker - 40%</option>
<option value="25">Hallertauer Northern Brewer - 25%</option>
<option value="46">Hallertauer Mittelfrueh - 46%</option>
<option value="50">Hersbrucker (domestic) - 50%</option>
<option value="55">Liberty - 55%</option>
<option value="45">Mt. Hood - 45%</option>
<option value="20">Northern Brewer (domestic) - 20%</option>
<option value="25">Nugget - 25%</option>
<option value="15">Perle (domestic) - 15%</option>
<option value="44">Pride of Ringwood - 44%</option>
<option value="50">Saazer (Czech) - 50%</option>
<option value="50">Spalt (domestic) - 50%</option>
<option value="35">Strisselspalt (France) - 35%</option>
<option value="37">Styrian Goldings - 37%</option>
<option value="42">Tettnang Tettnanger - 42%</option>
<option value="42">Tettnanger (domestic) - 42%</option>
<option value="37">Willamette - 37%</option>
</select>
<span class="input-group-addon hbcPercentAddon">% </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Storage Temperature</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="HSStorageTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Storage Conditions</span>
<select class="form-control" id="HSStorageConditionsSelect">
<option value="1">Unsealed or sealed in plastic bags</option>
<option value="0.75">Sealed airtight, not oxygen-free</option>
<option value="0.5">Sealed airtight, oxygen-free</option>
</select>
<span class="input-group-addon hbcPercentAddon"> </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Hops Age</span>
<input type="number" step="0.1" class="form-control" id="HSHopsAge" placeholder="0 days"/>
<span class="input-group-addon hbcDaysAddon">d </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="HSCalcValue"> --- </span> % alpha acid
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="HSCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="HopsScheduler">
<div class="panel panel-primary">
<div class="panel-heading"><strong>Hops Scheduler</strong></div>
<div class="panel-body">
<p>
Enter your hops schedule, click start and we will notify you (by sound) when you need to add hops to your boil and when the boil has finished.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<h3>Total boil time <small>(minutes)</small></h3>
<div class="well">
<input class="form-control" id="HopsSchedulerBoilTimeInput" data-slider-id='HopsSchedulerBoilTimeSlider' type="text" data-slider-min="30" data-slider-max="90" data-slider-step="1" data-slider-value="60" />
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr class="hbcHopsSchedulerHeaderRow">
<th>#</th>
<th>Boil time (minutes)</th>
<th>Hops / Addition</th>
</tr>
</thead>
<tbody>
<tr>
<td><h5><b>1</b></h5></td>
<td>
<input class="form-control hbcHopsSchedulerTimeInput" data-elapsed="false" id="HopsSchedulerTime1Input" type="number" step="0.1" class="form-control" />
</td>
<td>
<input type="text" class="form-control" placeholder="(optional)" />
</td>
</tr>
<tr>
<td><h5><b>2</b></h5></td>
<td>
<input class="form-control hbcHopsSchedulerTimeInput" data-elapsed="false" id="HopsSchedulerTime2Input" type="number" step="0.1" class="form-control" />
</td>
<td>
<input type="text" class="form-control" placeholder="(optional)" />
</td>
</tr>
<tr>
<td><h5><b>3</b></h5></td>
<td>
<input class="form-control hbcHopsSchedulerTimeInput" data-elapsed="false" id="HopsSchedulerTime3Input" type="number" step="0.1" class="form-control" />
</td>
<td>
<input type="text" class="form-control" placeholder="(optional)" />
</td>
</tr>
<tr>
<td><h5><b>4</b></h5></td>
<td>
<input class="form-control hbcHopsSchedulerTimeInput" data-elapsed="false" id="HopsSchedulerTime4Input" type="number" step="0.1" class="form-control" />
</td>
<td>
<input type="text" class="form-control" placeholder="(optional)" />
</td>
</tr>
<tr>
<td><h5><b>5</b></h5></td>
<td>
<input class="form-control hbcHopsSchedulerTimeInput" data-elapsed="false" id="HopsSchedulerTime5Input" type="number" step="0.1" class="form-control" />
</td>
<td>
<input type="text" class="form-control" placeholder="(optional)" />
</td>
</tr>
<tr>
<td><h5><b>6</b></h5></td>
<td>
<input class="form-control hbcHopsSchedulerTimeInput" data-elapsed="false" id="HopsSchedulerTime6Input" type="number" step="0.1" class="form-control" />
</td>
<td>
<input type="text" class="form-control" placeholder="(optional)" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="col-sm-7">
<button type="button" class="btn btn-success btn-lg" id="HopsSchedulerStartBtn">Start</button>
<button type="button" class="btn btn-warning btn-lg" id="HopsSchedulerPauseBtn">Pause</button>
<button type="button" class="btn btn-danger btn-lg" id="HopsSchedulerStopBtn">Reset</button>
</div>
<div class="col-sm-5">
<div class="well well-sm">
<h4>Elapsed time: <span id="HopsSchedulerElapHoursSpan" class="hbcTime">00</span>:<span id="HopsSchedulerElapMinutesSpan" class="hbcTime">00</span>:<span id="HopsSchedulerElapSecondsSpan" class="hbcTime">00</span>
<span id="HopsSchedulerStatusSpan" class="hbcSchedulerStatusSpan muted"></span>
</h4>
<h4>Remaining time: <span id="HopsSchedulerRemainHoursSpan" class="hbcTime">00</span>:<span id="HopsSchedulerRemainMinutesSpan" class="hbcTime">00</span>:<span id="HopsSchedulerRemainSecondsSpan" class="hbcTime">00</span>
</h4>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="PrimingSugar">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Priming Sugar Calculator</strong></div>
<div class="panel-body">
<p>
Estimates how much priming sugar (<abbr title="Dextrose">Corn Sugar</abbr>, <abbr title="Sucrose">Table Sugar</abbr> or <abbr title="Dry Malt Extract">DME</abbr>) to add for carbonation when bottling homebrewed beer. Based on <a href="http://braukaiser.com/wiki/index.php?title=Accurately_Calculating_Sugar_Additions_for_Carbonation">braukaiser.com</a>.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Beer Volume</span>
<input type="number" step="0.1" class="form-control hbcVolumeInput" id="PSVolumeInput" placeholder="0 L"/>
<span class="input-group-addon hbcVolumeAddon">L </span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Beer Temperature</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="PSTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon"><abbr title="A volume is the space that the CO2 would take up at a pressure of one atmosphere (about 15 pounds per square inch) and at a temperature of 0° C (32° F) — that’s Standard Temperature and Pressure (STP). In other words, if five gallons of beer contained three volumes of CO2, the CO2 by itself would occupy three times the space the beer takes up, or 15 gallons. An average carbonation level is 2.5 volumes of CO2. (from byo.com)">Desired Volume of CO<sub>2</sub></abbr></span>
<input type="number" step="0.001" class="form-control" id="PSVolumesInput" placeholder="0"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
</form>
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<b>Style & Volumes of CO2</b> (<a href="https://byo.com/mead/item/1271-priming-with-sugar">byo.com</a>)<br/>
<table>
<tbody>
<tr><td>British ales</td><td>1.5–2.2</td></tr>
<tr><td>Belgian ales</td><td>2.0–4.5</td></tr>
<tr><td>American ales </td><td>2.2–3.0</td></tr>
<tr><td>European Lagers </td><td>2.4–2.6</td></tr>
<tr><td>American Lagers </td><td>2.5–2.8</td></tr>
<tr><td>German weizens </td><td>2.8–5.1</td></tr>
</tbody>
</table>
<br/>
</div>
<div class="col-sm-7">
The residual CO<sub>2</sub> in your beer: <span class="hbcResult hbcResultNA" id="PSBeerCO2CalcValue"> --- </span><br/>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="PSSugarCalcValue"> --- </span> <span class="hbcGramUnitName">g</span> <abbr title="Sucrose">table sugar</abbr> or ...
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="PSCalcBtn">Recalculate</button>
</div>
</div>
</div>
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="PSCornCalcValue"> --- </span> <span class="hbcGramUnitName">g</span> <abbr title="Dextrose: Contains 9% water by weight which means that only 91% of its weight can be considered for the CO2 calculation">corn sugar</abbr> or ...
</div>
</div>
<div class="col-sm-7">
</div>
</div>
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="PSDMECalcValue"> --- </span> <span class="hbcGramUnitName">g</span> <abbr title="Dry Malt Extract: When using malt extract for priming, its fermentability needs to be taken into account. Normally you end up with having to add approximately 35% more DME than table sugar by weight.">DME</abbr>
</div>
This will approximately add <span class="hbcResult hbcResultNA" id="PSABVCalcValue"> --- </span> <abbr title="Percentage points. Example: If your beer currently has an ABV of 5.0% and the result is 0.3pp, your ABV after carbonation should be around 5.3%. "><span class="hbcResultUnit hbcResultNA" id="PSABVCalcUnit">pp</span></abbr> ABV to your beer during carbonation.<br/>
</div>
<div class="col-sm-7">
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="KegCarbonation">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Keg Carbonation</strong></div>
<div class="panel-body">
<p>
Estimates the pressure you should set your regulator to when kegging beer to force carbonation. Based on <a href="http://brainlubeonline.com/GasLawsBeer.html">brainlubeonline.com</a>.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Keg Temperature</span>
<input type="number" step="0.1" class="form-control hbcTempInput" id="KCTempInput" placeholder="0 °C"/>
<span class="input-group-addon hbcTempAddon">°C</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon"><abbr title="A volume is the space that the CO2 would take up at a pressure of one atmosphere (about 15 pounds per square inch) and at a temperature of 0° C (32° F) — that’s Standard Temperature and Pressure (STP). In other words, if five gallons of beer contained three volumes of CO2, the CO2 by itself would occupy three times the space the beer takes up, or 15 gallons. An average carbonation level is 2.5 volumes of CO2. (from byo.com)">Desired Volume of CO<sub>2</sub></abbr></span>
<input type="number" step="0.001" class="form-control" id="KCVolumesInput" placeholder="0"/>
<span class="input-group-addon hbcRatioAddon" title="Ratio"><strong>:</strong> </span>
</div>
</div>
</div>
</form>
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<b>Style & Volumes of CO2</b> (<a href="https://byo.com/mead/item/1271-priming-with-sugar">byo.com</a>)<br/>
<table>
<tbody>
<tr><td>British ales</td><td>1.5–2.2</td></tr>
<tr><td>Belgian ales</td><td>2.0–4.5</td></tr>
<tr><td>American ales </td><td>2.2–3.0</td></tr>
<tr><td>European Lagers </td><td>2.4–2.6</td></tr>
<tr><td>American Lagers </td><td>2.5–2.8</td></tr>
<tr><td>German weizens </td><td>2.8–5.1</td></tr>
</tbody>
</table>
<br/>
</div>
<div class="col-sm-7">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="KCCalcValue"> --- </span> PSI
</div>
</div>
<div class="col-sm-7">
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="col-sm-3">
<div class="well well-sm">
<span class="hbcResult hbcResultNA" id="KCBarCalcValue"> --- </span> Bar
</div>
</div>
<div class="col-sm-7">
<button type="button" class="btn btn-default btn-lg" id="KCCalcBtn">Recalculate</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hbcAnchor" id="LineBalancing">
<div class="panel panel-primary panel-calculator">
<div class="panel-heading"><strong>Keg Line Length Balancing</strong></div>
<div class="panel-body">
<p>
Estimates the line length for your draft beer keg system. Based on the formula from <a href="http://beersmith.com/blog/2011/07/14/keg-line-length-balancing-the-science-of-draft-beer/">beersmith.com</a>; L = (Keg Pressure – 1 – (Height/2)) / Resistance.
</p>
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon">Keg Pressure</span>
<input type="number" step="0.1" class="form-control hbcPressureInput" id="LBPressureInput" placeholder="0 bar"/>
<span class="input-group-addon hbcPressureAddon">bar</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon"><abbr title="Changes in elevation between the middle of your keg to your tap. Set to negative if your tap is lower than your keg.">Elevation height</abbr></span>
<input type="number" step="0.1" class="form-control hbcLengthMInput" id="LBHeightInput" placeholder="0 m"/>
<span class="input-group-addon hbcLengthMAddon">m</span>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<div class="input-group">
<span class="input-group-addon hbcLeftAddon"><abbr title="You get this from your line manufacturer">Line Resistance</abbr></span>
<select class="form-control" id="LBResistanceSelect">
<option value="3">3/16″ (4.75 cm) ID vinyl tubing (3 psi/ft)</option>
<option value="0.85">1/4″ (6.35 cm) ID vinyl tubing (0.85 psi/ft)</option>
<option value="2.2">3/16″ (4.75 cm) ID Polyethylene tubing (2.2 psi/ft)</option>
<option value="0.5">1/4″ (6.35 cm) ID Polyethylene tubing (0.5 psi/ft)</option>
<option value="0.2">3/8″ (9.5 cm) OD Stainless tubing (0.2 psi/ft)</option>
<option value="0.5">5/16″ (7.9cm) OD Stainless tubing (0.5 psi/ft)</option>
<option value="2">1/4″ (6.35 cm) OD Stainless tubing (2 psi/ft)</option>
</select>
<span class="input-group-addon hbcRatioAddon">:</span>
</div>
</div>
</div>
</form>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">