Lallemand Pitching Rate Calculator

.lallemand-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 12px; background-color: #fdfdfd; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .lallemand-calculator-container h2 { color: #8b0000; text-align: center; margin-bottom: 25px; font-size: 28px; } .calc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .calc-group { flex: 1; min-width: 250px; } .calc-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #555; } .calc-group input, .calc-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .calc-btn { background-color: #8b0000; color: white; border: none; padding: 15px 30px; border-radius: 6px; cursor: pointer; font-size: 18px; font-weight: bold; width: 100%; transition: background-color 0.3s; } .calc-btn:hover { background-color: #a50000; } .result-display { margin-top: 30px; padding: 20px; background-color: #fef4f4; border-left: 5px solid #8b0000; border-radius: 4px; display: none; } .result-display h3 { margin-top: 0; color: #8b0000; font-size: 20px; } .result-value { font-size: 24px; font-weight: 800; color: #333; } .info-section { margin-top: 40px; line-height: 1.6; color: #444; } .info-section h3 { color: #8b0000; border-bottom: 2px solid #eee; padding-bottom: 10px; } .example-box { background: #f9f9f9; padding: 15px; border-radius: 8px; margin: 15px 0; font-style: italic; }

Lallemand Yeast Pitching Rate Calculator

0.50 (Standard Ale) 0.75 (High Gravity Ale) 1.00 (Standard Lager) 1.50 (High Gravity Lager)

Calculation Results

Total Yeast Cells Required: Billion cells

Grams of Dry Yeast Needed: g

Number of 11g Sachets: sachets

How to Calculate Yeast Pitching Rates

Achieving the correct pitching rate is critical for yeast health, flavor profile consistency, and complete attenuation. For Lallemand dry yeast strains like Nottingham, BRY-97, or Windsor, calculating the exact grammage ensures you don't under-pitch (leading to off-flavors) or over-pitch (reducing ester character).

The Math Behind the Calculator

The calculation follows three primary steps:

  1. Convert SG to Plato: Degrees Plato (°P) is the sugar weight percentage. Formula: °P = (SG - 1) * 1000 / 4 (Standard Approximation).
  2. Determine Total Cell Requirement: Total Cells = Pitch Rate * Wort Volume (ml) * °Plato.
  3. Determine Grams: Grams = Total Cells / Cell Count per Gram.
Realistic Example:
If you are brewing 20 Liters of a 1.050 SG Pale Ale using a standard ale rate (0.50 million cells/ml/°P) and Lallemand yeast (approx. 5 billion viable cells/g):
– Gravity in Plato: 12.5°P
– Total Cells: 0.5 * 20,000 * 12.5 = 125 Billion cells
– Total Grams: 125 / 5 = 25 grams (~2.3 sachets)

Lallemand Pitching Guidelines

Lallemand typically recommends a pitch rate of 50-100g per hectoliter (hl) for most standard fermentations. This translates to roughly 0.5 to 1.0 grams per liter. However, higher gravity worts (above 1.060 SG) or cold-fermented lagers require significantly more yeast to ensure a robust fermentation start.

  • Ales: 0.5 to 1.0 million cells / ml / °P
  • Lagers: 1.0 to 1.5 million cells / ml / °P
  • High Gravity (>1.070): Increase pitch rate by 50%
function calculateLallemandPitch() { var volume = parseFloat(document.getElementById('wortVolume').value); var sg = parseFloat(document.getElementById('specificGravity').value); var rate = parseFloat(document.getElementById('pitchRate').value); var viability = parseFloat(document.getElementById('yeastViability').value); if (isNaN(volume) || isNaN(sg) || isNaN(rate) || isNaN(viability) || volume <= 0 || sg <= 1) { alert("Please enter valid positive numbers for all fields. Specific Gravity must be greater than 1.000."); return; } // 1. Convert SG to Plato (More accurate cubic formula) var plato = (-1 * 616.868) + (1111.14 * sg) – (630.272 * Math.pow(sg, 2)) + (135.997 * Math.pow(sg, 3)); // Ensure Plato isn't negative from bad SG input if (plato < 0) plato = (sg – 1) * 250; // 2. Volume in ml var volumeMl = volume * 1000; // 3. Total cells needed (Rate is in Millions, viability is in Billions) // Rate (Million/ml/P) * ml * Plato / 1000 = Billion cells var totalCellsNeeded = (rate * volumeMl * plato) / 1000; // 4. Grams needed var grams = totalCellsNeeded / viability; // 5. Sachets (Standard Lallemand sachet is 11g) var sachets = grams / 11; // Display results document.getElementById('totalCells').innerHTML = totalCellsNeeded.toFixed(2); document.getElementById('gramsNeeded').innerHTML = grams.toFixed(2); document.getElementById('sachetsNeeded').innerHTML = sachets.toFixed(2); document.getElementById('pitchResult').style.display = 'block'; }

Leave a Comment