How Do You Calculate Accident Incident Rate

OSHA Incident Rate Calculator

Calculate your Total Recordable Incident Rate (TRIR) based on standard OSHA formulas.

Enter the number of OSHA-recordable cases for the period.
The actual total hours worked by all employees during the period.
Your Incident Rate is: 0.00

How Do You Calculate Accident Incident Rate?

The accident incident rate, officially known as the Total Recordable Incident Rate (TRIR), is a standard mathematical formula used by OSHA (Occupational Safety and Health Administration) to measure a company's safety performance. It allows companies of different sizes to compare their safety records against industry benchmarks.

The OSHA Incident Rate Formula

The calculation is based on 100 full-time workers working 40 hours per week, 50 weeks per year, which totals 200,000 hours. The formula is:

(Number of Injuries × 200,000) / Total Employee Hours Worked

Breakdown of the Components:

  • Number of Injuries: Count all OSHA-recordable injuries and illnesses that occurred during the specific timeframe (usually a calendar year).
  • 200,000: This represents the base for 100 full-time equivalent workers (100 employees x 40 hours x 50 weeks).
  • Total Hours Worked: This is the total number of actual hours worked by all employees (including overtime and temporary workers) during the period. Do not include vacation or sick leave.

Example Calculation

Imagine a manufacturing plant that had 4 recordable injuries over the last year. During that same period, the total workforce logged 160,000 hours.

Step 1: Multiply injuries by 200,000: 4 × 200,000 = 800,000.

Step 2: Divide by total hours: 800,000 / 160,000 = 5.0.

The incident rate for this plant is 5.0, meaning for every 100 full-time employees, there were 5 recordable incidents.

Why Does Incident Rate Matter?

Calculating your accident incident rate is crucial for several reasons:

  1. Benchmarking: Compare your safety performance against national averages for your specific NAICS industry code.
  2. Contract Bidding: Many clients and general contractors require a TRIR below a certain threshold (often 3.0 or lower) to bid on projects.
  3. Safety Improvements: A rising rate signals that safety protocols need to be reviewed and improved to prevent future workplace hazards.
  4. OSHA Inspections: High incident rates can trigger targeted inspections from OSHA.
function calculateIncidentRate() { var injuries = document.getElementById("numInjuries").value; var hours = document.getElementById("totalHours").value; var resultBox = document.getElementById("rateResultBox"); var rateDisplay = document.getElementById("incidentRateDisplay"); var description = document.getElementById("incidentRateDescription"); var numInjuries = parseFloat(injuries); var totalHours = parseFloat(hours); if (isNaN(numInjuries) || isNaN(totalHours) || totalHours <= 0) { alert("Please enter valid numbers. Total hours must be greater than zero."); return; } // OSHA Formula: (Injuries * 200,000) / Hours var rate = (numInjuries * 200000) / totalHours; var formattedRate = rate.toFixed(2); rateDisplay.innerHTML = formattedRate; resultBox.style.display = "block"; var message = ""; if (rate === 0) { message = "Excellent! You have a perfect safety record for this period."; } else if (rate < 3.0) { message = "Your rate is relatively low. Continue maintaining your safety protocols."; } else if (rate < 5.0) { message = "Your rate is moderate. Consider reviewing your safety training and hazard identification."; } else { message = "Your incident rate is high. Immediate safety intervention and process audits are recommended."; } description.innerHTML = "This means your business had " + formattedRate + " recordable incidents for every 100 full-time workers. " + message; // Smooth scroll to result resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment