OSHA Standard (Per 200,000 Hours)
International / Oil & Gas (Per 1,000,000 Hours)
Calculated Frequency Rate
0.00
What is Incident Frequency Rate?
The Incident Frequency Rate (IFR) is a standard safety metric used in Health, Safety, and Environment (HSE) management to quantify the number of safety incidents relative to the amount of work performed. It allows companies to compare safety performance across different projects, departments, or years, regardless of the size of the workforce.
Common variations of this metric include:
LTIFR (Lost Time Injury Frequency Rate): Counts only injuries that resulted in lost time from work.
TRIR (Total Recordable Incident Rate): Counts all recordable incidents, including medical treatment cases and restricted work cases.
How to Calculate Incident Frequency Rate
The calculation normalizes the number of incidents against a standard number of working hours. This standard ensures that a company with 10,000 employees can be fairly compared to a company with 100 employees.
Frequency Rate = (Number of Incidents × K) / Total Hours Worked
Where K is the normalization factor:
200,000: The OSHA standard (United States). This represents 100 employees working 40 hours per week for 50 weeks a year.
1,000,000: The International standard (often used in Europe, Australia, and the Oil & Gas sector). This represents 500 full-time employees.
Example Calculation
Let's assume a manufacturing plant had 3 Lost Time Injuries (incidents) during the year. The total workforce worked 450,000 hours combined. We will use the OSHA standard (200,000) for this example.
This means that for every 100 full-time employees, there were 1.33 injuries during that period.
Why is tracking IFR important?
Tracking the incident frequency rate is crucial for several reasons:
Benchmarking: It helps organizations compare their safety performance against industry averages.
Trend Analysis: A rising frequency rate indicates deteriorating safety controls, prompting immediate corrective action.
Contract Tendering: Many clients require contractors to submit their TRIR or LTIFR stats before bidding on projects.
How to lower your Incident Frequency Rate?
Lowering your IFR requires a proactive approach to safety culture. This involves conducting regular risk assessments, ensuring all employees are trained in hazard recognition, investigating "near misses" to prevent future accidents, and maintaining equipment to prevent mechanical failures.
function calculateFrequencyRate() {
// Get input values
var incidentsInput = document.getElementById('incidentCount');
var hoursInput = document.getElementById('totalHours');
var standardInput = document.getElementById('calcStandard');
var resultDisplay = document.getElementById('resultDisplay');
var rateResult = document.getElementById('rateResult');
var resultExplanation = document.getElementById('resultExplanation');
// Parse values
var incidents = parseFloat(incidentsInput.value);
var hours = parseFloat(hoursInput.value);
var standard = parseFloat(standardInput.value);
// Validation
if (isNaN(incidents) || incidents < 0) {
alert("Please enter a valid number of incidents (0 or greater).");
return;
}
if (isNaN(hours) || hours <= 0) {
alert("Please enter a valid amount of total hours worked (greater than 0).");
return;
}
// Calculation logic
// Formula: (Incidents * Standard) / Total Hours
var frequencyRate = (incidents * standard) / hours;
// Display Result
resultDisplay.style.display = "block";
rateResult.innerHTML = frequencyRate.toFixed(2);
// Dynamic explanation based on the chosen standard
var standardText = (standard === 200000) ? "OSHA standard (per 200,000 hours)" : "International standard (per 1,000,000 hours)";
resultExplanation.innerHTML = "This indicates " + frequencyRate.toFixed(2) + " incidents per " + standardText + ".";
}