Fermentation Time Calculator Formula
Understand the math behind the fermentation time calculator. Each variable explained with a worked example.
Formulas Used
Minimum Fermentation Time
min_days = round(base_days * temp_factor * salt_factor * 0.7 * 10) / 10Ideal Fermentation Time
ideal_days = round(base_days * temp_factor * salt_factor * 10) / 10Maximum Fermentation Time
max_days = round(base_days * temp_factor * salt_factor * 1.5 * 10) / 10Variables
| Variable | Description | Default |
|---|---|---|
ferment_type | Fermentation Type | 1 |
temp_f | Ambient Temperature(°F) | 70 |
salt_pct | Salt % (weight of salt / weight of vegetables)(%) | 2.5 |
base_days | Derived value= (ferment_type == 1) * 21 + (ferment_type == 2) * 10 + (ferment_type == 3) * 0.5 + (ferment_type == 4) * 7 | calculated |
temp_factor | Derived value= 70 / temp_f | calculated |
salt_factor | Derived value= 1 + (salt_pct - 2.5) * 0.2 | calculated |
How It Works
How Fermentation Time Is Estimated
Key Factors
Base Times (at 70°F, 2.5% salt)
Worked Example
Estimate sauerkraut fermentation time at 70°F with 2.5% salt.
ferment_type = 1temp_f = 70salt_pct = 2.5
- 01Base time for sauerkraut = 21 days.
- 02Temp factor = 70 / 70 = 1.
- 03Salt factor = 1 + (2.5 - 2.5) x 0.2 = 1.
- 04Ideal time = 21 x 1 x 1 = 21 days.
- 05Minimum = 21 x 0.7 = 14.7 days.
- 06Maximum = 21 x 1.5 = 31.5 days.
Ready to run the numbers?
Open Fermentation Time Calculator