Dry Yeast Pitch Rate Calculator

Dry Yeast Pitch Rate Calculator .brewing-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; } .brewing-calculator-container h2 { color: #333; text-align: center; margin-bottom: 25px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; } .form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .radio-group { display: flex; gap: 15px; flex-wrap: wrap; } .radio-label { font-weight: normal; display: flex; align-items: center; cursor: pointer; } .radio-label input { width: auto; margin-right: 8px; } .calc-btn { width: 100%; padding: 15px; background-color: #d35400; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #a04000; } .results-box { margin-top: 30px; padding: 20px; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; display: none; } .result-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .result-item:last-child { border-bottom: none; } .result-label { color: #666; } .result-value { font-weight: bold; color: #333; font-size: 1.1em; } .content-section { margin-top: 40px; line-height: 1.6; color: #333; } .content-section h3 { color: #d35400; margin-top: 25px; } .info-box { background: #e8f4f8; padding: 15px; border-radius: 4px; border-left: 4px solid #3498db; margin: 20px 0; font-size: 0.95em; }

Dry Yeast Pitch Rate Calculator

Specific Gravity (e.g., 1.050)
0.35 – Manufacturer Minimum 0.50 – Standard Ale 0.75 – Pro Ale / High Gravity 1.00 – Hybrid / High Gravity Ale 1.50 – Lager 2.00 – High Gravity Lager
Conservative estimate is 10B/g. Fermentis/Lallemand often guarantee >6B/g but contain ~10-20B/g.
Gravity in Plato:
Total Cells Required:
Dry Yeast Needed:
Packets Needed:

Understanding Dry Yeast Pitch Rates

Pitch rate refers to the amount of yeast cells added to the wort to ensure a healthy fermentation. Unlike liquid yeast, dry yeast comes packed with nutrient reserves (glycogen and trehalose) and sterols, making it robust and generally requiring no starter.

Why calculate pitch rate? Under-pitching can lead to stressed yeast, off-flavors (esters and phenols), stuck fermentations, and higher infection risks due to long lag times. Over-pitching, while less common with homebrewers due to cost, can result in "yeast bite" or lack of characteristic esters in certain styles.

How It Works: The Math

This calculator determines the total biomass needed based on your wort volume and sugar density (Original Gravity). The formula typically used relies on degrees Plato and a specific cell multiplier.

  • Degrees Plato (°P): An approximate conversion is (OG - 1) * 250. For example, 1.050 SG is roughly 12.5°P.
  • Target Cells: The standard formula is Volume (mL) * Plato * Pitch Rate.
  • Pitch Rates:
    • 0.35 – 0.5 M/mL/°P: Often sufficient for dry yeast in standard gravity ales due to high viability.
    • 0.75 M/mL/°P: The professional standard for ales to ensure consistency.
    • 1.5 M/mL/°P: The standard for lagers, which ferment colder and slower.

Dry Yeast Cell Density

There is significant debate regarding the number of cells in a gram of dry yeast. Manufacturers like Fermentis and Lallemand typically guarantee a minimum of 5-6 billion cells per gram. However, microscopic counts often reveal actual densities of 10 to 20 billion cells per gram. This calculator defaults to a conservative estimate of 10 billion cells/gram to ensure you pitch enough yeast without excessive waste.

Tips for Success

For high gravity beers (OG > 1.060), consider increasing your pitch rate to 1.0 or 1.25. For lagers, always double the pitch rate compared to ales. While rehydration of dry yeast was once strictly recommended, many modern dry yeast strains can be sprinkled directly onto the wort with excellent results.

function calculatePitchRate() { var batchGal = parseFloat(document.getElementById('batchSize').value); var og = parseFloat(document.getElementById('og').value); var rate = parseFloat(document.getElementById('pitchRate').value); var density = parseFloat(document.getElementById('yeastDensity').value); var packetSize = parseFloat(document.getElementById('packetSize').value); if (isNaN(batchGal) || isNaN(og) || isNaN(rate) || isNaN(density) || isNaN(packetSize)) { alert("Please fill in all fields with valid numbers."); return; } if (og < 1.0) { alert("Original Gravity must be greater than 1.000"); return; } // Convert Gallons to Liters var batchLiters = batchGal * 3.78541; // Convert SG to Plato // Simple formula: (SG – 1) * 1000 / 4 var plato = (og – 1) * 1000 / 4; // Calculate Total Cells Needed (Billions) // Formula: Volume (L) * Plato * Rate (M/mL/P) // Since 1 L = 1000 mL, the units align such that result is in Billions directly. // Example: 20L * 10P * 0.75 = 150 (Billion cells) var totalCells = batchLiters * plato * rate; // Calculate Grams Needed var gramsNeeded = totalCells / density; // Calculate Packs var packsNeeded = gramsNeeded / packetSize; // Display Results document.getElementById('results').style.display = 'block'; document.getElementById('resPlato').innerText = plato.toFixed(1) + " °P"; document.getElementById('resCells').innerText = Math.round(totalCells) + " Billion"; document.getElementById('resGrams').innerText = gramsNeeded.toFixed(1) + " g"; // Logic for pack display: e.g. "1.2 packs (Use 2)" var packsRounded = Math.ceil(packsNeeded); document.getElementById('resPacks').innerText = packsNeeded.toFixed(2) + " (" + packsRounded + " packs)"; }

Leave a Comment