How to Calculate Accident Severity Rate

Accident Severity Rate Calculator .asr-calculator-container { max-width: 600px; margin: 0 auto; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; padding: 25px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .asr-header { text-align: center; margin-bottom: 20px; color: #2c3e50; } .asr-input-group { margin-bottom: 15px; } .asr-input-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #34495e; } .asr-input-group input, .asr-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .asr-btn { width: 100%; background-color: #e67e22; color: white; padding: 12px; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .asr-btn:hover { background-color: #d35400; } .asr-result-box { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #e67e22; border-radius: 4px; display: none; } .asr-result-title { font-size: 14px; color: #7f8c8d; text-transform: uppercase; letter-spacing: 1px; } .asr-result-value { font-size: 32px; font-weight: bold; color: #2c3e50; margin: 10px 0; } .asr-result-explanation { font-size: 14px; color: #555; line-height: 1.4; } .asr-article { max-width: 800px; margin: 40px auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; } .asr-article h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #e67e22; padding-bottom: 10px; } .asr-article ul { background: #fdfdfd; padding: 20px 40px; border-radius: 5px; border: 1px solid #eee; } .asr-article li { margin-bottom: 10px; }

Accident Severity Rate Calculator

200,000 (OSHA / 100 Employees) 1,000,000 (International Standard)
Accident Severity Rate (ASR)
0.00

function calculateSeverityRate() { // Get input values var lostDaysInput = document.getElementById('totalLostDays'); var manHoursInput = document.getElementById('totalManHours'); var baseSelect = document.getElementById('benchmarkBase'); var resultBox = document.getElementById('asrResult'); var resultValue = document.getElementById('asrValue'); var resultSummary = document.getElementById('asrSummary'); // Parse values var lostDays = parseFloat(lostDaysInput.value); var manHours = parseFloat(manHoursInput.value); var baseConstant = parseFloat(baseSelect.value); // Validation if (isNaN(lostDays) || lostDays < 0) { alert("Please enter a valid number for Total Lost Workdays."); return; } if (isNaN(manHours) || manHours <= 0) { alert("Please enter a valid number for Total Man-Hours Worked (must be greater than 0)."); return; } // Calculation Formula: (Lost Days * Constant) / Man Hours var severityRate = (lostDays * baseConstant) / manHours; // Formatting result // If result is very small, show more decimals, otherwise standard 2 var displayRate = severityRate.toFixed(2); // Determine context for summary var baseText = (baseConstant === 200000) ? "200,000 hours (approx. 100 FTEs)" : "1,000,000 hours"; // Update DOM resultBox.style.display = "block"; resultValue.innerHTML = displayRate; resultSummary.innerHTML = "This score indicates that for every " + baseText + " worked, " + displayRate + " days were lost due to workplace incidents."; }

How to Calculate Accident Severity Rate

The Accident Severity Rate (ASR) is a critical Key Performance Indicator (KPI) in Environmental, Health, and Safety (EHS) management. Unlike frequency rates, which tell you how often accidents happen, the severity rate tells you how serious those accidents are by measuring the amount of lost time they cause.

The Accident Severity Rate Formula

To calculate the severity rate, you need three specific data points: the total number of lost workdays, the total number of man-hours worked by all employees, and a multiplication constant (standardization factor).

The standard formula is:

ASR = (Total Lost Workdays × Constant) / Total Man-Hours Worked

Variables defined:

  • Total Lost Workdays: The sum of all days employees could not work due to work-related injuries or illnesses during the reporting period. Note: Some standards assign specific "chargeable days" for permanent disabilities or fatalities (e.g., ANSI standards).
  • Total Man-Hours Worked: The actual number of hours worked by all employees during the specific time period (excluding vacations, holidays, and sick leave).
  • Constant:
    • 200,000: Used primarily by OSHA in the USA. It represents 100 employees working 40 hours a week for 50 weeks.
    • 1,000,000: Often used in international standards to represent 500 full-time employees.

Why is Accident Severity Rate Important?

Calculating your ASR provides deeper insight into your safety culture than frequency rates alone. A company might have a low frequency of accidents (few incidents) but a high severity rate. This indicates that while accidents are rare, when they do occur, they are catastrophic.

Monitoring ASR helps safety managers:

  • Identify high-risk departments where severe injuries are occurring.
  • Justify budgets for safety equipment and training.
  • Compare safety performance against industry benchmarks.
  • Track the effectiveness of return-to-work programs.

Example Calculation

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

  • Total Lost Days: 45 days (due to 3 separate incidents)
  • Total Hours Worked: 500,000 hours
  • Constant: 200,000 (OSHA standard)

Calculation:

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

This result means that for every 200,000 hours worked at the plant, 18 days are lost due to injury. By using the calculator above, you can quickly input your monthly or annual figures to track this trend over time.

Frequency Rate vs. Severity Rate

It is best practice to report ASR alongside the Lost Time Injury Frequency Rate (LTIFR). The Frequency Rate measures the probability of an accident, while the Severity Rate measures the consequence. A high frequency with low severity suggests minor process issues (slips/trips), while low frequency with high severity suggests critical hazard failures (machinery/chemical).

Leave a Comment