Introduction & Context

The compression ratio \(CR\) of a roller mill is the dimensionless quotient between the thickness of the feed layer \(h_{feed}\) and the minimum roll gap \(h_{gap}\) actually achieved. It quantifies how much the incoming particulate stream is compacted as it passes through the nip region. In process engineering this parameter governs:

  • Mechanical stress on kernels/seeds and the resulting oil or juice extraction efficiency.
  • Power draw, roll wear, and bearing life.
  • Throughput stability and the likelihood of choking or slippage.

Roller mills for oilseed crushing, sugar cane milling, and coffee grinding are therefore sized and operated with a target \(CR\) that balances high yield against hardware limits.

Methodology & Formulas

  1. Define the compression ratio
    \[ CR = \frac{h_{feed}}{h_{gap}} \] where \(h_{feed}\) is the mean thickness of the feed layer and \(h_{gap}\) is the smallest distance between the rolls.
  2. Compute the required gap
    Re-arrange the definition to obtain the set-point gap: \[ h_{gap} = \frac{h_{feed}}{CR} \] The Python snippet prevents division by zero with a floor value of \(1\times10^{-9}\).
  3. Check operating envelope
    Parameter Lower limit Upper limit Consequence if violated
    Compression ratio \(CR\) 2 4 Roll damage or poor extraction
    Gap \(h_{gap}\) 0.8 mm Clogging with 3 mm kernels
    Feed thickness \(h_{feed}\) \(>0\) Mathematical error
  4. Secondary mechanical checks
    Although not computed in the minimal code, the following quantities are routinely verified:
    • Bearing load \(\le 60\%\) of catalogue rating.
    • Roll flexure \(\le 0.05\) mm to maintain a uniform gap across the roll length.