1
0
Fork 0

Add Grainfather water calculator

This commit is contained in:
Joerg Elfring 2019-11-04 23:23:05 +01:00
parent e9b10fc41e
commit edec3000d2
3 changed files with 37 additions and 0 deletions

View file

@ -16,4 +16,16 @@ p: Carbonization gauge pressure in bar
https://elfring.ms/blog/rpn-karbonisierungsrechner
## GFWtr - Grainfather Water Calculator
Asks for the batchvolume in l (Aussschlahmenge / Asslg) and grainbill in kg (Malz) and
calculates the amount of mash- and sparge-water for grain bills > 4,5 kg according to
this formula from the Grainfather manual:
```
MashWater = GB * 2.7 + 3.5
SpargeWater = (BV + WL) - MashWater + (GB * 0.8)
```
GB: Grainbill in kg
BV: Batchvolume in l
WL: Waterloss in boil & trub in l (defaults to 5)
Adjust waterloss in line 10

BIN
brewery/gfwtr.raw Normal file

Binary file not shown.

25
brewery/gfwtr.txt Normal file
View file

@ -0,0 +1,25 @@
00 { 93-Byte Prgm }
01▸LBL "GFWtr"
02 INPUT "Asslg l"
03 INPUT "Malz kg"
04 2.7
05 ×
06 3.5
07 +
08 STO 01
09 RCL "Asslg l"
10 5
11 +
12 RCL 01
13 -
14 RCL "Malz kg"
15 0.8
16 ×
17 +
18 STO 02
19 "H Guss: "
20 ARCL 01
21 ├"[LF]N Guss: "
22 ARCL 02
23 AVIEW
24 END