Maxwell Equations for Time-Varying Fields
Time-varying electromagnetics is where electric and magnetic fields stop being separate subjects. A changing magnetic flux induces electric circulation, and a changing electric flux contributes to magnetic circulation. These two coupling mechanisms are the mathematical core of electromagnetic waves, transformers, generators, antennas, and capacitors at high frequency.
The static laws remain visible as limiting cases. Electrostatics keeps because . Magnetostatics keeps because displacement current is absent or negligible. In the full theory, Faraday's law and the Ampere-Maxwell law join Gauss's laws to form a complete field description.
Figure: The electromagnetic spectrum ties circuit-scale oscillations, radio links, optics, and thermal radiation into one continuum. Image: Wikimedia Commons, Inductiveload, public domain.
Definitions
Maxwell's equations in differential form are
The corresponding integral forms are
Faraday's law defines induced electromotive force:
For a moving conductor in a magnetic field, magnetic force separates charges and creates motional emf:
For a conducting loop that both moves and sits in a time-varying magnetic field, both transformer emf and motional emf can contribute.
The displacement current density is
It is not conduction of free charge through an insulator; it is the term required for magnetic fields generated by changing electric flux.
In material media, the fields are connected by constitutive relations such as , , and for linear isotropic conductors and dielectrics. Maxwell's equations alone give the field structure; constitutive relations describe the medium. Changing the medium changes wave speed, attenuation, boundary behavior, and energy storage without changing the four Maxwell equations themselves.
Key results
The continuity equation expresses local charge conservation:
It follows from taking divergence of the Ampere-Maxwell law:
This derivation shows why Maxwell's displacement current is not optional. Without it, Ampere's law would imply even when charge density changes.
For time-harmonic fields with convention,
Maxwell's curl equations become
In a conducting medium, and , so
The electromagnetic boundary conditions are
for finite magnetic flux density,
and
These are the full time-varying versions used at material boundaries.
The potentials also generalize in the time-varying case. Magnetic flux density can be written as
and the electric field can be represented as
The extra vector-potential term is exactly what electrostatics did not need. For radiating systems, retarded potentials account for finite propagation speed: changes in source charge or current affect distant fields only after a delay in free space. This delay is the field-theory version of causality and is essential for antennas.
Maxwell's equations also contain a built-in energy statement, Poynting's theorem. In words, the decrease of electromagnetic energy in a volume equals the outward power flow plus the power dissipated in charges and currents. The associated power-flow vector is , which becomes central in plane-wave and antenna analysis.
The quasistatic approximation is used when dimensions are small enough compared with wavelength that propagation delay across the device can be neglected. Circuit theory, electrostatics, and magnetostatics are all quasistatic approximations in appropriate limits. The approximation is not about frequency alone; it depends on both frequency and size. A 1 MHz signal may be quasistatic on a circuit board trace but not on a many-kilometer conductor.
Sign convention should be tracked consistently. These notes use phasors with time dependence, so Faraday's law becomes . Texts or software using reverse the signs of the terms. The physics is unchanged, but mixing conventions corrupts wave and impedance formulas.
Visual
| Equation | Differential form | Integral reading |
|---|---|---|
| Faraday | changing magnetic flux induces electric circulation | |
| Ampere-Maxwell | current and changing electric flux induce magnetic circulation | |
| Gauss electric | electric flux equals enclosed free charge | |
| Gauss magnetic | magnetic flux has no isolated source |
Worked example 1: Sinusoidal transformer emf
Problem: A stationary single-turn loop has area and normal aligned with a uniform magnetic flux density
Find the induced emf.
Step 1: Convert area:
Step 2: Magnetic flux through the loop is
Thus
Step 3: Faraday's law:
Step 4: Differentiate:
Step 5: Apply the minus sign:
Check: The induced emf is shifted from the magnetic flux, as differentiation requires.
Worked example 2: Displacement current in a capacitor
Problem: A parallel-plate capacitor has plate area and plate separation filled with dielectric . The electric field between plates is
Find the displacement current through the dielectric.
Step 1: Electric flux density is
Step 2: Displacement current density:
Step 3: Differentiate :
Step 4: Multiply by area to get current:
Step 5: Convert area:
Step 6: Amplitude:
Answer:
Check: The current leads the voltage-like electric field by , consistent with capacitor behavior.
Code
import numpy as np
import matplotlib.pyplot as plt
eps0 = 8.8541878128e-12
er = 4
A = 5e-4
E0 = 1e5
f = 1e6
omega = 2 * np.pi * f
t = np.linspace(0, 2/f, 1000)
E = E0 * np.cos(omega * t)
Id = A * eps0 * er * (-E0 * omega * np.sin(omega * t))
plt.plot(t * 1e6, E / E0, label="E / E0")
plt.plot(t * 1e6, Id / np.max(np.abs(Id)), label="Id normalized")
plt.xlabel("time (microseconds)")
plt.grid(True)
plt.legend()
plt.show()
Common pitfalls
- Treating induced emf as caused only by a physical battery. A nonconservative electric field can circulate around a loop.
- Forgetting Lenz's law sign in Faraday's law. The induced effect opposes the change in magnetic flux.
- Thinking displacement current is optional in capacitors. It is required for Ampere's law to be consistent across surfaces.
- Mixing total current and current density. is A/m; current requires surface integration.
- Using static boundary conditions but forgetting possible surface current in the tangential condition.
- Assuming time-varying fields can always be represented by scalar potential only. In general, vector potential is needed too.
- Forgetting that constitutive relations are material models, not additional Maxwell equations.
Connections
- Gradient, divergence, curl, and integral theorems for Stokes and divergence theorem links.
- Magnetostatic forces, Biot-Savart law, and Ampere law for the static form of Ampere's law.
- Plane waves in media for waves derived from Maxwell's equations.
- Complex functions and analyticity for phasor notation in time-harmonic fields.