Struct beerxml::data::Equipment []

pub struct Equipment {
    pub name: String,
    pub version: i64,
    pub boil_size: f64,
    pub batch_size: f64,
    pub tun_volume: Option<f64>,
    pub tun_weight: Option<f64>,
    pub tun_specific_heat: Option<f64>,
    pub top_up_water: Option<f64>,
    pub evap_rate: Option<f64>,
    pub boil_time: Option<f64>,
    pub calc_boil_volume: Option<bool>,
    pub lauter_deadspace: Option<f64>,
    pub top_up_kettle: Option<f64>,
    pub notes: Option<String>,
}

equipment

Fields

name of the style

version of the style format (normally 1)

pre-boil volume in liters used in this particular instance for this equipment setup. Note that this may be a calculated value depending on the calc_boil_volume parameter

targer volume in liters of the batch at the start of fermentation

volume of the mash tun in liters. This parameter can be used to calculate if a particular mash and grain profile will fit in the mash tun. It may also be used for thermal calculations in the case of a partially full mash tun

weight of the mash tun in kilograms. Used primarily to calculate the thermal parameters of the mash tun – in conjunction with the volume and specific heat

specific heat of the mash tun which is usually a function of the material it is made of. Typical ranges are 0.1-0.25 for metal and 0.2-0.5 for plastic materials , in Cal/(gram-deg C)

amount of top up water in liters normally added just prior to starting fermentation. Usually used for extract brewing

percentage of wort lost to evaporation per hour of the boil

normal amount of time in hours one boils for this equipment setup. This can be used with the evaporation rate to calculate the evaporation loss

flag denoting that the program should calculate the boil size. Flag may be true or false. If true, then boil_size = (batch_sizetop_up_watertrub_chiller_loss) * (1+boil_time * evap_rate ) If set then the boil size should match this value

amount lost in liters to the lauter tun and equipment associated with the lautering process

amount in liters normally added to the boil kettle before the boil

notes

Trait Implementations

impl Debug for Equipment
[src]

Formats the value using the given formatter.

impl Default for Equipment
[src]

Returns the "default value" for a type. Read more