Total Recordable Injury Frequency Rate Calculation Australia

TRIFR Calculator Australia .trifr-calculator-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .trifr-header { text-align: center; margin-bottom: 30px; background-color: #005a87; color: white; padding: 20px; border-radius: 6px 6px 0 0; } .trifr-header h2 { margin: 0; font-size: 24px; } .trifr-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 600px) { .trifr-form-grid { grid-template-columns: 1fr; } } .input-group { margin-bottom: 15px; } .input-group label { display: block; font-weight: 600; margin-bottom: 5px; color: #333; } .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group .help-text { font-size: 12px; color: #666; margin-top: 3px; } .calc-btn { display: block; width: 100%; background-color: #28a745; color: white; padding: 15px; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; margin-top: 20px; transition: background 0.3s; } .calc-btn:hover { background-color: #218838; } .results-section { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border: 1px solid #dee2e6; border-radius: 4px; display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e9ecef; } .result-row:last-child { border-bottom: none; } .result-label { font-weight: 600; color: #495057; } .result-value { font-size: 20px; font-weight: 700; color: #005a87; } .main-result { text-align: center; margin-top: 10px; padding: 15px; background-color: #e8f4fd; border-radius: 6px; border: 1px solid #b8daff; } .main-result h3 { margin: 0; color: #004085; font-size: 16px; } .main-result .big-number { font-size: 36px; color: #0056b3; font-weight: 800; margin-top: 10px; } .content-section { margin-top: 50px; line-height: 1.6; color: #333; } .content-section h2 { color: #005a87; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .content-section p { margin-bottom: 15px; } .content-section ul { margin-bottom: 20px; padding-left: 20px; } .content-section li { margin-bottom: 8px; } .formula-box { background: #eee; padding: 15px; border-left: 4px solid #005a87; font-family: monospace; margin: 20px 0; }

TRIFR Calculator (Australia)

Number of work-related deaths.
Injuries resulting in at least one full shift lost.
Injuries requiring treatment by a medical practitioner.
Injuries resulting in restricted duties.
Total hours worked by all employees in the period.
Total Recordable Injuries: 0

TRIFR (Per Million Hours)

0.00

Based on the Australian standard multiplication factor of 1,000,000.

What is TRIFR?

Total Recordable Injury Frequency Rate (TRIFR) is a key Work Health and Safety (WHS) lagging indicator used extensively in Australia to measure safety performance. Unlike LTIFR (which only counts Lost Time Injuries), TRIFR provides a broader view of safety incidents by including all injuries that required medical attention or restricted work duties, not just those that resulted in time off work.

Monitoring TRIFR allows Australian organizations to identify trends in lower-severity injuries before they escalate into serious incidents.

How to Calculate TRIFR in Australia

The standard formula used in Australia calculates the number of recordable injuries per one million hours worked. This normalization allows companies of different sizes to compare their safety performance accurately.

TRIFR = (Total Recordable Injuries × 1,000,000) / Total Hours Worked

Total Recordable Injuries (TRI) is the sum of:

  • Fatalities: Work-related deaths.
  • Lost Time Injuries (LTI): Injuries resulting in the loss of one or more full shifts.
  • Medical Treatment Injuries (MTI): Injuries requiring treatment by a medical practitioner (beyond first aid).
  • Restricted Work Injuries (RWI): Injuries where the worker can return to work but is unable to perform full duties.

Note: First Aid Injuries are generally NOT included in the TRI calculation.

Calculation Example

Consider a mining company in Western Australia with the following safety data for the financial year:

  • 1 Lost Time Injury (LTI)
  • 2 Medical Treatment Injuries (MTI)
  • 1 Restricted Work Injury (RWI)
  • Total Hours Worked: 500,000 hours

Step 1: Calculate Total Recordable Injuries
TRI = 1 + 2 + 1 = 4 injuries

Step 2: Apply the Formula
TRIFR = (4 × 1,000,000) / 500,000
TRIFR = 4,000,000 / 500,000
TRIFR = 8.0

This means there were 8 recordable injuries for every million hours worked.

Why Use 1,000,000 vs 200,000?

In Australia (following Safe Work Australia guidelines) and many parts of Europe, the multiplication factor is 1,000,000. This represents the frequency of injuries per 500 full-time workers working a year. However, in the USA (OSHA standards), the factor is typically 200,000 (representing 100 employees). When benchmarking internationally, ensure you are comparing rates calculated with the same multiplication factor.

function calculateTRIFR() { // Get input values var fatalities = document.getElementById('fatalities').value; var lti = document.getElementById('lti').value; var mti = document.getElementById('mti').value; var rwi = document.getElementById('rwi').value; var hours = document.getElementById('totalHours').value; // Parse values to floats, default to 0 if empty or NaN var valFatalities = parseFloat(fatalities); if (isNaN(valFatalities)) valFatalities = 0; var valLti = parseFloat(lti); if (isNaN(valLti)) valLti = 0; var valMti = parseFloat(mti); if (isNaN(valMti)) valMti = 0; var valRwi = parseFloat(rwi); if (isNaN(valRwi)) valRwi = 0; var valHours = parseFloat(hours); // Validation: Hours must be greater than 0 if (isNaN(valHours) || valHours <= 0) { alert("Please enter a valid number for Total Hours Worked."); return; } // Calculate Total Recordable Injuries var totalInjuries = valFatalities + valLti + valMti + valRwi; // Calculate TRIFR Formula: (Total Injuries * 1,000,000) / Hours // Using 1,000,000 as per Australian Standard var trifr = (totalInjuries * 1000000) / valHours; // Display Results document.getElementById('displayTotalInjuries').innerHTML = totalInjuries; document.getElementById('displayTRIFR').innerHTML = trifr.toFixed(2); // Round to 2 decimal places // Show result section document.getElementById('resultsSection').style.display = 'block'; }

Leave a Comment