Lost Time Severity Rate Calculator

.ltsr-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.1); color: #333; } .ltsr-header { text-align: center; margin-bottom: 30px; } .ltsr-header h2 { color: #2c3e50; margin-bottom: 10px; } .ltsr-row { display: flex; flex-wrap: wrap; margin-bottom: 15px; gap: 15px; } .ltsr-group { flex: 1; min-width: 200px; } .ltsr-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #444; } .ltsr-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .ltsr-button { width: 100%; background-color: #d35400; color: white; padding: 15px; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .ltsr-button:hover { background-color: #e67e22; } .ltsr-result-box { margin-top: 25px; padding: 20px; background-color: #f9f9f9; border-radius: 6px; border-left: 5px solid #d35400; display: none; } .ltsr-result-title { font-size: 18px; font-weight: bold; margin-bottom: 15px; color: #2c3e50; } .ltsr-metric { font-size: 24px; font-weight: bold; color: #d35400; } .ltsr-detail { margin-top: 10px; font-size: 15px; line-height: 1.5; } .ltsr-content { margin-top: 40px; line-height: 1.6; color: #444; } .ltsr-content h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .ltsr-content table { width: 100%; border-collapse: collapse; margin: 20px 0; } .ltsr-content table td, .ltsr-content table th { border: 1px solid #ddd; padding: 12px; text-align: left; } .ltsr-content table th { background-color: #f2f2f2; } .ltsr-warning { color: #c0392b; font-weight: bold; margin-top: 5px; font-size: 13px; display: none; }

Lost Time Severity Rate Calculator

Measure the impact of safety incidents by calculating workdays lost relative to exposure hours.

Please enter valid positive numbers for Lost Days and Hours Worked.
Safety Performance Analysis
Lost Time Severity Rate (per 200,000 hours):
0.00
Average Days Lost Per Injury:
0.00
*A lower rate indicates a more successful safety program with less severe injuries.

What is the Lost Time Severity Rate?

The Lost Time Severity Rate (LTSR) is a safety metric used by Occupational Health and Safety (OHS) professionals to measure the impact of work-related injuries. Unlike the incident rate, which only counts how often accidents happen, the severity rate quantifies how serious those accidents are by looking at the number of workdays lost.

In the United States, the Occupational Safety and Health Administration (OSHA) uses a base of 200,000 exposure hours. This number represents the equivalent of 100 employees working 40 hours per week for 50 weeks in a year.

The LTSR Formula

To calculate the severity rate according to the standard OSHA benchmark, use the following equation:

(Total Number of Lost Workdays × 200,000) / Total Employee Hours Worked

Why Monitoring Severity Rate Matters

Tracking the LTSR is vital for industrial safety management for several reasons:

  • Trend Identification: You may have fewer accidents, but if the ones occurring are more severe, your safety risks are still high.
  • Financial Impact: Lost workdays correlate directly with workers' compensation costs and productivity losses.
  • Benchmarking: Allows companies to compare their safety performance against industry averages provided by the Bureau of Labor Statistics (BLS).

Example Calculation

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

Metric Value
Total Lost Workdays 60 days
Total Employee Hours 300,000 hours
Calculation (60 × 200,000) / 300,000
Severity Rate 40.0

This result means that for every 100 full-time employees, the company lost 40 workdays due to injuries over the course of the year.

Interpretation of Results

While "good" rates vary significantly by industry (e.g., construction vs. office administration), a rising severity rate is a major red flag. It suggests that while safety protocols might be preventing small cuts or bruises, they are failing to prevent major incidents like falls, crush injuries, or chemical exposures. If your average days lost per injury is high, it may indicate a need for better return-to-work programs or immediate ergonomic interventions.

function calculateLTSR() { var lostDays = document.getElementById('totalLostDays').value; var totalHours = document.getElementById('totalHours').value; var totalIncidents = document.getElementById('totalIncidents').value; var warning = document.getElementById('inputWarning'); var resultBox = document.getElementById('resultBox'); var avgContainer = document.getElementById('avgSeverityContainer'); // Reset visibility warning.style.display = 'none'; resultBox.style.display = 'none'; // Parse values var daysValue = parseFloat(lostDays); var hoursValue = parseFloat(totalHours); var incidentsValue = parseFloat(totalIncidents); // Validation if (isNaN(daysValue) || isNaN(hoursValue) || hoursValue <= 0 || daysValue 0) { var avgDays = daysValue / incidentsValue; document.getElementById('avgDaysValue').innerText = avgDays.toFixed(2) + " days"; avgContainer.style.display = 'block'; } else { avgContainer.style.display = 'none'; } // Show Results resultBox.style.display = 'block'; }

Leave a Comment