Gluten Development Score Calculator Formula
Understand the math behind the gluten development score calculator. Each variable explained with a worked example.
Formulas Used
Gluten Development Score
gluten_score = round(protein_pct * 5 + mix_minutes * 3 + folds * 5 + (autolyse > 0 ? 10 : 0) + (hydration >= 65 ? (hydration - 65) * 0.3 : 0))Windowpane Test
windowpane_likely = (protein_pct * 5 + mix_minutes * 3 + folds * 5 + (autolyse > 0 ? 10 : 0)) >= 90 ? 1 : 0Crumb Openness Factor
crumb_prediction = round((hydration - 55) * 1.5 + folds * 3)Variables
| Variable | Description | Default |
|---|---|---|
protein_pct | Flour Protein(%) | 12 |
hydration | Dough Hydration(%) | 70 |
mix_minutes | Mixing / Kneading Time(minutes) | 10 |
folds | Stretch-and-Fold Sets | 0 |
autolyse | Autolyse Time(minutes) | 0 |
protein_score | Derived value= protein_pct * 5 | calculated |
hydration_bonus | Derived value= hydration >= 65 ? (hydration - 65) * 0.3 : 0 | calculated |
How It Works
How to Estimate Gluten Development
Scoring Formula
Score = (Protein x 5) + (Mix Minutes x 3) + (Folds x 5) + Autolyse Bonus + Hydration Bonus
Interpretation
The windowpane test (stretching dough thin enough to see light through it) typically passes when the score is 90 or above. Autolyse (resting flour and water before adding salt and yeast) contributes significant passive development.
Worked Example
12% protein flour, 70% hydration, 10 minutes mixing, no folds, no autolyse.
protein_pct = 12hydration = 70mix_minutes = 10folds = 0autolyse = 0
- 01Protein score = 12 x 5 = 60
- 02Mixing score = 10 x 3 = 30
- 03Folds = 0 x 5 = 0
- 04Autolyse bonus = 0
- 05Hydration bonus = (70 - 65) x 0.3 = 1.5
- 06Total = round(60 + 30 + 0 + 0 + 1.5) = 92 (strong development)
Ready to run the numbers?
Open Gluten Development Score Calculator