View source: R/sourdoughRecipeTimes.R
adjust_sourdough_time | R Documentation |
Adjust sourdough recipe fermentation and proofing times based on temperature.
adjust_sourdough_time(
original_time,
recipe_temp,
actual_temp,
q10 = 2,
temp_unit = c("F", "C")
)
original_time |
The original time(s) specified in the original recipe. |
recipe_temp |
The intended ambient temperature in the original recipe. |
actual_temp |
The actual ambient temperature used. |
q10 |
The |
temp_unit |
"F" for Fahrenheit; "C" for Celsius. |
Adjusts sourdough recipe fermentation and proofing times based on ambient
temperature. Suggested times are calculated using the Q_{10}
temperature coefficient, which describes how the rate of fermentation changes
with a 10°C temperature difference.
The adjusted sourdough fermentation or proofing time(s).
https://en.wikipedia.org/wiki/Q10_(temperature_coefficient)
adjust_sourdough_time(
original_time = c(12, 15, 18),
recipe_temp = 70,
actual_temp = 75
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.