Calculates the number of theoretical plates (N) for a chromatographic peak, a measure of column efficiency.
Usage
measure_sec_plate_count(
retention,
width,
width_type = c("half_height", "baseline", "inflection"),
dead_time = NULL
)Arguments
- retention
Retention time of the peak.
- width
Peak width. See
width_typefor measurement method.- width_type
Type of peak width measurement:
"half_height"(default): Width at 50% height (W0.5h)"baseline": Width at baseline from tangent lines (Wb)"inflection": Width at inflection points (Wi)
- dead_time
Column dead time (t0). If provided, calculates effective plates (N_eff) using adjusted retention time.
Details
Theoretical plate count measures column efficiency:
Half-height width (most common): $$N = 5.54 \left(\frac{t_R}{W_{0.5h}}\right)^2$$
Baseline width: $$N = 16 \left(\frac{t_R}{W_b}\right)^2$$
With dead time correction (effective plates): $$N_{eff} = 5.54 \left(\frac{t_R - t_0}{W_{0.5h}}\right)^2$$
Typical SEC Performance:
Analytical SEC columns: 10,000-40,000 plates/meter
Preparative columns: 5,000-15,000 plates/meter
UHPLC SEC: 50,000+ plates/meter