Linear Response, Fluctuation-Dissipation, and Onsager Theory
Linear response theory asks how a system near equilibrium reacts to a weak external perturbation. The answer is not arbitrary: the same equilibrium fluctuations that occur without forcing determine the dissipative response when a small force is applied. Schwabl's nonequilibrium material uses this idea in stochastic dynamics, hydrodynamics, and relaxation functions.
Onsager's theory gives a complementary macroscopic statement. Thermodynamic forces drive fluxes, entropy production is nonnegative, and microscopic time-reversal symmetry implies reciprocal kinetic coefficients under suitable variable parities.
Definitions
Suppose a perturbation couples to an observable :
The linear response of observable is
In quantum mechanics, the Kubo response function is
In classical mechanics, the commutator is replaced by a Poisson-bracket form or an equivalent correlation formula.
For nonequilibrium thermodynamics, write fluxes and thermodynamic forces . Near equilibrium,
The entropy production rate is
Onsager reciprocity states, for variables with the same time-reversal parity,
With opposite parities or magnetic fields, signs and field reversal must be handled carefully.
Key results
The fluctuation-dissipation theorem relates response to equilibrium correlation functions. A simple classical version for Brownian motion is
or, more commonly,
Mobility is the steady velocity per applied force. The Einstein relation is
For electrical conduction in a simple relaxation picture, the conductivity can be written as a current-current correlation:
The exact prefactors depend on the definition of total current, but the conceptual structure is universal: transport coefficients are time integrals of equilibrium current fluctuations.
Onsager reciprocity follows from microscopic reversibility and the regression hypothesis: spontaneous equilibrium fluctuations regress according to the same laws as small externally prepared deviations. This is a deep connection between probability, dynamics, and macroscopic irreversible laws.
Entropy production constrains the matrix . For any vector ,
so the symmetric part of must be positive semidefinite.
Linear response is local in amplitude, not necessarily local in time. Memory kernels appear when slow variables retain history:
Ordinary transport laws such as Fourier's law are Markovian approximations valid when the memory kernel decays quickly compared with the time scale of macroscopic variation. Frequency-dependent conductivity, viscoelasticity, and dielectric response require the full time-dependent kernel.
The distinction between reactive and dissipative response is also important. The imaginary and real parts of a frequency-domain susceptibility are not independent; causality implies Kramers-Kronig relations. Dissipation is tied to the part of the response that is out of phase with the driving force, and fluctuation-dissipation relates that dissipative part to equilibrium noise spectra.
Onsager reciprocity has precise hypotheses. The variables must be chosen so their behavior under time reversal is known, the system must be near equilibrium, and microscopic dynamics must satisfy the appropriate reversibility condition. In a magnetic field , the reciprocal relation becomes Onsager-Casimir symmetry:
where is the time-reversal parity of variable .
Nonequilibrium thermodynamics is deliberately coarse. It does not derive the coefficients microscopically; it constrains their form and signs. Statistical mechanics, through Green-Kubo formulas or kinetic theory, supplies the coefficients from correlation functions. The two viewpoints meet in transport theory: macroscopic entropy production tells us what is allowed, while microscopic dynamics tells us how large the coefficients are.
A common example is thermoelectric coupling. A temperature gradient can drive an electric current, and an electric field can drive a heat current. Onsager reciprocity relates the corresponding cross-coefficients after the fluxes and forces are defined with consistent thermodynamic conventions. The symmetry is not obvious from macroscopic phenomenology alone; it encodes microscopic reversibility.
Linear response also explains why equilibrium simulations can compute nonequilibrium coefficients. Instead of imposing a large gradient and measuring a current, one may simulate an equilibrium system and integrate spontaneous current autocorrelations. This is conceptually powerful because it turns irreversible transport into an equilibrium fluctuation problem, but it is numerically demanding when correlations decay slowly or have long hydrodynamic tails.
The fluctuation-dissipation theorem has quantum versions with commutators, anticommutators, and frequency-dependent Bose factors. At high temperature, these reduce to classical relations. At low temperature, quantum zero-point fluctuations and operator ordering become important, especially for electromagnetic response and quantum condensed matter.
Susceptibilities also encode sum rules. Because response functions are built from commutators and equilibrium averages, their frequency integrals are constrained by equal-time commutation relations or conservation laws. In practice, these sum rules are checks on approximate calculations and numerical simulations.
The response framework is deliberately perturbative in the external field. If the perturbation changes the state substantially, heats the system, or drives it into a new phase, the linear kernel no longer describes the full behavior. Nonequilibrium steady states far from equilibrium require additional tools.
Even within linear response, choosing the correct observable matters. A conserved density responds differently from a nonconserved order parameter because conservation laws force slow hydrodynamic modes. This is why response functions often have strong frequency and wave-number dependence near critical points or in fluids.
Spatial dependence is handled by response functions rather than only . The limits and need not commute, especially for transport. Static susceptibilities, conductivities, and diffusion constants can therefore probe different aspects of the same microscopic dynamics.
Careful order of limits is therefore part of the physics, not just mathematical bookkeeping. The same warning appears in hydrodynamics, critical phenomena, and quantum transport calculations.
Visual
| Phenomenon | Force | Flux | Coefficient |
|---|---|---|---|
| Diffusion | particle current | diffusion coefficient | |
| Heat conduction | heat current | thermal conductivity | |
| Electrical conduction | electric field | charge current | conductivity |
| Viscosity | velocity gradient | momentum flux | viscosity |
Worked example 1: Einstein relation from drift and diffusion
Problem: An overdamped particle has mobility . Show that is required for equilibrium in potential .
Method:
- The Smoluchowski current is
- At equilibrium with no net current, :
- Use the Boltzmann density
- Its derivative is
- Substitute into the zero-current condition:
- Cancel common factors:
Checked answer: the relation is forced by the requirement that the stationary distribution be thermal.
Worked example 2: Entropy production for coupled fluxes
Problem: Let
Show that entropy production is nonnegative.
Method:
- The entropy production is
- Substitute the matrix:
- Complete the square:
- Both terms are nonnegative for all real .
Checked answer: the symmetric Onsager matrix is positive definite, so it satisfies the second-law constraint.
Code
import numpy as np
def green_kubo_diffusion(times, vacf):
return np.trapz(vacf, times)
gamma = 2.0
m = 1.0
kBT = 3.0
times = np.linspace(0, 20, 20001)
vacf = (kBT / m) * np.exp(-gamma * times / m)
D = green_kubo_diffusion(times, vacf)
L = np.array([[2.0, 1.0], [1.0, 3.0]])
eig = np.linalg.eigvalsh((L + L.T) / 2)
print("D from Green-Kubo", D)
print("Einstein D", kBT / gamma)
print("Onsager eigenvalues", eig)
Common pitfalls
- Applying linear response far from equilibrium where fluxes need not be linear in forces.
- Forgetting causality: response kernels vanish for negative time.
- Ignoring time-reversal parity in Onsager reciprocity, especially with magnetic fields or angular velocities.
- Confusing mobility with chemical potential; both are often denoted by variants of .
- Treating fluctuation-dissipation as optional noise tuning rather than a condition for thermal equilibrium.