UNPKG

@brewlab/calc

Version:

Library with methods for calculations used in brewing.

7 lines (6 loc) 300 B
/** * Estimates the volume of the grain using the weight provided. * @param {number} grainWeight Grain weight in American pounds (e.g. 10.5) * @returns {number} Estimated volume based on the weight in American Gallons. */ export default function grainWeightToVolume(grainWeight: number): number;