Magnetic Materials, Inductance, and Energy
Magnetic materials determine how strongly a current produces magnetic flux and how much energy is stored or lost in a magnetic system. In free space, . In matter, electron orbital and spin moments contribute magnetization, so the relationship can be linear, nonlinear, hysteretic, or anisotropic. Engineering devices such as solenoids, transformers, inductive sensors, motors, and magnetic storage depend on these material effects.
Inductance is the circuit-level measure of magnetic flux linkage per current. Like capacitance, it is fundamentally geometric and material. A current creates , the medium produces , flux links conductors, and energy is stored in the magnetic field. This page covers magnetic materials, boundary conditions, self and mutual inductance, and magnetic energy.

Figure: Iron filings provide a physical picture of magnetic field direction and field-line density. Image: Wikimedia Commons, Alexander Wilmer Duff, public domain in the United States.
Definitions
Magnetization is magnetic dipole moment per unit volume. The macroscopic fields satisfy
For a linear isotropic material,
where
Materials are often grouped as diamagnetic ( small), paramagnetic ( small), and ferromagnetic (large, nonlinear, often hysteretic).
Ferromagnetic behavior is especially important in engineering because large permeability can concentrate flux and greatly increase inductance. The tradeoff is nonlinearity. As increases, domains become increasingly aligned and the material approaches saturation; additional current then produces much less additional . A design that assumes constant high beyond saturation can underpredict current, overpredict inductance, and miss heating or waveform distortion.
Magnetic boundary conditions follow from and Ampere's law. At an interface with unit normal from medium 1 to medium 2,
and
where is free surface current density.
Flux linkage is
and self-inductance is
Mutual inductance between circuits is
where is flux linkage of circuit 2 caused by current .
Magnetic energy density in a linear medium is
Key results
For a long solenoid with turns, length , current , and core permeability , Ampere's law gives approximately
inside the solenoid. If the cross-sectional area is , the flux is
Flux linkage is , so
This formula is approximate because it neglects fringing and assumes uniform field, but it captures the scaling: inductance increases with permeability, turns squared, and area, and decreases with magnetic path length.
For a coaxial line with inner radius , outer conductor inner radius , and nonmagnetic dielectric, the external magnetic field between conductors is
The magnetic energy per unit length is
and setting gives
Hysteresis in ferromagnetic materials means the - curve depends on history. Energy is lost as heat over a cycle, with loss per unit volume equal to the area enclosed by the hysteresis loop.
Magnetic circuits provide a useful approximation for core devices. Reluctance plays a role analogous to resistance, flux is analogous to current, and magnetomotive force is analogous to voltage. The analogy is not exact because fringing, leakage flux, saturation, and hysteresis are field effects, but it gives fast estimates for transformers, inductors, relays, and electromagnets.
Mutual inductance depends on how much flux from one circuit links another. The coupling coefficient is defined by
Ideal transformers assume tight coupling, negligible winding resistance, and negligible core loss. Real transformers depart from this through leakage inductance, winding capacitance, finite permeability, and frequency-dependent losses.
Magnetic energy is sometimes counterintuitive in high-permeability cores. Since for a linear material, a high- region can carry large flux density with relatively small and comparatively low energy density for a given . Air gaps often store a significant fraction of the energy in inductors because the gap has low permeability and therefore requires larger . This is why gapped cores are used when an inductor must store energy without saturating.
Boundary conditions explain flux concentration. Normal is continuous across an interface, but tangential changes according to permeability when there is no surface current. Flux tends to prefer high-permeability paths because they require less magnetomotive force for a given flux. The word "prefer" is only shorthand; the actual field still satisfies Maxwell's equations and material relations everywhere.
Core loss has multiple mechanisms. Hysteresis loss comes from cycling around a - loop. Eddy-current loss comes from currents induced inside conducting magnetic material by time-varying flux. Laminated steel, ferrites, powdered iron, and gapped cores are different engineering responses to these losses and saturation limits. The best core material depends strongly on frequency, flux density, waveform, temperature, and required energy storage.
Inductance measurements can also be frequency dependent. At low frequency, winding resistance and core permeability may dominate. At high frequency, skin effect, proximity effect, inter-winding capacitance, and core dispersion alter the apparent impedance. A quoted inductance value is therefore incomplete without test frequency and bias conditions for precision work.
The polarity of mutual inductance is tracked with dot convention in circuits. If currents enter dotted terminals simultaneously and their fluxes reinforce, the mutual voltage terms have the same sign. The dot notation is a compact circuit symbol for magnetic-field orientation and winding sense; assigning it carelessly can reverse transformer or coupled-inductor behavior.
Always pair inductance formulas with the assumed flux path.
Visual
| Quantity | Electric analogue | Magnetic expression |
|---|---|---|
| Permittivity/permeability | ||
| Stored energy density | ||
| Capacitance/inductance | ||
| Boundary normal | jump from charge | continuous |
| Boundary tangential | continuous electrostatically | jumps by surface current |
Worked example 1: Inductance of a long solenoid
Problem: A solenoid has turns, length m, cross-sectional area , and a nonmagnetic core. Find .
Step 1: Use the long-solenoid formula:
Step 2: For a nonmagnetic core, .
Step 3: Substitute:
Step 4: Compute :
Step 5: Finish:
Answer:
Check: If a high- core were inserted without saturation, would scale upward by approximately .
Worked example 2: Coaxial inductance per unit length
Problem: A coaxial line has mm and mm with nonmagnetic dielectric. Find neglecting internal conductor inductance.
Step 1: Use the external inductance formula:
Step 2: Substitute and :
Step 3: Simplify the coefficient:
Step 4: Compute:
Answer:
Check: Together with a typical coaxial capacitance of tens of pF/m, this gives a characteristic impedance in the tens of ohms, consistent with practical cables.
Code
import numpy as np
mu0 = 4 * np.pi * 1e-7
def solenoid_L(N, area, length, mu_r=1):
return mu0 * mu_r * N**2 * area / length
def coax_L_per_m(a, b, mu_r=1):
return mu0 * mu_r / (2 * np.pi) * np.log(b / a)
print("solenoid L =", solenoid_L(600, 4e-4, 0.30), "H")
print("coax L' =", coax_L_per_m(0.5e-3, 2.5e-3), "H/m")
Common pitfalls
- Assuming is constant for ferromagnetic materials. Saturation and hysteresis can dominate real designs.
- Confusing flux with flux linkage .
- Forgetting the scaling of solenoid inductance.
- Using electric boundary-condition intuition for magnetic fields. Normal is continuous; tangential jumps with surface current.
- Ignoring fringing in short coils or magnetic gaps.
- Equating high permeability with unlimited energy storage. High- cores can saturate and often introduce loss.
- Forgetting that inductance can depend on current in nonlinear magnetic materials.
Connections
- Magnetostatic forces, Biot-Savart law, and Ampere law for magnetic field generation by currents.
- Transmission-line models and wave equations for and in guided propagation.
- Maxwell equations for time-varying fields for inductive voltage and transformer action.
- Gauss law, dielectrics, and boundaries for comparison with electric materials.