Calculate Project Cost

.coffee-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 600px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #fdfdfd; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .coffee-calc-container h2 { color: #4b3621; text-align: center; margin-top: 0; font-size: 24px; border-bottom: 2px solid #d2b48c; padding-bottom: 10px; } .calc-section { margin-bottom: 30px; padding: 15px; background: #fff; border-radius: 8px; border-left: 5px solid #6f4e37; } .calc-section h3 { margin-top: 0; font-size: 18px; color: #6f4e37; } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; color: #333; } .input-group input, .input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .calc-btn { background-color: #6f4e37; color: white; border: none; padding: 12px 20px; border-radius: 6px; cursor: pointer; width: 100%; font-size: 16px; font-weight: bold; transition: background-color 0.3s; } .calc-btn:hover { background-color: #4b3621; } .result-display { margin-top: 15px; padding: 15px; background-color: #f9f5f0; border-radius: 6px; text-align: center; font-weight: bold; color: #2c1e12; min-height: 20px; } .coffee-article { max-width: 800px; margin: 40px auto; line-height: 1.6; color: #333; } .coffee-article h2 { color: #6f4e37; margin-top: 30px; } .coffee-article table { width: 100%; border-collapse: collapse; margin: 20px 0; } .coffee-article th, .coffee-article td { border: 1px solid #ddd; padding: 12px; text-align: left; } .coffee-article th { background-color: #f4ece4; } .highlight { color: #6f4e37; font-weight: bold; }

Coffee to Water Ratio Calculator

I have Coffee, how much Water?

Enter values to see result

I want to brew X amount of Water:

Enter values to see result

The Ultimate Guide to Coffee to Water Ratios

Brewing the perfect cup of coffee is a science, and the most critical variable in that science is the coffee-to-water ratio. Whether you are using a French Press, a V60 pour-over, or a standard drip machine, the ratio determines the strength, body, and flavor extraction of your brew.

What is the "Golden Ratio"?

The Specialty Coffee Association (SCA) suggests a "Golden Ratio" of 1:18. This means for every 1 gram of coffee, you use 18 grams (or milliliters) of water. However, most specialty coffee enthusiasts prefer a slightly stronger brew, ranging between 1:15 and 1:17.

Recommended Ratios by Brew Method

Method Ratio Range Description
French Press 1:12 to 1:15 Coarse grind, needs a lower ratio for a heavy, bold body.
Pour Over (V60/Chemex) 1:15 to 1:17 Medium-fine grind, highlighting acidity and clarity.
Aeropress 1:10 to 1:15 Highly versatile; can produce concentrate or standard strength.
Cold Brew 1:4 to 1:8 A concentrate meant to be diluted with water or milk.

How to Use This Calculator

Precision is key. We highly recommend using a digital scale to measure your ingredients in grams rather than using scoops or tablespoons. Since 1ml of water is exactly 1 gram, the math becomes very simple.

  • Scenario A: You have a bag of beans and want to know how much water to pour. Input your coffee weight and your desired ratio.
  • Scenario B: You have a specific mug or carafe size (e.g., 500ml). Input the water volume to find out exactly how many beans to grind.

Adjusting for Taste

If your coffee tastes too bitter or strong, try increasing the ratio (e.g., moving from 1:15 to 1:17). This adds more water, diluting the strength. If your coffee tastes sour or thin, decrease the ratio (e.g., moving from 1:17 to 1:15) to use more coffee beans for the same amount of water.

function calculateWater() { var coffeeGrams = document.getElementById("grams_input").value; var ratio = document.getElementById("ratio_1").value; var resultDiv = document.getElementById("water_result"); if (coffeeGrams > 0 && ratio > 0) { var waterNeeded = coffeeGrams * ratio; resultDiv.innerHTML = "Use " + waterNeeded.toFixed(1) + " ml (grams) of water."; resultDiv.style.color = "#6f4e37"; } else { resultDiv.innerHTML = "Please enter valid positive numbers."; resultDiv.style.color = "red"; } } function calculateCoffee() { var waterAmount = document.getElementById("water_input").value; var ratio = document.getElementById("ratio_2").value; var resultDiv = document.getElementById("coffee_result"); if (waterAmount > 0 && ratio > 0) { var coffeeNeeded = waterAmount / ratio; resultDiv.innerHTML = "Use " + coffeeNeeded.toFixed(1) + " grams of coffee beans."; resultDiv.style.color = "#6f4e37"; } else { resultDiv.innerHTML = "Please enter valid positive numbers."; resultDiv.style.color = "red"; } }

Leave a Comment