Us-05 Pitch Rate Calculator

US-05 Pitch Rate Calculator for Homebrewers :root { –primary-color: #f39c12; –secondary-color: #2c3e50; –accent-color: #e67e22; –light-bg: #fdfbf7; –border-color: #ddd; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 20px; background-color: #f4f4f4; } .container { max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } h1, h2, h3 { color: var(–secondary-color); } h1 { text-align: center; border-bottom: 2px solid var(–primary-color); padding-bottom: 15px; margin-bottom: 30px; } .calculator-box { background-color: var(–light-bg); border: 1px solid var(–primary-color); border-radius: 8px; padding: 25px; margin-bottom: 40px; } .form-group { margin-bottom: 20px; } label { display: block; margin-bottom: 8px; font-weight: 600; color: var(–secondary-color); } input[type="number"] { width: 100%; padding: 12px; border: 1px solid var(–border-color); border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-hint { font-size: 0.85em; color: #666; margin-top: 5px; } button.calc-btn { background-color: var(–primary-color); color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; transition: background 0.3s; } button.calc-btn:hover { background-color: var(–accent-color); } #results-area { margin-top: 30px; border-top: 1px solid var(–border-color); padding-top: 20px; display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; } .result-label { font-weight: 600; } .result-value { font-size: 1.2em; color: var(–secondary-color); font-weight: bold; } .highlight-result { background-color: #fff8e1; padding: 15px; border-radius: 4px; border-left: 5px solid var(–primary-color); margin-top: 15px; } .highlight-result .result-value { color: var(–accent-color); font-size: 1.5em; } article { margin-top: 40px; border-top: 1px solid #eee; padding-top: 20px; } .info-box { background: #eef2f5; padding: 15px; border-radius: 5px; margin: 20px 0; }

US-05 Pitch Rate Calculator

Total volume of wort in the fermenter.
Specific Gravity reading (e.g., 1.050).
Standard Ale: 0.75. High Gravity/Lager: 1.0 – 1.5.
SafAle US-05 conservative estimate: 10-18B/g. Fermentis guarantees >6B/g.
Standard US-05 homebrew packet is 11.5g.

Pitching Requirements

Gravity in Plato (°P):
Total Cells Required:
Total Grams of US-05 Needed:
Number of 11.5g Packets:

Optimizing Fermentation with the US-05 Pitch Rate Calculator

Fermentis SafAle US-05 is one of the most popular dry ale yeast strains in the world, known for its clean profile, high flocculation, and reliable attenuation. However, simply sprinkling a packet into your wort isn't always enough to guarantee a healthy fermentation. Under-pitching can lead to off-flavors (like esters or phenols), stuck fermentations, or increased lag time, which exposes your beer to infection risks.

This US-05 Pitch Rate Calculator helps you determine exactly how much dry yeast you need based on your batch size and original gravity, ensuring a clean and consistent fermentation every time.

How to Use This Calculator

  1. Batch Volume: Enter the amount of wort you are putting into the fermenter in gallons.
  2. Original Gravity (OG): Enter the specific gravity of your wort (e.g., 1.050). This determines the sugar density the yeast must consume.
  3. Target Pitch Rate: The standard for ales is typically 0.75 million cells / mL / °P. For high gravity beers (above 1.060), you may want to increase this to 1.0.
  4. Yeast Density: While Fermentis guarantees >6 billion cells per gram, fresh packets often contain 10 to 18 billion viable cells per gram. We default to 10 billion as a safe, conservative estimate.

Why Pitch Rate Matters for US-05

The Formula:
Total Cells Needed (Billions) = (Pitch Rate) × (Volume in mL) × (Degrees Plato)

SafAle US-05 is a robust "Chico" strain (American Ale), but it still adheres to biological limits. If you pitch too few cells (under-pitching), the yeast becomes stressed. Stressed yeast reproduces excessively to build colony mass, which depletes sterols and oxygen reserves, often resulting in:

  • Diacetyl: A buttery off-flavor.
  • Acetaldehyde: A green apple taste indicating incomplete fermentation.
  • Fusels: Hot alcohol flavors.

Rehydration vs. Direct Pitching

Historically, brewers were advised to rehydrate dry yeast in warm water before pitching. However, recent studies and updated guidelines from Fermentis (called "Easy-2-Use") suggest that US-05 can be pitched directly into the wort without significant loss of viability, provided the wort temperature is appropriate (typically 64°F – 72°F or 18°C – 22°C for US-05).

Whether you rehydrate or direct pitch, ensuring you have the correct weight of yeast based on this calculator is the most critical step toward a professional-quality homebrew.

Frequently Asked Questions

Is one packet enough for 5 gallons?

For a standard gravity ale (1.050 OG) at 5 gallons, one 11.5g packet of US-05 is usually sufficient, providing a pitch rate close to 0.75 M cells/mL/°P if assuming ~15B cells/g. However, for high gravity beers (IPAs, Stouts above 1.065), one packet is often insufficient, and this calculator will likely recommend 2 packets.

What is °P (Degrees Plato)?

Plato is a scale used to measure the density of beer wort in terms of percentage of extract by weight. It is preferred in professional brewing calculations over Specific Gravity. This calculator automatically converts your SG input into Plato for the calculation.

function calculateYeast() { // 1. Get Input Values var batchGal = parseFloat(document.getElementById("batchSize").value); var og = parseFloat(document.getElementById("og").value); var targetRate = parseFloat(document.getElementById("targetRate").value); var density = parseFloat(document.getElementById("yeastDensity").value); var packetSize = parseFloat(document.getElementById("packetSize").value); // 2. Validation if (isNaN(batchGal) || batchGal <= 0) { alert("Please enter a valid Batch Volume."); return; } if (isNaN(og) || og <= 1.0) { alert("Please enter a valid Original Gravity (e.g., 1.050)."); return; } if (isNaN(targetRate) || targetRate <= 0) { alert("Please enter a valid Target Pitch Rate."); return; } if (isNaN(density) || density <= 0) { alert("Please enter a valid Yeast Density."); return; } // 3. Conversions and Math // Convert Gallons to Milliliters (1 Gal = 3785.41 mL) var volumeMl = batchGal * 3785.41; // Convert SG to Plato // Formula: °P = (-1 * 616.868) + (1111.14 * sg) – (630.272 * sg^2) + (135.997 * sg^3) // Simplified polynomial for reasonable brewing ranges var plato = (-1 * 616.868) + (1111.14 * og) – (630.272 * Math.pow(og, 2)) + (135.997 * Math.pow(og, 3)); // Calculate Total Cells Needed (in Billions) // Formula: (Rate * mL * Plato) / 1000 (to get billions, since rate is in Millions) var cellsNeededBillions = (targetRate * volumeMl * plato) / 1000; // Calculate Grams Needed var gramsNeeded = cellsNeededBillions / density; // Calculate Packets Needed var packetsNeeded = gramsNeeded / packetSize; // 4. Update UI document.getElementById("resPlato").innerHTML = plato.toFixed(2) + " °P"; document.getElementById("resCells").innerHTML = cellsNeededBillions.toFixed(0) + " Billion cells"; document.getElementById("resGrams").innerHTML = gramsNeeded.toFixed(1) + " g"; // Round packets up to 1 decimal place or show simple fraction logic visually // Usually brewers round to nearest half packet or whole packet, here we show exact decimal document.getElementById("resPackets").innerHTML = packetsNeeded.toFixed(2) + " (" + Math.ceil(packetsNeeded) + " whole packets)"; // Show results document.getElementById("results-area").style.display = "block"; }

Leave a Comment