Introduction & Context

The cutting‑force calculation estimates the axial force required to shear a material with a knife or blade. In process engineering this value is essential for:

  • Designing cutting tools that can reliably slice food, meat, or soft polymers without excessive wear.
  • Sizing actuators and selecting motor specifications for automated slicers and food‑processing equipment.
  • Evaluating the impact of operating parameters such as cutting speed, edge sharpness, and safety margins on energy consumption.

The method assumes that the dominant resistance is shear deformation of the workpiece and that the blade edge can be approximated as a sharp or mildly blunt line.

Methodology & Formulas

The calculation follows the logical flow of the reference Python script, expressed here in algebraic form.

  1. Shear area – the projected area over which shear stress acts: \[ A = t \, L \] where \(t\) is the material thickness and \(L\) is the cut length.
  2. Strain‑rate‑adjusted shear strength – optional correction for the dependence of shear strength on cutting speed: \[ \tau_{\text{eff}} = \tau_{0}\,\Bigl[1 + k\,\ln\!\bigl(\frac{v}{v_{\text{ref}}}\bigr)\Bigr] \] with \(\tau_{0}\) the nominal shear strength, \(k\) the strain‑rate sensitivity coefficient, \(v\) the cutting speed, and \(v_{\text{ref}}\) a reference speed. The logarithm argument is limited to a small positive value to avoid singularities.
  3. Baseline cutting force – product of effective shear stress and shear area: \[ F_{\text{base}} = \tau_{\text{eff}} \, A \] (units: N when \(\tau_{\text{eff}}\) is expressed in N mm\(^{-2}\) and \(A\) in mm\(^2\)).
  4. Edge‑radius correction – if the edge radius \(r\) exceeds a sharp‑edge threshold \(r_{\text{th}}\), the effective shear area is increased proportionally: \[ \text{if } r > r_{\text{th}}:\quad A_{\text{corr}} = A \,\Bigl[1 + \frac{r}{t}\Bigr] \] \[ F_{\text{base}} = \tau_{\text{eff}} \, A_{\text{corr}} \] Otherwise the original area is retained.
  5. Design force with safety factor – the final force specification incorporates a user‑defined safety factor \(SF\): \[ F_{\text{design}} = SF \, F_{\text{base}} \]

Validity Checks (Range Limits)

Parameter Symbol Valid Range Notes
Shear strength (nominal) \(\tau_{0}\) \([\tau_{\min},\;\tau_{\max}]\) Typical for soft foods and meats.
Material thickness \(t\) \([t_{\min},\;t_{\max}]\) Ensures planar shear assumption.
Cut length \(L\) \([L_{\min},\;L_{\max}]\) Applicable to straight cuts.
Cutting speed \(v\) \([v_{\min},\;v_{\max}]\) Hand‑slice regime.
Edge radius \(r\) \([r_{\min},\;r_{\max}]\) Sharp‑edge limit is \(r_{\text{th}}\); correction applied when \(r > r_{\text{th}}\).
Safety factor \(SF\) \([SF_{\min},\;SF_{\max}]\) Typical engineering design range.

Summary of Key Equations

For quick reference, the core relationships are:

\[ A = t\,L \] \[ \tau_{\text{eff}} = \tau_{0}\,\Bigl[1 + k\,\ln\!\bigl(\frac{v}{v_{\text{ref}}}\bigr)\Bigr] \] \[ A_{\text{corr}} = \begin{cases} A\Bigl[1 + \dfrac{r}{t}\Bigr] & \text{if } r > r_{\text{th}}\\[6pt] A & \text{otherwise} \end{cases} \] \[ F_{\text{base}} = \tau_{\text{eff}}\,A_{\text{corr}} \] \[ F_{\text{design}} = SF\,F_{\text{base}} \]

These expressions provide a deterministic estimate of the cutting force required for a given set of material properties, geometry, and operating conditions, while allowing for simple safety‑factor scaling and edge‑sharpness adjustments.