One way to do it works like this. You need to know what the inside diameter of the spool is, along with the outside diameter of the partially empty spool. Count the number of laps of cable visible around the spool core. This is much easier if you have a full set of laps wound, but not impossible if you do not. If you have a partial outside lap, you can use the circumference of the inside lap and know you have a buffer to work with.
Let's say you have a core diameter of X inches. You count Y turns of cable which could be wound on each layer. You measure the outside circumference of the spool at Z inches. The thickness of the cable is W inches.
pi = 3.14159265358979, or 3.14, or 22/7, whatever you like.
(A). [Z + (2 * pi * X)] / 2 = mean circumference of spool
The reason I have you measure outside circumference and inside diameter is that those things are pretty easy to measure without unwinding the spool.
If you can guess the number of layers on the spool
, all you need to do is to multiply the result of (A) times the number of layers on the spool
times the number of turns per lap (Y), and voila, you'll have an impressively close estimate as to the length of cable on the spool.
l = ([Z + (2 * pi * X)] / 2) * n * Y
One should consider the number of adult beverages recently consumed before publishing such an equation. Remember to multiply the mean circumference times the number of turns per lap.
If you can't guess the number of layers visually, what you do is this.
1. Measure the inside lap diameter (D0)
2. Measure the outside lap diameter (D1)
3. Measure the cable thickness (W)
4. take the result of step 2, subtract the result of step 1, and divide by the result of step 3.
n = (D1-D0) / W. This will give you n, the number of layers of cable.
Edited 2226 02 Nov 2006 - [(D1 - D0) / W] * Y * [(Z + (2 * pi * X)] / 2] = length of cable on spool
Make sure you use the same dimension (like inches, for example) for D1, D0, W, X, Y and Z
Result will be in the same dimensional units.
There. Close enough; bedtime for Bonzo now.