Solid-State Chemistry/Part 4/Crystal Structure & Symmetry

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$:

SystemParametersBravais 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:

$$d_{hkl} = \frac{a}{\sqrt{h^2 + k^2 + l^2}}$$

Packing Fraction

The atomic packing fraction (APF) is the fraction of volume in the unit cell occupied by atoms, assuming hard spheres:

$$\text{APF} = \frac{n \cdot \frac{4}{3}\pi r^3}{a^3}$$

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

StructureLatticeCNRadius RatioExamples
NaCl (rock salt)FCC60.414--0.732NaCl, MgO, FeO
CsClSC80.732--1.0CsCl, CsBr
DiamondFCC4--C, Si, Ge
Zinc blendeFCC40.225--0.414GaAs, ZnS, InP
WurtziteHCP40.225--0.414ZnO, 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

Python

Atomic positions and packing fractions for SC, BCC, and FCC

script.py106 lines

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

Fortran

Interplanar spacings and selection rules for cubic crystals

miller_index.f9095 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server