4.1 Crystal Structure & Symmetry
Crystalline solids are characterized by a periodic arrangement of atoms in three dimensions. Understanding crystal structure is the starting point for predicting physical, chemical, and electronic properties of materials.
7 Crystal Systems & 14 Bravais Lattices
All crystals belong to one of 7 crystal systems defined by the relationships between lattice parameters $a, b, c$ and angles $\alpha, \beta, \gamma$:
| System | Parameters | Bravais Lattices |
|---|---|---|
| Cubic | $a = b = c$, $\alpha = \beta = \gamma = 90Β°$ | P, I, F (3) |
| Tetragonal | $a = b \neq c$, $\alpha = \beta = \gamma = 90Β°$ | P, I (2) |
| Orthorhombic | $a \neq b \neq c$, $\alpha = \beta = \gamma = 90Β°$ | P, I, F, C (4) |
| Hexagonal | $a = b \neq c$, $\alpha = \beta = 90Β°, \gamma = 120Β°$ | P (1) |
| Trigonal | $a = b = c$, $\alpha = \beta = \gamma \neq 90Β°$ | R (1) |
| Monoclinic | $a \neq b \neq c$, $\alpha = \gamma = 90Β°, \beta \neq 90Β°$ | P, C (2) |
| Triclinic | $a \neq b \neq c$, $\alpha \neq \beta \neq \gamma$ | P (1) |
Unit Cells
A primitive unit cell contains exactly one lattice point and is the smallest repeating unit. A conventional unit cell may contain multiple lattice points but reflects the full symmetry of the lattice.
- - SC: 1 atom per unit cell (8 corners x 1/8)
- - BCC: 2 atoms per unit cell (8 x 1/8 + 1 body center)
- - FCC: 4 atoms per unit cell (8 x 1/8 + 6 x 1/2)
Miller Indices
Miller indices provide a notation for crystal planes and directions:
- - (hkl): A crystal plane. Procedure: take intercepts on axes, take reciprocals, clear fractions.
- - [uvw]: A crystal direction, specified by the smallest integers along the axes.
- - {hkl}: Family of equivalent planes (by symmetry).
- - <uvw>: Family of equivalent directions.
For cubic systems, the interplanar spacing is:
Packing Fraction
The atomic packing fraction (APF) is the fraction of volume in the unit cell occupied by atoms, assuming hard spheres:
SC
$r = a/2$
52.4%
BCC
$r = a\sqrt{3}/4$
68.0%
FCC
$r = a\sqrt{2}/4$
74.0%
Common Crystal Structures
| Structure | Lattice | CN | Radius Ratio | Examples |
|---|---|---|---|---|
| NaCl (rock salt) | FCC | 6 | 0.414--0.732 | NaCl, MgO, FeO |
| CsCl | SC | 8 | 0.732--1.0 | CsCl, CsBr |
| Diamond | FCC | 4 | -- | C, Si, Ge |
| Zinc blende | FCC | 4 | 0.225--0.414 | GaAs, ZnS, InP |
| Wurtzite | HCP | 4 | 0.225--0.414 | ZnO, GaN, AlN |
Radius Ratios
The radius ratio $r_+/r_-$ (cation to anion) predicts the coordination number and structure type for ionic crystals:
- - $r_+/r_- < 0.155$: CN = 2 (linear)
- - $0.155 \leq r_+/r_- < 0.225$: CN = 3 (trigonal planar)
- - $0.225 \leq r_+/r_- < 0.414$: CN = 4 (tetrahedral, zinc blende)
- - $0.414 \leq r_+/r_- < 0.732$: CN = 6 (octahedral, NaCl)
- - $0.732 \leq r_+/r_- < 1.0$: CN = 8 (cubic, CsCl)
Video Lectures
18. Introduction to Crystallography
Goodie Bag 6: Crystallography
19. Crystallographic Notation
Python: Cubic Crystal Structures
3D visualization of SC, BCC, and FCC unit cells with atomic positions and packing fraction calculations.
Cubic Crystal Structures Visualization
PythonAtomic positions and packing fractions for SC, BCC, and FCC
Click Run to execute the Python code
Code will be executed with Python 3 on the server
Fortran: Miller Index & d-Spacing Calculator
Computes interplanar d-spacings and Bragg angles for all planes up to a maximum Miller index, including FCC and BCC selection rules.
Miller Index d-Spacing Calculator
FortranInterplanar spacings and selection rules for cubic crystals
Click Run to execute the Fortran code
Code will be compiled with gfortran and executed on the server