How to Calculate Injection Moulding Machine Hour Rate

Injection Moulding Machine Hour Rate Calculator .mhr-calculator-container { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .mhr-calc-box { background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .mhr-row { display: flex; flex-wrap: wrap; margin-bottom: 20px; gap: 20px; } .mhr-col { flex: 1; min-width: 250px; } .mhr-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; } .mhr-input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; box-sizing: border-box; } .mhr-input:focus { border-color: #0073aa; outline: none; } .mhr-btn { background-color: #0073aa; color: #fff; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; transition: background-color 0.2s; } .mhr-btn:hover { background-color: #005177; } .mhr-result-box { margin-top: 30px; background: #fff; border: 1px solid #d1d1d1; border-radius: 6px; padding: 20px; display: none; } .mhr-total { font-size: 2rem; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 15px; } .mhr-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; } .mhr-breakdown-item { background: #f0f4f8; padding: 10px; border-radius: 4px; font-size: 0.9rem; } .mhr-breakdown-value { font-weight: bold; float: right; } .mhr-article h2 { color: #23282d; margin-top: 30px; border-bottom: 2px solid #0073aa; padding-bottom: 10px; display: inline-block; } .mhr-article p { margin-bottom: 15px; } .mhr-article ul { margin-bottom: 20px; padding-left: 20px; } .mhr-article li { margin-bottom: 8px; } @media (max-width: 600px) { .mhr-breakdown { grid-template-columns: 1fr; } }

Machine Hour Rate Calculator

% of machine price per year
Total MHR: $0.00 / hr
Depreciation Cost: $0.00
Energy Cost: $0.00
Labor Cost: $0.00
Maintenance/Overhead: $0.00

How to Calculate Injection Moulding Machine Hour Rate

Calculating the Machine Hour Rate (MHR) is one of the most critical financial exercises for injection moulding manufacturers. It represents the total cost incurred to run a specific moulding machine for one hour. Accurate calculation is essential for quoting profitable part prices, budgeting for new equipment, and identifying inefficiencies in your production floor.

Unlike simple loan calculations, determining the MHR requires integrating capital depreciation, variable energy consumption, labor allocation, and maintenance overheads. Below is a detailed breakdown of the components used in our calculator.

1. Capital Recovery (Depreciation)

The machine purchase price is not a one-time expense; it is an investment that must be recovered over its useful life. The calculation typically follows this logic:

  • Machine Cost: The total landed cost of the machine, including shipping and installation.
  • Amortization Period: The number of years you expect to run the machine before replacement (often 5 to 10 years).
  • Annual Operating Hours: The theoretical maximum hours minus downtime. For a 3-shift operation running 5 days a week, this is often around 6,000 hours/year.

Formula: Machine Cost / (Years × Annual Hours)

2. Energy Consumption

Injection moulding machines are energy-intensive. While servo-hydraulic and all-electric machines have reduced consumption, it remains a major cost driver. To calculate this accurately:

  • Determine the Average Power Consumption (kW). Note: Do not use the "Connected Load" rating on the nameplate, as the machine does not draw max power continuously. Use an average (often 40-60% of the motor rating) or measured values.
  • Multiply by your local Electricity Rate ($/kWh).

3. Labor Allocation

Labor costs in injection moulding are rarely 1:1. Often, a single operator tends to multiple machines, or automated cells may run unattended.

  • Operator Wage: The fully burdened hourly cost of the employee (wages + benefits).
  • Machine Ratio: If one operator manages 4 machines, the labor cost applied to the MHR is only 25% of the operator's hourly wage.

4. Maintenance and Overheads

Machines require hydraulic fluid changes, screw cleaning, and spare parts. Additionally, the factory floor space (rent/heating) costs money. A standard industry practice is to estimate annual maintenance and overhead as a percentage of the machine's initial value (typically 3-10%) and spread this cost over the annual operating hours.

Optimizing Your MHR

Once you have calculated your rate, you can lower it by:

  • Increasing Utilization: Running more hours per year dilutes the fixed depreciation costs.
  • Improving Cycle Time: Faster cycles mean more parts per hour, effectively reducing the machine cost per part.
  • Energy Efficiency: Upgrading to barrel insulation blankets or servo-drives to lower kW consumption.
function calculateMHR() { // 1. Get Input Values var machineCost = parseFloat(document.getElementById('machineCost').value); var usefulLife = parseFloat(document.getElementById('usefulLife').value); var annualHours = parseFloat(document.getElementById('annualHours').value); var maintPercent = parseFloat(document.getElementById('maintenancePercent').value); var powerConsumption = parseFloat(document.getElementById('powerConsumption').value); var electricityRate = parseFloat(document.getElementById('electricityRate').value); var operatorWage = parseFloat(document.getElementById('operatorWage').value); var machinesPerOp = parseFloat(document.getElementById('machinesPerOperator').value); // 2. Validation if (isNaN(machineCost) || isNaN(usefulLife) || isNaN(annualHours) || isNaN(powerConsumption) || isNaN(electricityRate) || isNaN(operatorWage) || isNaN(machinesPerOp)) { alert("Please fill in all fields with valid numbers."); return; } if (usefulLife <= 0 || annualHours <= 0 || machinesPerOp <= 0) { alert("Years, Hours, and Machine Ratio must be greater than zero."); return; } // 3. Logic & Calculations // Depreciation per hour var totalLifeHours = usefulLife * annualHours; var hourlyDepreciation = machineCost / totalLifeHours; // Maintenance/Overhead per hour // (Machine Cost * percentage) / Annual Hours var annualMaintCost = machineCost * (maintPercent / 100); var hourlyMaint = annualMaintCost / annualHours; if (isNaN(hourlyMaint)) hourlyMaint = 0; // Handle case where percent is left blank or 0 // Energy per hour var hourlyEnergy = powerConsumption * electricityRate; // Labor per hour var hourlyLabor = operatorWage / machinesPerOp; // Total var totalMHR = hourlyDepreciation + hourlyMaint + hourlyEnergy + hourlyLabor; // 4. Display Results document.getElementById('totalMHR').innerText = '$' + totalMHR.toFixed(2); document.getElementById('resDepreciation').innerText = '$' + hourlyDepreciation.toFixed(2); document.getElementById('resEnergy').innerText = '$' + hourlyEnergy.toFixed(2); document.getElementById('resLabor').innerText = '$' + hourlyLabor.toFixed(2); document.getElementById('resMaint').innerText = '$' + hourlyMaint.toFixed(2); // Show the result box document.getElementById('mhrResult').style.display = 'block'; }

Leave a Comment