Calculate Severity Rate

.severity-calculator-container { max-width: 600px; margin: 20px auto; padding: 25px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); } .severity-calculator-container h3 { margin-top: 0; text-align: center; color: #333; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; } .form-group input[type="number"] { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; /* Ensures padding doesn't affect width */ } .calc-btn { width: 100%; padding: 12px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #004494; } #severityOutput { margin-top: 20px; padding: 15px; background-color: #e9ecef; border-radius: 4px; text-align: center; font-size: 18px; display: none; /* Hidden by default */ } .error-msg { color: #d9534f; font-weight: bold; } .result-value { color: #0056b3; font-size: 24px; font-weight: bold; }

Severity Rate Calculator (Safety Metric)

The Severity Rate is a critical Environmental, Health, and Safety (EHS) metric used to quantify the seriousness of workplace injuries and illnesses. While the Total Recordable Incident Rate (TRIR) measures the frequency of incidents, the Severity Rate measures the impact by calculating the number of lost workdays per 100 full-time equivalent employees.

A high severity rate indicates that workplace incidents are resulting in significant time away from work, signaling potential serious hazards that need immediate attention. Use the calculator below to determine your organization's Severity Rate based on the standard OSHA formula.

Calculate Your Severity Rate

Include days away from work and days of restricted work activity or job transfer.
The cumulative number of actual hours worked by all employees during the selected period.
function calculateSeverityRate() { // 1. Get input values var lostDaysInput = document.getElementById("totalLostDays"); var hoursWorkedInput = document.getElementById("totalEmployeeHours"); var outputDiv = document.getElementById("severityOutput"); // 2. Parse values to numbers var days = parseFloat(lostDaysInput.value); var hours = parseFloat(hoursWorkedInput.value); // Ensure output div is visible for results or errors outputDiv.style.display = "block"; // 3. Validate inputs (Edge case handling) if (isNaN(days) || days < 0) { outputDiv.innerHTML = "Please enter a valid, non-negative number for Total Lost Work Days."; return; } if (isNaN(hours) || hours <= 0) { outputDiv.innerHTML = "Please enter a valid total for Employee Hours Worked (must be greater than zero)."; return; } // 4. The Calculation Logic (OSHA Standard Formula) // Formula: (Total Lost Days * 200,000) / Total Employee Hours Worked // The 200,000 constant represents 100 employees working 40 hours/week for 50 weeks. var severityRate = (days * 200000) / hours; // 5. Format and Display Result // Rounding to two decimal places for standard reporting outputDiv.innerHTML = "Result: " + severityRate.toFixed(2) + " Severity Rate"; }

Understanding the Severity Rate Formula

The standard formula used by OSHA and many international safety organizations is:

Severity Rate = (Total Lost Work Days x 200,000) / Total Employee Hours Worked

  • Total Lost Work Days: This is the sum of days employees spent away from work or on restricted duty due to work-related injuries or illnesses during a specific time period (usually a year).
  • 200,000 Constant: This figure normalizes the data to represent rate per 100 full-time employees (100 workers x 40 hours/week x 50 weeks/year). This allows for comparison between companies of different sizes.
  • Total Employee Hours Worked: The actual total number of hours worked by all employees during the same period covered by the lost days count.

Example Calculation

For example, if a manufacturing plant had 5 recordable incidents resulting in a total of 85 lost workdays over the course of a year, and their entire workforce logged a total of 450,000 hours worked:

Severity Rate = (85 x 200,000) / 450,000 = 17,000,000 / 450,000 = 37.78

This means that for every 100 full-time equivalent workers, roughly 37.8 days were lost due to injury in that year.

Leave a Comment