Introduction & Context

The calculation presented estimates the mechanical power required by a roller mill that processes a visco-elastic material (e.g., chocolate, polymer melt, or food slurry). In process engineering, the power consumption of a refining or grinding mill is a key design parameter because it directly influences motor sizing, energy cost, heat generation, and product quality. The model is applicable to continuous roll-refining operations where two cylindrical rolls compress a thin film of material, creating a nip zone in which shear and normal stresses develop.

Methodology & Formulas

The procedure follows the sequence of the Python script, expressed here with algebraic symbols.

1. Geometry and Kinematic Conversions

Convert practical dimensions to SI units using the appropriate conversion factors:

\[ D = D_{mm}\,\alpha_{mm\to m},\qquad R = \frac{D}{2},\qquad h_{in} = h_{in,mm}\,\alpha_{mm\to m},\qquad h_{out} = h_{out,mm}\,\alpha_{mm\to m} \]

Roll surface speed:

\[ v = \frac{\pi D N}{60} \]

where \(N\) is the rotational speed in revolutions per minute.

2. Shear Rate in the Gap

The effective gap is taken as the outlet film thickness \(h_{out}\). The shear rate is therefore

\[ \dot{\gamma} = \frac{v}{\max(h_{out},\varepsilon)} \]

with \(\varepsilon\) representing a very small positive number to avoid division by zero.

3. Apparent Viscosity (Power-Law Model)

The material is described by a power-law (Ostwald-de Waele) relationship:

\[ \mu_{app} = \frac{\tau_{0}}{\max(\dot{\gamma},\varepsilon)} + K\,\dot{\gamma}^{\,n-1} \]

Conversion to centipoise (cP) uses the factor \(\beta_{Pa\to cP}\):

\[ \mu_{app}^{cP} = \frac{\mu_{app}}{\beta_{Pa\to cP}} \]

4. Nip Contact Length

The nip length is approximated by the square-root of the product of roll radius and the film-thickness reduction:

\[ L_{nip} = \sqrt{R\,\Delta h},\qquad \Delta h = h_{in} - h_{out} \]

5. Rolling Force per Unit Width

The normal force per unit width of roll is the sum of the yield component and the viscous component integrated over the nip length:

\[ F' = \tau_{0}\,L_{nip} + K\left(\frac{v}{\max(h_{out},\varepsilon)}\right)^{n} L_{nip} \]

6. Power Consumption

The power per unit width is the product of rolling force and surface speed:

\[ P' = F'\,v \]

The total power for a mill of effective width \(W\) is

\[ P = P'\,W,\qquad P_{kW} = \frac{P}{10^{3}} \]

7. Validity Checks

The empirical model is reliable only when the operating conditions fall within established ranges. These ranges are summarized in the table below.

Parameter Acceptable Symbolic Range Comment
Power-law exponent \(n\) \(n_{min} \le n \le n_{max}\) Typical for shear-thinning foods
Yield stress \(\tau_{0}\) (Pa) \(\tau_{0,\,min} \le \tau_{0} \le \tau_{0,\,max}\) Ensures valid yield-stress regime
Consistency index \(K\) (Pa·s\(^n\)) \(K_{min} \le K \le K_{max}\) Empirical calibration limits
Thickness ratio \(h_{in}/h_{out}\) \(R_{ratio,\,min} \le \frac{h_{in}}{h_{out}} \le R_{ratio,\,max}\) Ensures sufficient compression
Roll surface speed \(v\) (m·s\(^{-1}\)) \(v_{min} \le v \le v_{max}\) Maintains laminar shear regime
Shear rate \(\dot{\gamma}\) (s\(^{-1}\)) \(\dot{\gamma}_{min} \le \dot{\gamma} \le \dot{\gamma}_{max}\) Within rheometer-validated region
Apparent viscosity \(\mu_{app}^{cP}\) \(\mu_{min}^{cP} \le \mu_{app}^{cP} \le \mu_{max}^{cP}\) Typical for chocolate-refining
Nip-length ratio \(L_{nip}/R\) \(\frac{L_{nip}}{R} < \lambda_{max}\) Ensures validity of nip-theory approximation

If any of the above conditions are violated, the user should treat the resulting power estimate with caution and consider recalibrating the material model or adjusting operating parameters.