Injection Moulding Machine Tonnage Calculation Formula Excel

Injection Moulding Machine Tonnage Calculator

Calculate the required clamping force for your injection moulding process with precision

Comprehensive Guide to Injection Moulding Machine Tonnage Calculation

The proper calculation of injection moulding machine tonnage is critical for producing high-quality plastic parts while maintaining equipment safety and longevity. This guide provides a detailed explanation of the tonnage calculation process, including the formula, key factors, and practical considerations for both Excel-based calculations and real-world applications.

Understanding the Tonnage Calculation Formula

The fundamental formula for calculating the required clamping force (tonnage) is:

Clamping Force (tons) = (Projection Area × Injection Pressure) / 1000

Where:

  • Projection Area (cm²): The combined area of the part and runner system that the melt front sees during injection
  • Injection Pressure (bar): The pressure required to fill the cavity, which varies by material
  • 1000: Conversion factor from kilograms to tons (1 ton ≈ 1000 kg)

Key Components of the Calculation

1. Projection Area Calculation

The projection area is the most critical factor in tonnage calculation. It includes:

  • The part’s projected area (viewed from the direction of mould opening)
  • The runner system’s projected area
  • Any sprue or gate areas that contribute to the total

For complex parts, the projection area can be calculated using CAD software or approximated using:

Projection Area ≈ (Part Length × Part Width) + (Runner Length × Runner Width)

2. Material-Specific Injection Pressures

Different plastic materials require different injection pressures:

Material Type Typical Injection Pressure (bar) Examples
Low Pressure Materials 200-400 LDPE, PP (thin-wall)
Medium Pressure Materials 500-800 HDPE, PS, Standard PP
High Pressure Materials 800-1200 ABS, PC, Nylon
Very High Pressure Materials 1200-1800 PPS, PEEK, Liquid Crystal Polymers

3. Safety Factors and Machine Efficiency

Industry standards recommend applying safety factors:

  • 10-15%: For standard applications with known materials
  • 20-30%: For engineering plastics or complex geometries
  • 40%+: For high-precision or critical applications

Machine efficiency should also be considered:

  • New machines: 90-95% efficiency
  • Average machines: 80-85% efficiency
  • Old machines: 70-75% efficiency

Excel Implementation of the Tonnage Formula

To implement this calculation in Excel:

  1. Create input cells for:
    • Part projection area (cm²)
    • Runner projection area (cm²)
    • Material pressure (bar)
    • Safety factor (e.g., 1.1 for 10%)
    • Machine efficiency (e.g., 0.9 for 90%)
  2. Use the following formula for total projection area: =B2+B3 (where B2=part area, B3=runner area)
  3. Calculate base clamping force: =B4*B6/1000 (where B4=total area, B6=pressure)
  4. Apply safety factor and efficiency: =B7*B8/B9 (where B7=base force, B8=safety, B9=efficiency)
  5. Round to nearest standard machine size using: =CEILING(B10,5) (rounds up to nearest 5 tons)

Example Excel implementation:

Parameter Value Formula
Part Projection Area 150 cm² =B2
Runner Projection Area 20 cm² =B3
Total Projection Area 170 cm² =B2+B3
Material Pressure 800 bar =B5
Base Clamping Force 136 tons =B4*B5/1000
Safety Factor 1.2 =B7
Machine Efficiency 0.9 =B8
Adjusted Tonnage 181.33 tons =B6*B7/B8
Recommended Machine 185 tons =CEILING(B9,5)

Advanced Considerations

1. Multi-Cavity Moulds

For multi-cavity moulds, calculate the total projection area by multiplying the single cavity area by the number of cavities, then add the runner system area:

Total Area = (Single Cavity Area × Number of Cavities) + Runner Area

2. Family Moulds

Family moulds with different parts require calculating each part’s projection area separately and summing them with the runner system:

Total Area = Σ(Part₁ Area + Part₂ Area + … + Partₙ Area) + Runner Area

3. Hot Runner Systems

