# $Id: bread-builders-calc.php,v 1.8 2005/03/14 21:39:09 chris Exp $ # # Calculate flour, water, salt based on independent variables # of total weight, sponge:total ratio, and hydration bakers percent # Assumes SpongeHydration = 1.0. $SaltBakersPercent = 0.02; // baker's percent: 1.00 flour + 0.02 salt $TotalWeight = $_GET['TotalWeight']; $SpongeTempRatio = $_GET['SpongeTempRatio']; $TotalHydration = $_GET['TotalHydration']; if (! $TotalWeight) $TotalWeight = 1500; //# grams for 2x 750g loaves (2x 1.65 pound) if (! $SpongeTempRatio ) $SpongeTempRatio = 0.20; // sponge:total if (! $TotalHydration ) $TotalHydration = 0.62; // baker's percent, 1.00 flour + 0.62 water echo "
Calculate amount of flour, water, salt, and natural leavan starter you will need based on Total Weight desired, Total hydration (according to flour's protein), and Sponge:NewDough ration (according to ambient temperature).
Calculations based on numbers presented in Daniel Wing's The Bread Builders.
"; // PHP: '\n' doesn't get expanded but "\n" does! echo '| Component | flour(g) | water(g) | other(g) |
|---|---|---|---|
| Total | $TotalFlour | $TotalWater | |
| Sponge | $SpongeFlour | $SpongeWater | |
| New Dough | $NewFlour | $NewWater | |
| New Salt | $NewSalt | ||
| StorageLeaven from Fridge | $OrigStorageLeaven |
You want to start with a Storage Leaven then expand 5x then 3x. This should give you twice as much as you need so you can put half back in the Fridge.
'; $fp = fopen('bread-builders-notes', 'r'); echo ''; fpassthru($fp); // does fclose() implicitely echo ''; echo '