Hi all! I'm trying to calculate the number of turns required for a given resistance of a wire, and have bumped up against my rusty math skills. Through various sources, I've figured out a formula for calculating the length of a coil:
Where:
N = Overall length of wire
D = Diameter (mean)
T = Number of Turns
W = Wire diameter
P = pitch (spacing)
d = Lead length
However, I'm having a hard time re-factoring this in terms of T (the number of turns for a specific length).
Can anyone whose math skills are better than mine lend a hand in this (or point out any errors in the formula above)? Thanks!
Code:
N = sqrt[ (πDT)^2 + (WT + P(T-1))^2 ] + d
Where:
N = Overall length of wire
D = Diameter (mean)
T = Number of Turns
W = Wire diameter
P = pitch (spacing)
d = Lead length
However, I'm having a hard time re-factoring this in terms of T (the number of turns for a specific length).
Can anyone whose math skills are better than mine lend a hand in this (or point out any errors in the formula above)? Thanks!