1: <?php
2:
3:
4: namespace BeerXML\Parser;
5:
6:
7: interface IEquipmentDisplay extends IEquipment
8: {
9:
10: /**
11: * The target volume of the batch at the start of fermentation in display volume units such as "5.0 gal"
12: *
13: * @param string $displayBatchSize
14: */
15: public function setDisplayBatchSize($displayBatchSize);
16:
17: /**
18: * The pre-boil volume normally used for a batch of this size shown in display volume units such as "5.5 gal"
19: *
20: * @param string $displayBoilSize
21: */
22: public function setDisplayBoilSize($displayBoilSize);
23:
24: /**
25: * Amount lost to the lauter tun and equipment associated with the lautering process. Ex: "2.0 gal" or "1.0 l"
26: *
27: * @param string $displayLauterDeadspace
28: */
29: public function setDisplayLauterDeadspace($displayLauterDeadspace);
30:
31: /**
32: * Amount normally added to the boil kettle before the boil. Ex: "1.0 gal"
33: *
34: * @param string $displayTopUpKettle
35: */
36: public function setDisplayTopUpKettle($displayTopUpKettle);
37:
38: /**
39: * The amount of top up water normally added just prior to starting fermentation in display volume such as "1.0 gal"
40: *
41: * @param string $displayTopUpWater
42: */
43: public function setDisplayTopUpWater($displayTopUpWater);
44:
45: /**
46: * The amount of wort normally lost during transition from the boiler to the fermentation vessel.
47: *
48: * Includes both unusable wort due to trub and wort lost to the chiller and transfer systems. Expressed in user
49: * units - Ex: "1.5 qt"
50: *
51: * @param string $displayTrubChillerLoss
52: */
53: public function setDisplayTrubChillerLoss($displayTrubChillerLoss);
54:
55: /**
56: * Volume of the mash tun in display units such as "10.0 gal" or "20.0 l"
57: *
58: * @param string $displayTunVolume
59: */
60: public function setDisplayTunVolume($displayTunVolume);
61:
62: /**
63: * Weight of the mash tun in display units such as "3.0 kg" or "6.0 lb"
64: *
65: * @param string $displayTunWeight
66: */
67: public function setDisplayTunWeight($displayTunWeight);
68: }