Introduction & Context

The mass-average diameter is a single-value descriptor of a particulate solid’s size distribution. It is the mean size weighted by the mass fraction retained on each sieve, and therefore reflects the size that contributes most to the total mass of the sample. In process engineering the parameter is used to:

  • scale-up or scale-down milling, grinding, and comminution circuits;
  • predict pressure drop and heat/mass-transfer coefficients in packed beds and fluidised beds;
  • estimate dissolution, reaction, or combustion rates where surface area per unit mass is size-dependent;
  • check compliance with product specifications (e.g., d50 or d90 limits).

Methodology & Formulas

  1. Total mass
    \[ M_{\text{tot}} = \sum_{i} m_{i} \] where \( m_{i} \) is the mass retained on sieve fraction i.
  2. Mass fractions
    \[ x_{i} = \frac{m_{i}}{M_{\text{tot}}} \] with the closure condition \[ \sum_{i} x_{i} = 1 \]
  3. Mean diameter of each fraction
    For every interval bounded by an upper sieve aperture \( d_{\text{upper},i} \) and a lower sieve aperture \( d_{\text{lower},i} \):
    Condition Mean diameter \( \bar{d}_{i} \)
    Lower sieve ≠ 0 µm \[ \bar{d}_{i} = \frac{d_{\text{upper},i} + d_{\text{lower},i}}{2} \]
    Lower sieve = 0 µm (pan) \[ \bar{d}_{i} = d_{\text{pan}} \quad \text{(user-defined constant)} \]
  4. Mass-average diameter
    \[ d_{\text{mass-avg}} = \sum_{i} x_{i}\,\bar{d}_{i} \] The summation excludes the pan fraction’s mass fraction when the pan is only used as a catch-all; the code snippet above uses all but the last element to align with the sieve list length.

A numerical tolerance of 0.5 % on \( \sum x_{i} \) and the range 0–1 for every \( x_{i} \) are typically enforced to flag data-entry or experimental errors.