Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Plate Theory

Introduction

Plate theory quantifies the relationship between retention time and chromatographic peak width. In simple terms, the longer the retention time, the wider the peak. The concept of “theoretical plates,” introduced by Martin and Synge in 1941 Martin & Synge (1941), is rooted in the structure of Pascal’s triangle, which illustrates particle distribution across discrete stages. This distribution follows the binomial theorem, and as the number of plates increases, it approaches a Gaussian distribution—representing the symmetric case.

In practice, peak shapes can be asymmetric due to various effects. Models such as EMG (Exponentially Modified Gaussian Foley & Dorsey (1984) or Kalambet et al. (2011)) and EGH (Exponentially Gaussian Hybrid Lan & Jorgenson (2001)) can be used to fit asymmetric peaks.

Caveat on Retention Time

In the context of SEC theory, retention time is defined as the time span from injection to the elution peak. In the current state of the experiment data, retention time in this sense is not measured and must be estimated. See Technical Report for implementation details.

Basic Plate Theory

The basic plate theory relates the number of theoretical plates, NN, to the retention time, tRt_R, and the standard deviation of the elution peak, σ\sigma, as follows:

N=tR2σ2(1)N = \frac{t_R^2}{\sigma^2} \qquad\qquad\qquad (1)
Theoretical Plates

Figure 1:Theoretical Plates

This figure, based on Pascal’s triangle, visually connects the binomial distribution of particles to the concept of plates and the resulting Gaussian peak shape.

Modified Formulae for Asymmetric Models

You can interpret the above formula as:

N=tR2second central moment(2)N = \frac{t_R^2}{second \ central \ moment} \qquad\qquad\qquad (2)

Note that tRt_R (retention time) is define as the mode of the elution peak. Also note that for a symmetric (Gaussian) model, tR=mode=mean t_R = mode = mean . For asymmetric models, related parameters are as shown below:

ModelModeMean (first raw moment)M2ˉ\bar{M_2} (second central moment)
EMGvery complicated [1]μ+τ \mu + \tau σ2+τ2 \sigma^2 + \tau^2
EGHtRt_RtR+τϵ1 t_R + \tau\epsilon_1 (σ2+στ+τ2)ϵ2 (\sigma^2 + \sigma|\tau| +\tau^2)\epsilon_2

For the extension of the basic plate theory to asymmetric models, let us consider only EGH model since we prefer to use it from its “mathematical simplisity and numerical stability.” We can use one of the following.

NtR2(σ2+στ+τ2)ϵ2(3)N \approx \frac{t_R^2}{(\sigma^2 + \sigma|\tau| +\tau^2)\epsilon_2} \qquad\qquad\qquad (3)
NtR2σ2+τ2στ/5.577(4)N \approx \frac{t_R^2}{\sigma^2 +\tau^2 - \sigma|\tau|/5.577 } \qquad\qquad\qquad (4)

However, from the result below, the approxiamtion (4) Lan & Jorgenson (2001) seems to work better, at least, in our supposed application range.

import numpy as np
import matplotlib.pyplot as plt
from molass.SEC.Models.Simple import egh, e1
from molass.Stats.Moment import compute_meanstd
fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(12, 5))
x = np.arange(300)

vars1 = []
vars2 = []
vars3 = []

tau_list = [0, 5, 10, 15]
for tau in tau_list:
    y = egh(x, 1, 100, 20, tau)
    ax1.plot(x, y, label=f'tau={tau}')
    mean, std = compute_meanstd(x, y)
    vars1.append(std**2)
    vars2.append(20**2 + tau**2 - 20*tau/5.577)
    theta = np.arctan(tau/20)
    vars3.append((20**2 + 20*tau + tau**2)*e1(theta))

ax1.set_title('EGH with different tau')
ax1.set_xlabel('Time')
ax1.set_ylabel('Concentration')
ax1.legend()

ax2.plot(tau_list, vars1, 'o-', label='Numerically computed')
ax2.plot(tau_list, vars2, 's--', label='Approx. Formula')
ax2.plot(tau_list, vars3, 'x--', label='Derived Formula')
ax2.set_title(r'Accuracy of Variance Approximation')
ax2.set_xlabel('tau')
ax2.set_ylabel(r'Variance ($\bar{M_2}$)')
ax2.set_xticks(tau_list)
ax2.set_xticklabels(tau_list)
ax2.legend()
fig.tight_layout()
<Figure size 1200x500 with 2 Axes>
Footnotes
References
  1. Martin, A. J. P., & Synge, R. L. M. (1941). A new form of chromatogram employing two liquid phases. Biochem. J., 35(12), 1358–1368.
  2. Foley, J. P., & Dorsey, J. G. (1984). A Review of the Exponentially Modified Gaussian (EMG) Function: Evaluation and Subsequent Calculation of Universal Data. Journal of Chromatographic Science, 22(1), 40–46. 10.1093/chromsci/22.1.40
  3. Kalambet, Y., Kozmin, Y., Mikhailova, K., Nagaev, I., & Tikhonov, P. (2011). Reconstruction of chromatographic peaks using the exponentially modified Gaussian function. J. Chemom., 25(7), 352–356.
  4. Lan, K., & Jorgenson, J. W. (2001). A hybrid of exponential and gaussian functions as a simple model of asymmetric chromatographic peaks. Journal of Chromatography A, 915(1), 1–13. https://doi.org/10.1016/S0021-9673(01)00594-5