Polymer Chemistry

Polymerization, molecular weight, chain conformations, and mechanical properties

Polymerization Mechanisms

Addition (Chain-Growth) Polymerization

Monomers with double bonds add one at a time to a growing chain via a reactive intermediate (free radical, cation, or anion). Steps: initiation, propagation, termination.

Examples: polyethylene, polystyrene, PVC, PMMA, Teflon (PTFE).

Condensation (Step-Growth) Polymerization

Bifunctional monomers react with each other, eliminating a small molecule (e.g., Hβ‚‚O) at each step. Any two species can react, so molecular weight builds gradually.

Examples: nylon (polyamide), PET (polyester), Bakelite (phenol-formaldehyde).

Molecular Weight Averages

Polymers have a distribution of chain lengths. Two key averages characterize this distribution:

Number-Average Molecular Weight

$$M_n = \frac{\sum N_i M_i}{\sum N_i}$$

Weighted by the number of chains of each length. Measured by osmometry or end-group analysis.

Weight-Average Molecular Weight

$$M_w = \frac{\sum N_i M_i^2}{\sum N_i M_i}$$

Weighted by mass. Measured by light scattering. Always $M_w \geq M_n$.

Degree of Polymerization and PDI

$$\text{DP} = \frac{M_n}{M_0}$$
$$\text{PDI} = \frac{M_w}{M_n} \geq 1$$

where $M_0$ is the monomer molecular weight. A PDI of 1 means all chains are identical (monodisperse). Typical PDI values: condensation polymers $\sim 2$, free-radical addition $\sim 1.5\text{--}2$, living polymerization $\sim 1.01\text{--}1.1$.

Polymer Chain Conformations

A flexible polymer chain in solution or the melt adopts a random coil conformation, well-described by a random walk model. For $N$ bonds of length $l$:

$$\langle R^2 \rangle = Nl^2 \quad \Rightarrow \quad R_{\text{rms}} = l\sqrt{N}$$
$$P(R) = 4\pi R^2 \left(\frac{3}{2\pi N l^2}\right)^{3/2} \exp\!\left(-\frac{3R^2}{2Nl^2}\right)$$

The end-to-end distance scales as $\sqrt{N}$, much smaller than the contour length $L = Nl$. This is why polymer coils are compact. For real chains with excluded volume, $R \sim N^{0.588}$ (Flory exponent in 3D).

Thermal & Mechanical Properties

Glass Transition ($T_g$)

Below $T_g$, the amorphous regions become rigid and glassy. Above $T_g$, chain segments gain mobility and the material becomes rubbery. $T_g$ depends on chain stiffness, side groups, and intermolecular forces.

Melting ($T_m$)

Only semicrystalline polymers have a $T_m$. The crystalline regions melt at $T_m$, while amorphous regions transition at $T_g$. Typically $T_g \approx (2/3)T_m$ (in Kelvin) for symmetric polymers.

Polymer Classification by Thermal Behavior

  • Thermoplastics: Soften and flow above $T_g$ or $T_m$; recyclable by remelting (PE, PS, nylon)
  • Thermosets: Covalently crosslinked; do not melt or dissolve once cured (epoxy, Bakelite, vulcanized rubber)
  • Elastomers: Lightly crosslinked; exhibit large reversible deformation above $T_g$ (natural rubber, silicone)

Stress-Strain Behavior

The Young's modulus $E = \sigma/\varepsilon$ (in the linear elastic region) quantifies stiffness. Polymers span a huge range: elastomers ($E \sim 0.01$ GPa), glassy polymers ($E \sim 2\text{--}4$ GPa), and oriented fibers like Kevlar ($E \sim 130$ GPa).

Python: Random Walk Polymer Simulation

Simulates thousands of 3D random walk polymer chains and compares the end-to-end distance distribution with the Gaussian chain theory prediction.

Random Walk Polymer Chain

Python

3D random walk simulation of polymer chains with Gaussian theory comparison

script.py82 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran: Molecular Weight Averages & PDI

Computes number-average, weight-average molecular weights and polydispersity index from a simulated Flory (most probable) distribution of chain lengths.

Molecular Weight Averages & PDI

Fortran

Computes Mn, Mw, and PDI from a Flory (most probable) molecular weight distribution

mw_averages.f9060 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server

Video Lectures

Lecture 32: Polymers I

Lecture 33: Polymers II

Goodie Bag 9: Polymers