Europe/Paris
Posts

The Physics of Atom Ejection and Thin-Film deposition

September 18, 2025
Sputtering is a principal technique for thin‑film deposition with broad application across modern technologies, from display and sensor fabrication to advanced coating systems. This article presents a concise, technically focused account of the fundamental physics that govern sputter erosion, practical considerations for constructing a basic direct‑current (DC) sputtering apparatus, and an introduction to magnetron sputtering for enhanced process efficiency. Numerical examples and reproducible Python snippets are included to illustrate key trends and to facilitate prototype development. Sputtering can be described as a sequence of momentum‑transfer events occurring when energetic ions from a low‑pressure plasma impinge on a solid target. Typical laboratory practice employs argon as the working gas; Ar+Ar^{+} ions accelerated by the sheath electric field deliver energy to near‑surface atoms of the target. Collisional cascades within the amorphous or polycrystalline target redistribute this energy; when sufficient energy exceeds surface binding, atoms are ejected and may subsequently condense on a nearby substrate to form a film. The quantitative description of sputter erosion in many practical regimes follows Sigmund’s linear cascade framework. The sputtering yield YY, the average number of atoms removed per incident ion. is a function of incident ion energy EE, the target surface binding energy U0U_0, and material‑dependent stopping characteristics. For normal incidence and ion energies in the hundreds to a few thousand electronvolts, a pedagogical approximation is: Y(E)ΓEU0Y(E) \approx \Gamma \sqrt{\frac{E}{U_0}} Here:
  • EE is the ion energy (eV),
  • U0U_0 is the surface binding energy (e.g., ~3.5 eV for copper),
  • Γ\Gamma is a prefactor that encapsulates material mass ratios and the effective knock‑on efficiency. One common semiempirical form is : Γ0.042α(M2M1+M2)2\Gamma \approx 0.042\,\alpha\left(\frac{M_2}{M_1+M_2}\right)^2
with α\alpha a dimensionless efficiency (typical order 0.1 - 0.3), and M1,M2M_1, M_2 the ion and target atomic masses respectively. This simplified model intentionally abstracts the full complexity: accurate predictions of Γ\Gamma and of energy dependence require nuclear stopping cross sections (e.g., Lindhard theory), consideration of electronic stopping, crystallographic channeling, and surface binding variations. Nevertheless, the square‑root dependence reflects the dominant behavior in the nuclear stopping regime: energy loss per collision scales sublinearly with incident energy, producing the observed E\sqrt{E} scaling in this domain. At higher energies, relativistic effects or channeling kick in, but for DC sputtering in electronics, this nails the order-of-magnitude behavior. Operationally, sputtering discharges for DC metal deposition are maintained with bias voltages in the range of several hundred volts (typically 200–1000 V). Working pressures are commonly in the millitorr range (1–10 mTorr), with ionization fractions on the order of 10410^{-4} to 10310^{-3}. Secondary electron emission from the target contributes significantly to sustaining the discharge by producing additional ionizing collisions, the visible glow results from excited neutral gas atoms undergoing radiative relaxation. Safety note. High‑voltage power supplies, vacuum systems, and process gases carry significant hazards (electrical shock, implosion, gas exposure). The following material is provided for conceptual and educational purposes only. Any laboratory implementation should follow institutional safety standards, applicable electrical codes, and manufacturer guidance. Personnel should be trained in vacuum practice, high‑voltage safety, and gas handling. Recommended configuration :
  1. Vacuum chamber. A stainless steel chamber or properly rated glass bell jar. Prefer metal chambers for low outgassing and robust grounding. Pumping should be achieved with a mechanical roughing pump followed by a turbomolecular pump when pressures below 10310^{-3} Torr are required.
  2. Target mounting. A 50–100 mm diameter target (Cu, Al, etc.) rigidly attached to a water‑cooled cathode backing plate to manage thermal load. Maintain a target‑to‑substrate spacing of a few centimetres (20–50 mm) depending on geometry.
  3. Gas delivery and pressure control. Argon introduced via a mass flow controller or calibrated leak valve at flow rates in the 1–10 sccm range. A suitable vacuum gauge (ion gauge or Pirani gauge combination) are used to monitor the operating pressure.
  4. Power supply and current limiting. A DC high‑voltage supply (adjustable up to ~1 kV) used in series with a ballast resistor or current limiting circuit (typical range 1–10 mA) to prevent uncontrolled arcing during ignition.
  5. Instrumentation and diagnostics. Optical observation of the discharge, a residual gas analyser if reactive gases are used, and post‑deposition characterisation (profilometry, ellipsometry, four‑point probe, or SEM) for thickness and film quality assessment.
Typical operating point and throughput. At an illustrative condition (≈500 V, ≈5 mTorr Ar) deposition rates for metals are often in the 0.1–1 nms1nm·s^{-1} range. These values depend strongly on geometry, target material, and magnetron enhancement (see below). The following NumPy example implements the simplified Sigmund approximation for Ar+Ar^{+} on CuCu and illustrates the sublinear dependence of yield on ion energy. It is intended for exploratory use and trend visualisation rather than as a substitute for experimentally fitted yield curves.
Python
import numpy as np
import matplotlib.pyplot as plt

# Simplified Sigmund sputtering yield: Y ≈ Γ √(E / U0)
def sputtering_yield(E, U0=3.5, alpha=0.2, M1=40, M2=63.5):  # Ar on Cu
    Gamma = 0.042 * (M2 / (M1 + M2))**2 * alpha
    return Gamma * np.sqrt(E / U0)

E = np.linspace(100, 2000, 100)  # Ion energy in eV
Y = sputtering_yield(E)

plt.plot(E, Y)
plt.xlabel('Ion Energy (eV)')
plt.ylabel('Sputtering Yield (atoms/ion)')
plt.title('Simulated Sputtering Yield vs. Ion Energy (Ar on Cu)')
plt.grid(True)
plt.show()
note that this toy model typically underestimates experimental yields; empirical scaling factors or dedicated stopping‑power calculations are necessary to obtain quantitative agreement with observed data. Magnetron sputtering employs magnetic confinement to increase the local electron residence time near the target surface. Permanent magnet arrays or electromagnets arranged behind the target create a magnetic topology that forces electrons into closed or near‑closed drift paths (the so‑called racetrack). By increasing the probability of ionizing collisions in the vicinity of the target, magnetrons substantially increase plasma density and deposition rate relative to an unmagnetised DC configuration. Advantages include reduced working pressure, enhanced deposition rate, and improved film density. The electron motion is governed by the Lorentz force, and in the simplified crossed‑field picture electrons experience tight cycloidal trajectories with a characteristic Larmor radius rL=mv/(qB)r_L = m v_\perp / (|q| B). Practical magnetron fields at the target surface are often in the 10–100 mT range, producing strong confinement for typical thermal and secondary‑electron energies. Operational notes and common practices:
  • Magnet geometry. Ring or racetrack magnet arrays with soft‑iron pole pieces concentrate the field. The racetrack width, magnet spacing, and return path determine the erosion profile and usable target area.
  • Power modes. DC magnetrons are suitable for conducting targets; pulsed DC and RF power enable deposition of insulating materials and mitigate charge accumulation and arcing.
  • Process control. Lower pressure operation (≈0.1–1 mTorr) often improves mean free path and film uniformity; substrate heating and biasing are commonly used to tailor film microstructure and adhesion.
  • Reactive sputtering. Introducing reactive gases (O₂, N₂) permits oxide or nitride film formation but requires careful control to avoid target poisoning and rate instability.
To visualise the action of crossed electric and magnetic fields, a simple two‑dimensional ODE model for an electron is instructive. The model reproduces cycloidal motion and the confinement effect qualitatively; it is not a substitute for particle‑in‑cell or Monte Carlo simulations for accurate plasma dynamics.
Python
import numpy as np
from scipy.integrate import odeint
import matplotlib.pyplot as plt

# 2D electron trajectory in crossed E (z) and B (y) fields
def deriv(state, t, q, m, Ez, By):
    x, z, vx, vz = state
    ax = (q / m) * (vz * By)
    az = (q / m) * (-vx * By + Ez)
    return [vx, vz, ax, az]

q = -1.602e-19  # Electron charge (C)
m = 9.109e-31   # Electron mass (kg)
Ez = 100        # Electric field (V/m)
By = 0.01       # Magnetic field (T)
state0 = [0, 0, 1e5, 0]  # Initial: x=0, z=0, vx=1e5 m/s (thermal), vz=0
t = np.linspace(0, 1e-8, 1000)  # 10 ns

sol = odeint(deriv, state0, t, args=(q, m, Ez, By))

plt.plot(sol[:, 0], sol[:, 1])
plt.xlabel('X Position (m)')
plt.ylabel('Z Position (m)')
plt.title('Electron Trajectory in Magnetron Field')
plt.grid(True)
plt.axis('equal')
plt.show()
Sputtering remains a robust and versatile deposition method for a wide range of functional films. The simplified models provided here are intended to clarify principal dependencies and to supply a starting point for small‑scale experimentation and simulation. For quantitative process design, combine stopping‑power calculations, Monte Carlo collision models, and empirical calibration against test depositions. Selected references
  • P. Sigmund, "Theory of sputtering. I. Sputtering yield of amorphous and polycrystalline targets,'' Physical Review 184, 383 (1969).
  • M. Ohring, Materials Science of Thin Films, Academic Press, 2001.
On this page