Calculating Severity Rate

Safety Severity Rate Calculator

200,000 (Standard for 100 Employees) 1,000,000 (International Standard) 200,000 is the OSHA standard for benchmarking in the USA.

Calculation Result

function calculateSeverityRate() { var days = document.getElementById('lostWorkDays').value; var hours = document.getElementById('totalEmployeeHours').value; var multiplier = document.getElementById('exposureMultiplier').value; var resultDiv = document.getElementById('severityResult'); var resultText = document.getElementById('resultText'); var parsedDays = parseFloat(days); var parsedHours = parseFloat(hours); var parsedMultiplier = parseFloat(multiplier); if (isNaN(parsedDays) || isNaN(parsedHours) || parsedHours <= 0) { alert("Please enter valid positive numbers for days and hours."); return; } // The Formula: (Total Lost Workdays / Total Employee Hours) * Multiplier var severityRate = (parsedDays / parsedHours) * parsedMultiplier; var formattedRate = severityRate.toFixed(2); resultText.innerHTML = "The calculated Severity Rate is " + formattedRate + ". This indicates the number of lost workdays for every " + parsedMultiplier.toLocaleString() + " hours worked."; resultDiv.style.display = "block"; }

Understanding the Severity Rate in Workplace Safety

In the field of Occupational Health and Safety (OHS), metrics are vital for evaluating the success of safety programs. While the Total Recordable Incident Rate (TRIR) tells you how often accidents happen, the Severity Rate tells you how serious those accidents are. It provides a statistical measure of the average number of lost workdays experienced per a specific number of exposure hours.

The Severity Rate Formula

The standard calculation used by OSHA and other regulatory bodies focuses on normalizing data so that companies of different sizes can be compared fairly. The formula is:

Severity Rate = (Total Number of Lost Workdays / Total Number of Hours Worked) × Multiplier

The Multiplier is typically 200,000, which represents the number of hours 100 employees would work in a full year (100 employees × 40 hours per week × 50 weeks per year). In some international contexts, a multiplier of 1,000,000 is used instead.

Why Track Severity Rates?

Tracking severity rates is crucial for several reasons:

  • Trend Analysis: A low incident rate but a high severity rate suggests that while accidents are rare, they are life-threatening or debilitating when they do occur.
  • Financial Impact: Lost workdays directly correlate to workers' compensation costs, lost productivity, and administrative overhead.
  • Resource Allocation: It helps safety managers identify which departments or tasks require more stringent safety controls or better personal protective equipment (PPE).

Practical Example

Let's look at a realistic scenario for a medium-sized manufacturing plant:

  • Total Lost Days: 45 days (from 3 separate incidents)
  • Total Hours Worked: 180,000 hours
  • Multiplier: 200,000

Calculation:

(45 / 180,000) × 200,000 = 50.00

In this example, the plant has a severity rate of 50.00, meaning they lose 50 workdays for every 100 full-time employees annually due to workplace injuries.

Severity Rate vs. Frequency Rate

It is important not to confuse these two metrics. The Frequency Rate (or TRIR) measures the count of injuries, whereas the Severity Rate measures the time lost. A company could have a high frequency of minor scratches (high frequency, low severity) or a single very rare but catastrophic event (low frequency, high severity). Both metrics must be analyzed together to get a full picture of organizational safety health.

Tips for Reducing Your Severity Rate

To lower your severity rate, focus on the "hierarchy of controls." Move beyond just providing safety gear and look at Elimination (removing the hazard) or Engineering Controls (isolating people from the hazard). Rapid response and effective "Return to Work" programs can also help minimize the number of days lost following an incident.

Leave a Comment