Ian C
Member
- Joined
- Feb 8, 2009
- Messages
- 1,238
- Format
- Large Format
Calculating f-stop Timing in Enlarging
A number of threads on Photrio involve f-stop timing in enlarging. We’ve discussed dedicated f-stop timers, referencing the standard film-speed-number sequence, computed tables, time factors, and so forth. All of these can be useful. Another way to do this is to calculate the required time with a simple formula and an inexpensive calculator. The process is fast and easy. It can be more so by programming the formula into a calculator that allows it.
Whether you use a program or not, this allows you to try f-stop printing without the expense of an f-stop timer. If you find it sufficiently valuable, you might then decide to invest in an f-stop timer.
The following gives two useful formulas with examples for their use. The exposure times are rounded to the nearest 0.1 second.
Exposure Time for a Desired f-stop Change
If you made a print at t seconds and you want another to be Δ stops lighter or darker, the required exposure time is
(1) T = t*2^Δ
Where Δ is positive for a more exposure and Δ is negative for a less exposure.
Example 1. You’ve made a print at t = 17 seconds and you want to increase the exposure 0.4 stops. The new exposure time is
T = 17 seconds*2^0.4 = 22.4 seconds
Example 2. Your first print is 24 seconds, but you judge it to be 1/3 stop too dark. The required exposure time is
T = 24*2^(- 1/3) = 19 seconds
The Hewlett-Packard RPL code that accomplishes this is
<< 2 SWAP ^ * >>
The ordered argument list is: t, Δ
Calculate Burn/Dodge Time
(2) Burn/Dodge time = t*(2^Δ – 1)
Δ = the desired difference in f-stops (Δ is negative for dodging time).
Example: Suppose you’ve made a satisfactory 20-second print but want the sky 2/3-stop darker and an area in the foreground 1/2-stop lighter.
Burn(20 seconds, 2/3 stop) = 20 seconds*(2^(2.3) – 1) = 11.7 seconds.
Dodge(20 seconds, -1/2 stop) = 20 seconds*(2^(-1/2) – 1) = -5.9 seconds.
If you choose to program a calculator to automate the calculation, the Hewlett-Packard RPL code for burn/doge time is
<< 2 SWAP ^ 1 - * >>
The ordered argument list is: t, Δ
These HP programs work on models 28C, 28S, 48S, 48SX, 48G, 48G+, 48GX, and the 49 and 50 series calculators using RPL programing. The coding for other calculators is simple as well.
Burns and Dodges in Split-Grade Printing
We must consider the filtering system we’re using. When using Ilford Multigrade Filters, grades 4, 4.5 and 5 exposures require TWICE the exposure time of grades 00 – 3.5 to obtain the same effective exposure.
On the other hand, most, if not all, variable-contrast heads are designed to use the same exposure times at all grades. Check the owner’s manual of your unit for specific information to be sure.
Split Grade Using a Variable Contrast Head
Example: You’ve made a satisfactory work print at
Overall grade 0 exposure = 12 seconds
Overall grade 5 exposure = 10 seconds
After examining the work print you decide on the following changes:
At grade 0:
1. Dodge a small, overly dark area, by -1/3 stop.
Dodge(12 seconds, - 1/3 stop) = -2.5 seconds.
2. Burn all four edges 1/2 stop.
Burn(12 seconds, 1/2 stop) = 5 seconds.
3. Burn the left side 1/2 stop = 5 seconds.
At grade 5:
4. Increase the overall grade 5 exposure by 1/4 stop to increases the overall contrast.
T(10 seconds, 1/4 stop) = 11.9 seconds.
5. Burn a too-light bottom left area 1/3 stop, noting that the grade 5 overall exposure is now 11.9 seconds.
Burn(11.9 seconds, 1/3 stop) = 3.1 seconds.
Note: If you find any of these times impractically short, you can close the lens one stop to double the time.
Using Ilford Multigrade Filters
For simplicity, I’ll assume the same exposure times with the Multigrade filters as in the previous example using a VC head, except for the necessary 2X time increase using the grade 5 Multigrade filter. Thus, the overall exposures of the work print are 12 seconds at grade 0 and 20 seconds at grade 5.
At grade 0:
1. Dodge the small overly-dark area by -1/3 stop.
Dodge(12 seconds, -1/3 stop) = 2.5 seconds.
2. Burn all four edges 1/2 stop
Burn(12 seconds, 1/2 stop) = 5 seconds
3. Burn left side 1/2 stop = 5 seconds
At grade 5:
The grade 5 burn/dodge times must be multiplied by 2X due to the increased density of the Multigrade filters of grades 4, 4.5, and 5. Thus, the overall grade 5 exposure is initially 20 seconds
4. Increase the overall grade 5 exposure by 1/4 stop.
T(20 seconds, 1/4 stop) = 23.8 seconds.
5. Burn the too-light lower left area 1/3 stop, noting that the overall grade 5 exposure is now 23.8 seconds.
Burn(23.8 seconds, 1/3 stop) = 6.2 seconds.