

Inductors are passive electrical components that store energy in a magnetic field when electrical current flows through them. They are typically constructed as coils of wire wound around a core, which can be air, ferrite, or another magnetic material. Inductors are widely used in electronic circuits for their ability to resist changes in current, making them essential in filtering, energy storage, and tuning applications.








Inductors are typically two-terminal components. Below is a general description of the terminals:
| Pin | Description |
|---|---|
| Pin 1 | Input terminal for current flow. |
| Pin 2 | Output terminal for current flow. |
For surface-mount or through-hole inductors, the pins are interchangeable as they are not polarized.
Below is an example of using an inductor in a simple LC filter circuit to smooth a PWM signal from an Arduino UNO:
/*
Example: Using an LC filter with Arduino UNO
This code generates a PWM signal on pin 9, which is smoothed using an LC filter.
The inductor (e.g., 100 µH) and capacitor (e.g., 10 µF) form the filter.
*/
const int pwmPin = 9; // PWM output pin
void setup() {
pinMode(pwmPin, OUTPUT); // Set pin 9 as output
}
void loop() {
analogWrite(pwmPin, 128); // Output a 50% duty cycle PWM signal
delay(1000); // Wait for 1 second
analogWrite(pwmPin, 255); // Output a 100% duty cycle PWM signal
delay(1000); // Wait for 1 second
}
Inductor Overheating:
Unexpected Noise or EMI:
Low Efficiency in Power Circuits:
Incorrect Inductance Value:
Q: Can I use any inductor for high-frequency applications?
A: No, you need an inductor with a high self-resonant frequency (SRF) and low parasitic capacitance.
Q: Are inductors polarized?
A: No, inductors are not polarized and can be connected in either direction.
Q: How do I calculate the required inductance for a filter?
A: Use the formula ( L = \frac{1}{(2\pi f)^2 C} ), where ( f ) is the cutoff frequency and ( C ) is the capacitance.
Q: What happens if the inductor saturates?
A: The inductance decreases significantly, and the inductor may overheat or fail.
By following this documentation, you can effectively select, use, and troubleshoot inductors in your electronic projects.