Severity Rate Calculation Formula

Safety Severity Rate Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f9f9f9; } .calculator-wrapper { background: #ffffff; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 30px; margin-bottom: 40px; border: 1px solid #e1e1e1; } .calc-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 2rem; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; } .input-field { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .input-field:focus { border-color: #0073aa; outline: none; } .select-field { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; background-color: white; } .calc-btn { display: block; width: 100%; background-color: #0073aa; color: white; border: none; padding: 15px; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .calc-btn:hover { background-color: #005177; } #result-container { margin-top: 30px; padding: 20px; background-color: #f0f7fb; border-left: 5px solid #0073aa; border-radius: 4px; display: none; } .result-value { font-size: 2.5rem; font-weight: 700; color: #0073aa; margin: 10px 0; } .result-label { font-size: 1rem; color: #666; text-transform: uppercase; letter-spacing: 1px; } .content-section { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } h3 { color: #34495e; margin-top: 25px; } .formula-box { background-color: #eef2f5; padding: 15px; border-radius: 5px; font-family: monospace; font-size: 1.1em; text-align: center; margin: 20px 0; border: 1px solid #cbd5e0; } .alert-box { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px; border-radius: 4px; margin-top: 10px; display: none; } @media (max-width: 600px) { .content-section, .calculator-wrapper { padding: 20px; } }

Severity Rate Calculator

Total hours worked by all employees during the period.
OSHA Standard (200,000 hrs) International Standard (1,000,000 hrs) 200,000 represents 100 employees working 40 hours for 50 weeks.
Calculated Severity Rate
0.00

Understanding the Severity Rate Calculation Formula

The Severity Rate (SR) is a critical Key Performance Indicator (KPI) used in Environmental, Health, and Safety (EHS) management. While the Frequency Rate measures how often accidents happen, the Severity Rate measures the seriousness of those accidents by calculating the amount of time lost relative to the amount of time worked.

This metric helps organizations understand the impact of workplace injuries on productivity and employee well-being. A high severity rate often indicates that while accidents may or may not be frequent, the incidents that do occur result in significant time off work.

The Severity Rate Formula

The standard formula used by OSHA (Occupational Safety and Health Administration) and many other safety organizations is:

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

Component Breakdown:

  • Total Lost Work Days: The sum of all days employees could not work due to occupational injury or illness. This includes weekends if the medical recommendation requires rest, depending on specific reporting standards.
  • Total Employee Hours Worked: The aggregate number of hours worked by all employees during the reporting period (usually a year).
  • 200,000: This is the standard base constant. It represents the equivalent of 100 full-time employees working 40 hours a week for 50 weeks a year (100 × 40 × 50 = 200,000).

Calculation Example

Let's assume a manufacturing plant has the following data for the year:

  • Total Hours Worked: 500,000 hours
  • Total Lost Days: 45 days due to injuries

Using the calculator above or the formula manually:

SR = (45 × 200,000) / 500,000

SR = 9,000,000 / 500,000

Severity Rate = 18

This means that for every 200,000 hours worked, 18 days were lost to injury.

Why Use 1,000,000 Hours Base?

While OSHA uses the 200,000 benchmark, some international standards and specific industries (like mining or large-scale construction) prefer a base of 1,000,000 hours to represent 500 full-time employees. Our calculator provides a dropdown option to toggle between these two standards depending on your reporting requirements.

Severity Rate vs. Frequency Rate

It is important not to confuse Severity Rate with Lost Time Injury Frequency Rate (LTIFR).

  • Frequency Rate: Counts the number of accidents. (Formula involves Number of Injuries).
  • Severity Rate: Counts the time lost due to accidents. (Formula involves Days Lost).

A company might have a high Frequency Rate but a low Severity Rate (many minor cuts requiring bandages). Conversely, a low Frequency Rate but high Severity Rate implies rare but catastrophic accidents (e.g., one major fall resulting in months of recovery).

Tips for Lowering Severity Rates

  1. Risk Assessment: Identify high-risk tasks that cause severe injuries rather than just frequent minor ones.
  2. Return-to-Work Programs: Implement modified duty programs to allow injured employees to return to lighter work sooner, reducing the "Lost Days" count safely.
  3. Engineering Controls: Use physical barriers and guards to prevent contact with heavy machinery.
  4. Training: Focus training on the specific hazards that lead to long-term incapacitation.
function calculateSeverity() { // Get input values var daysInput = document.getElementById('lostDays'); var hoursInput = document.getElementById('totalHours'); var baseInput = document.getElementById('baseConstant'); var resultContainer = document.getElementById('result-container'); var resultDisplay = document.getElementById('severity-result'); var errorMsg = document.getElementById('error-msg'); var interpretation = document.getElementById('interpretation-text'); // Parse values var days = parseFloat(daysInput.value); var hours = parseFloat(hoursInput.value); var base = parseFloat(baseInput.value); // Reset error state errorMsg.style.display = 'none'; errorMsg.innerHTML = "; resultContainer.style.display = 'none'; // Validation logic if (isNaN(days) || days < 0) { errorMsg.innerHTML = "Please enter a valid number for Lost Work Days (cannot be negative)."; errorMsg.style.display = 'block'; return; } if (isNaN(hours) || hours <= 0) { errorMsg.innerHTML = "Please enter a valid number for Total Hours Worked (must be greater than 0)."; errorMsg.style.display = 'block'; return; } // Calculation Formula: (Lost Days * Base) / Total Hours var severityRate = (days * base) / hours; // Formatting result // If result is an integer, show no decimals, otherwise show 2 decimals var formattedResult = Number.isInteger(severityRate) ? severityRate : severityRate.toFixed(2); // Display results resultDisplay.innerHTML = formattedResult; // Dynamic interpretation text based on the calculation var baseText = (base === 200000) ? "100 full-time employees" : "500 full-time employees"; interpretation.innerHTML = "Result Interpretation: For every " + baseText + " (or " + base.toLocaleString() + " hours worked), approximately " + formattedResult + " days were lost due to injury."; resultContainer.style.display = 'block'; }

Leave a Comment