Hot runner systems typically require 10-15% less tonnage than cold runner systems due to reduced material flow resistance. Adjust the calculation by applying a 0.85-0.9 factor to the runner area contribution.

Common Mistakes to Avoid

  1. Underestimating projection area: Always measure the maximum projected area, not just the part’s surface area
  2. Ignoring runner systems: Runner areas can contribute 15-30% to total projection area
  3. Using incorrect pressure values: Always verify material-specific pressure requirements
  4. Neglecting safety factors: Even “simple” parts should include at least 10% safety margin
  5. Overlooking machine wear: Older machines may require additional tonnage compensation
  6. Forgetting about ejection forces: Complex parts may need additional tonnage for ejection

Industry Standards and Certifications

The injection moulding industry follows several key standards for tonnage calculations and machine specifications:

  • ISO 1873-2: Specifies clamping force measurement methods
  • DIN 16780: German standard for injection moulding machines
  • SPI Standards: Society of the Plastics Industry guidelines
  • EUROMAP 2: European standard for machine specifications

Certified machines should display their clamping force according to these standards, typically measured at the center of the platen with the mould closed.

Practical Example Calculation

Let’s work through a complete example for a PP automotive component:

  1. Part dimensions: 200mm × 150mm × 3mm (thickness doesn’t affect projection area)
  2. Projection area: 20cm × 15cm = 300 cm²
  3. Runner system: Full round runner, 8mm diameter, 200mm length
    • Runner area = 0.8cm × 20cm = 16 cm²
  4. Total projection area: 300 + 16 = 316 cm²
  5. Material pressure: PP at 600 bar
  6. Base clamping force: (316 × 600) / 1000 = 189.6 tons
  7. Safety factor: 20% (1.2) for automotive part
  8. Machine efficiency: 85% (0.85) for 5-year-old machine
  9. Adjusted tonnage: (189.6 × 1.2) / 0.85 = 268.7 tons
  10. Recommended machine: 270 tons (standard size)

Excel Template for Tonnage Calculation

For practical implementation, here’s a suggested Excel template structure:

INJECTION MOULDING TONNAGE CALCULATOR
INPUT PARAMETERS VALUES
Part Projection Area (cm²) [Input cell]
Runner Projection Area (cm²) [Input cell]
Total Projection Area (cm²) =SUM(above two cells)
Material Pressure (bar) [Dropdown selection]
Safety Factor [Dropdown: 1.1, 1.2, 1.3]
Machine Efficiency [Dropdown: 0.9, 0.85, 0.8]
CALCULATION RESULTS
Base Clamping Force (tons) =TotalArea*Pressure/1000
Adjusted Tonnage (tons) =BaseForce*Safety/Efficiency
Recommended Machine (tons) =CEILING(AdjustedTonnage,5)

This template can be enhanced with data validation for input cells and conditional formatting to highlight when the calculated tonnage exceeds standard machine sizes.

Automating Calculations with VBA

For advanced users, Excel VBA can automate the calculation process:

Function CalculateTonnage(partArea As Double, runnerArea As Double, pressure As Double, _
                        safety As Double, efficiency As Double) As Double
    Dim totalArea As Double
    Dim baseForce As Double
    Dim adjustedForce As Double

    totalArea = partArea + runnerArea
    baseForce = (totalArea * pressure) / 1000
    adjustedForce = (baseForce * safety) / efficiency

    ' Round to nearest 5 tons
    CalculateTonnage = WorksheetFunction.Ceiling(adjustedForce, 5)
End Function
        

This function can be called from your Excel worksheet with cell references as arguments.

Verification and Validation

Always verify your calculations through:

  • Cross-checking: Use multiple calculation methods
  • Prototyping: Test with a smaller machine if near capacity limits
  • Simulation: Use mould flow analysis software for complex parts
  • Manufacturer data: Consult machine specification sheets

For critical applications, consider having your calculations reviewed by a certified moulding engineer.

Leave a Reply

Your email address will not be published. Required fields are marked *