3

I'm having a hard time understanding why one couldn't measure the inductance of a coil using a simple multimeter capable of measuring AC voltages and currents:

schematic

simulate this circuit – Schematic created using CircuitLab

The total series impedance could be expressed as:

$${Z=R+R_L+\omega L}$$

EDIT: given the 90 degrees phase difference, the correct formula is:

$$Z=\sqrt{(R+R_L)^2+(\omega L)^2}$$

Now, if I'm not mistaking, the same impedance can be expressed as the ratio between the measured effective AC voltage and current, V and I (as complex values):

$$Z=\frac{V}{I}$$

We can then obtain L as:

$$L=\frac{V/I-(R+R_L)}{2\pi f}$$

EDIT: the correct formula is:

$$L=\frac{\sqrt{(V/I)^2-(R+R_L)^2}}{2\pi f}$$

In conclusion, by measuring the AC voltage, current, coil DC resistance and by choosing a well known external resistor, we could find out the coil inductance.

Am I mistaking? If yes, where? If no, why all google searches for "measuring inductance" present more complex methods involving function generators, oscilloscopes and phase-shifting?

ccrisan
  • 133
  • 1
  • 5
  • 2
    If the inductance is large enough to give meaningful voltages at 50/60 Hz, then no problem. For uH, you need higher frequency to get enough amplitude. – winny Mar 08 '17 at 21:32
  • 1
    But you ARE using a function generator – Trevor_G Mar 08 '17 at 21:32
  • @ccrisan: You method is actually very good, because you can measure the inductance at various frequencies. It's not constant over frequency as soon some ferromagnetic material is involved. – Janka Mar 08 '17 at 21:36
  • 1
    readme http://electronics.stackexchange.com/questions/290327/verifying-impedance-of-capacitors-inductors-resistors/290337#290337 – Tony Stewart EE75 Mar 08 '17 at 21:41
  • You don't need an ammeter. Just measure the source voltage and the voltage across the resistor. – Bruce Abbott Mar 08 '17 at 21:42
  • You can, and methods like these work. If your going to higher frequencies ~50Mhz parasitics in components will need to be accounted for. – Voltage Spike Mar 08 '17 at 21:53
  • 1
    If your reference is a 50 Ohm generator and the nomograph indicates a frequency for 50 Ohms in your range , you can use directly across generator for 50%Voc. Other method is use a known Cap and sweep for resonant frequency and use nomograph or compute. – Tony Stewart EE75 Mar 08 '17 at 21:53
  • Oh, it also works better to do a series of frequencies with multiple calculations for L and then average or run a polynomial fit on them to reduce noise – Voltage Spike Mar 08 '17 at 22:02
  • 1
    While for instantaneous voltage: \$ V(t) = V_{R+R_L}(t) + V_L(t) \$. A voltmeter does not give instantaneous measurements, it may give RMS measurements. For that, \$ V_{RMS} = \sqrt{{V_{R+R_L.RMS}}^2 + {V_{L.RMS}}^2} \$. So you need to adjust your formula accordingly. Or just measure the current and the voltage across the inductor directly. – rioraxe Mar 08 '17 at 22:26
  • 1
    RLC meters use fixed frequency options from 120Hz to 1MHz with constant AC current and measure the voltage amplitude and phase for ADC accurate readings of all parasitic, Rs, Rp, D.F. and Q values in addition to LC value for "value-added" features ( pun intended) – Tony Stewart EE75 Mar 08 '17 at 23:59
  • 1
    *"Am I mistaking?"* No. You just need to remember that the impedance is a complex number so phase angle has a role to play unless it is close to zero aka reactive impedance is small vs resistance. There are other ways to measure inductance. – dannyf Mar 08 '17 at 22:59

1 Answers1

4

Your calculation is wrong - sorry! The inductance causes a phase lag to the current. The impedance of the inductor for that reason can't add directly to the resistances The proper formula for the total impedance is

$$Z = \frac{V}{I} = \sqrt{(R+RL)^2 + (\omega L)^2}$$

[Offtopic : This formula is easily derived by using the complex phasor calculus. That calculus is developed for AC circuit analysis nearly 125 years ago]

L must be solved from this equation. The result is

$$L= \frac{\sqrt{Z^2-(R+RL)^2}}{\omega}$$

This method is not practical if the inductance is small, say 1 mH or less.

For sub-mH inductors you must have quite high frequency to have well measurable U and I. You run out of the frequency range of your multimeter. Additionally: The stray capacitances make disturbing currents that bypass the coil and the skin effect makes the resistance of the coil much higher than its DC resistance.

Thus in uH range you should start to use for example LC resonance as the grounding of the measurements. Add a well known series C or a parallel C. Have an external diode rectifier for your voltmeter. You can find the resonant frequency and solve the L from the equation of the reaonant frequency. Even the stray capacitances can be solved by adding 1...2 new known capacitors.

Dave Tweed
  • 168,369
  • 17
  • 228
  • 393
  • it may be advantageous if you plan to stick around to change your profile name to set you apart from the other users that don't intend to stick around. Its hard to tell users that say user followed by 6 digits apart. – Voltage Spike Mar 09 '17 at 06:32
  • Thanks for your answer. I corrected my formulas according to your remarks. I also selected this as the answer since you gave the actual reason why this method is impractical (high frequencies not playing well with AC multimeters). – ccrisan Mar 09 '17 at 07:44