Reference ID: MET-662F | Process Engineering Reference Sheets Calculation Guide
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.
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.
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.
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\)).
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.
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}}\).
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.
The cutting force (F) can be estimated by the product of the material’s specific cutting energy (U) and the cross‑sectional area being cut (A):
F = U × A
Where:
U = specific cutting energy (J/mm³), obtained from material data or experimental testing.
A = thickness of the material × width of the cut (mm²).
Adjust the formula for blade geometry or friction by adding a correction factor if needed.
Blade geometry influences the effective area and friction during cutting. Consider these factors:
Edge angle (α): A larger angle increases the normal component of force, raising the required cutting force.
Rake angle (γ): Positive rake reduces the shear component, lowering the force.
A practical correction can be applied:
Fcorrected = F × (1 + k·tan α) where k is an empirical coefficient (typically 0.1–0.3).
Validation can be performed using the following approaches:
Force sensor integration: Mount a calibrated load cell on the knife holder and record the peak force during a controlled cut.
Instrumented test rig: Use a universal testing machine with a custom fixture to apply a constant feed rate and capture force‑time data.
High‑speed video analysis: Correlate blade deflection with force using image processing to cross‑check sensor readings.
Compare the measured peak force with the calculated value; discrepancies greater than 10 % typically indicate the need to refine material or geometry parameters.
For heterogeneous materials, use a weighted average of specific cutting energies:
Identify each constituent phase (e.g., fibers, matrix) and obtain its U value.
Determine the volume fraction (Vi) of each phase.
Calculate an effective specific cutting energy: Ueff = Σ (Vi × Ui).
Then apply the basic formula F = Ueff × A. If the material exhibits directional properties, perform separate calculations for each principal direction and use the worst‑case result for safety margins.
Worked Example – Estimating Knife Cutting Force for a Slicer Line
A small meat-processing plant is designing a new fresh-beef slicing station.
To size the linear actuator and safety clutch, the engineering team needs the maximum cutting force the knife will encounter when slicing 10 mm-thick steaks at the planned line speed.
Knowns
Material: Fresh beef (muscle)
Initial shear strength, \( \tau_0 \): 0.3 MPa
Slice (contact) length, \( L_c \): 30 mm
Meat thickness, \( t \): 10 mm
Knife edge radius, \( r_e \): 5 µm
Cutting speed, \( v \): 0.5 m s⁻¹
Reference speed, \( v_{ref} \): 0.5 m s⁻¹
Speed-sensitivity factor, \( k \): 0.1
Required safety factor, \( SF \): 1.5
Step-by-step calculation
Compute the nominal shear area:
\[ A = L_c \cdot t = 30 \times 10 = 300 \text{ mm}^2 \]
Convert shear strength to N mm⁻²:
\[ \tau_0 = 0.3 \text{ MPa} \times 1 = 0.3 \text{ N mm}^{-2} \]
Account for speed effect (ratio = 1.0 here, so no change):
\[ \tau_{\text{eff}} = \tau_0 \left[1 + k \ln\left(\frac{v}{v_{\text{ref}}}\right)\right] = 0.3 \text{ N mm}^{-2} \]