Introduction & Context

Multi-stage size reduction is the backbone of solids processing in food, pharmaceutical, and mineral plants. By splitting the total reduction ratio across several mechanical stages—each operating inside an empirically-proven “safe” window—engineers avoid excessive heat, screen blinding, and off-spec particles. The worksheet below formalises the algorithm you would embed in a plant-design spreadsheet or Python sizing tool: it converts a user-supplied feed diameter \(D_f\), product diameter \(D_p\), and Bond Work Index \(W_i\) into the minimum number of identical stages and the specific energy demand while forcing every intermediate size to stay inside Bond’s law boundaries.

Methodology & Formulas

  1. Global reduction demand
    \[ R_{\text{total}} = \frac{D_f}{D_p} \quad \text{with } D_f,\, D_p \text{ in µm} \]
  2. Number of identical stages
    Fix an economically-optimum stage ratio \(R_{\text{stage}}\). Enforce \(R_{\text{stage}}\in[2,10]\) (see validity table). Obtain the exact (non-integer) stage count \[ n_{\text{exact}} = \frac{\ln R_{\text{total}}}{\ln R_{\text{stage}}} \] and round upward to the next integer: \[ n_{\text{stages}} = \lceil n_{\text{exact}} \rceil \] Recompute the real ratio per stage so the product stays exactly 1: \[ R_{\text{actual}} = R_{\text{total}}^{1/n_{\text{stages}}} \]
  3. Intermediate diameters
    For \(i = 1\ldots n_{\text{stages}}\) \[ D_i = \frac{D_{i-1}}{R_{\text{actual}}}, \quad \text{with } D_0 = D_f \] Every \(D_i\) must sit inside Bond’s validity window (table).
  4. Specific energy (Bond, 1952)
    For each stage \(i\) \[ E_i = 10\, W_i \left( \frac{1}{\sqrt{D_i}} - \frac{1}{\sqrt{D_{i-1}}} \right) \quad \text{kWh ton}^{-1} \] Total specific energy \[ E_{\text{total}} = \sum_{i=1}^{n_{\text{stages}}} E_i \]
Empirical regime limits mirrored from code
Parameter Lower bound Upper bound Units / remark
Stage reduction ratio 2 10 dimensionless
Particle size 50 10000 µm (Bond’s law validity)

The algorithm raises a fatal error if any calculated intermediate size or ratio transgresses the tabulated limits, ensuring the design stays inside well-documented industrial experience.