How Do You Calculate Frequency Rate

Frequency Rate Calculator (LTIFR)

1,000,000 (Global Standard / Per Million Hours) 200,000 (OSHA Standard / 100 Employees)

Frequency Rate Result:

function calculateFrequencyRate() { var injuries = parseFloat(document.getElementById("numInjuries").value); var hours = parseFloat(document.getElementById("totalHours").value); var factor = parseFloat(document.getElementById("multiplier").value); var resultContainer = document.getElementById("freqResult"); var display = document.getElementById("resultDisplay"); var text = document.getElementById("resultText"); if (isNaN(injuries) || isNaN(hours) || hours <= 0) { alert("Please enter valid numbers. Total hours must be greater than zero."); return; } var rate = (injuries * factor) / hours; var roundedRate = rate.toFixed(2); display.innerHTML = roundedRate; var unitText = factor == 1000000 ? "per 1,000,000 hours worked" : "per 200,000 hours worked"; text.innerHTML = "Your organization experienced " + roundedRate + " incidents " + unitText + ". This metric allows you to benchmark your safety performance against industry standards."; resultContainer.style.display = "block"; }

How do you calculate Frequency Rate?

The Frequency Rate, often referred to as the Lost Time Injury Frequency Rate (LTIFR), is a critical safety KPI used by health and safety professionals to measure the number of recordable injuries that occur in a workplace relative to the total number of hours worked by all employees. Unlike a simple count of accidents, the frequency rate provides a standardized metric that allows companies of different sizes to compare their safety performance fairly.

The Frequency Rate Formula

To calculate the frequency rate, you use the following mathematical formula:

Frequency Rate = (Number of Injuries × Multiplier) / Total Man-Hours Worked

Understanding the Components

  • Number of Injuries: This usually includes "Lost Time Injuries" (LTIs) where an employee is unable to return to work for at least one full shift following the incident.
  • Total Man-Hours Worked: The sum of all hours worked by all employees (including overtime and contractors) during the reporting period.
  • The Multiplier: Most global industries use 1,000,000 (representing the rate per million hours). In the United States, OSHA often uses 200,000 (representing the hours worked by 100 employees over a year).

Example Calculation

Suppose a construction firm had 4 lost-time injuries in a year. During that same year, the total staff worked a combined 800,000 hours. To find the LTIFR using the per-million-hour standard:

  1. Multiply injuries by 1,000,000: 4 × 1,000,000 = 4,000,000.
  2. Divide by total hours: 4,000,000 / 800,000 = 5.
  3. Frequency Rate = 5.0

This result means that for every million hours worked, 5 lost-time injuries occurred.

Why is this Metric Important?

Monitoring your frequency rate is essential for several reasons:

  • Benchmarking: It allows you to compare your safety record against industry averages or competitors.
  • Trend Analysis: By tracking the rate monthly or annually, you can identify if safety conditions are improving or deteriorating.
  • Regulatory Compliance: Many government agencies and insurance providers require the reporting of frequency rates.
  • Insurance Premiums: Lower frequency rates often lead to lower workers' compensation insurance premiums.

Leave a Comment