Solid-State Chemistry/Part 5/Point and Line Defects

5.1 Point and Line Defects

Real crystals are never perfect. Defects govern many material properties including mechanical strength, electrical conductivity, diffusion rates, and chemical reactivity. Understanding defects is essential for engineering materials with desired properties.

Point Defects

Point defects are localized disruptions involving one or a few atoms:

Vacancy

A missing atom from a lattice site. The most common point defect in metals. Concentration increases exponentially with temperature.

Interstitial

An extra atom squeezed into a space between regular lattice sites. Can be self-interstitial or foreign atom.

Substitutional

A foreign atom replacing a host atom on a regular lattice site. Governed by the Hume-Rothery rules.

Vacancy Concentration

The equilibrium vacancy concentration at temperature $T$ follows an Arrhenius relationship:

$$n_v = N\exp\!\left(-\frac{E_v}{k_BT}\right)$$

where $N$ is the total number of atomic sites and $E_v$ is the vacancy formation energy. Near the melting point of most metals, about 1 in $10^4$ sites is vacant.

Schottky and Frenkel Defects

In ionic crystals, defects must maintain charge neutrality:

Schottky Defect

A pair of cation and anion vacancies. Common in NaCl, KCl, MgO.

$$n_s = N\exp\!\left(-\frac{E_s}{2k_BT}\right)$$

Frenkel Defect

An ion displaced to an interstitial site, leaving a vacancy. Common in AgCl, AgBr.

$$n_f = \sqrt{NN_i}\exp\!\left(-\frac{E_f}{2k_BT}\right)$$

Line Defects: Dislocations

Dislocations are line defects that play a central role in plastic deformation:

Edge Dislocation

An extra half-plane of atoms inserted into the crystal. The Burgers vector$\vec{b}$ is perpendicular to the dislocation line.

Screw Dislocation

A spiral ramp around the dislocation line. The Burgers vector $\vec{b}$ is parallel to the dislocation line.

The Burgers vector $\vec{b}$ characterizes the magnitude and direction of lattice distortion. Slip occurs on close-packed planes in close-packed directions, where $|\vec{b}|$ is smallest.

Strengthening Mechanisms

All strengthening mechanisms work by impeding dislocation motion:

  • - Work hardening: Increasing dislocation density makes further motion more difficult (tangled dislocations block each other).
  • - Grain boundary strengthening: (Hall-Petch) Grain boundaries act as barriers. Finer grains give higher strength: $\sigma_y = \sigma_0 + k_y / \sqrt{d}$.
  • - Solid solution strengthening: Solute atoms (substitutional or interstitial) create local strain fields that interact with dislocations.
  • - Precipitation hardening: Second-phase particles act as obstacles that dislocations must cut through or bow around (Orowan mechanism).

Video Lectures

23. Point and Line Defects I

Goodie Bag 7: Defects

24. Point and Line Defects II

Python: Vacancy Concentration vs Temperature

Equilibrium vacancy fraction as a function of temperature for several metals with different formation energies. Includes both linear and Arrhenius plots.

Vacancy Concentration vs Temperature

Python

Equilibrium vacancy fractions for Cu, Al, Au, Fe, and W

script.py79 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran: Vacancy & Schottky Defect Calculator

Computes equilibrium concentrations for single vacancies in Cu, Schottky pairs in NaCl, and Frenkel defects in AgCl across a range of temperatures.

Vacancy & Schottky Defect Concentrations

Fortran

Equilibrium defect concentrations for metals and ionic crystals

vacancy_schottky.f9085 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server