πŸŽ“ Lesson 21 D5

Load Shedding Logic Design for Multi-Source Power Systems

Load shedding logic is a smart system that automatically cuts power to less critical equipment when electricity supply drops, so essential mine operations like ventilation and emergency lighting stay running.

🎯 Learning Objectives

  • βœ“ Design a three-tier load shedding hierarchy for a multi-source underground mine power system
  • βœ“ Calculate priority-based shedding thresholds using real-time demand and source capacity data
  • βœ“ Analyze sequence-of-operation timing to prevent cascading instability during generator switchover
  • βœ“ Explain the role of IEC 61850 GOOSE messaging in synchronizing shedding commands across distributed PLCs
  • βœ“ Apply MSHA 30 CFR Β§57.12001 and IEEE 141–2020 criteria to validate load classification and shedding delay tolerances

πŸ“– Why This Matters

In deep underground mines, a sudden loss of surface grid power can trigger catastrophic consequences: ventilation failure β†’ toxic gas buildup β†’ evacuation risk; pump shutdown β†’ flooding; loss of communications β†’ delayed emergency response. Load shedding logic isn’t about saving energyβ€”it’s about preserving human life and regulatory compliance by ensuring that *only* non-critical loads (e.g., ore conveyors, office HVAC) are shedβ€”while keeping fans, refuge chambers, escapeways, and monitoring systems online. In 2022, a load-shedding failure at the Cobar Mine (NSW) led to 42 minutes of partial ventilation lossβ€”prompting a formal MSHA audit and revised design standards.

πŸ“˜ Core Principles

Load shedding logic operates on three foundational layers: (1) **Load Classification**, governed by safety function (e.g., Class I: life-safety; Class II: production continuity; Class III: non-essential), per IEEE 493–2022; (2) **Source Monitoring**, where real-time kW/kVAr/frequency from grid, diesel gensets, and battery UPS are compared against pre-calibrated thresholds; and (3) **Staged Execution**, implementing time-differentiated tripping (e.g., Tier 1 at βˆ’12% voltage for 200 ms β†’ Tier 2 at βˆ’15% for 500 ms) to avoid simultaneous motor inrush during recovery. Modern systems use IEC 61850-7-420 logical nodes (e.g., LSHP for Load Shedding Processor) with configurable deadbands and hysteresis to prevent chattering during marginal conditions.

πŸ“ Shedding Threshold Calculation

The minimum acceptable active power threshold before initiating Tier 1 shedding is calculated using available generation margin and critical load demand. This ensures sufficient reserve for transient stability during source transition.

Minimum Available Margin Threshold (MAMT)

MAMT = P_{crit} + (0.15 Γ— P_{crit})

Calculates the minimum active power that must remain available on the isolated system to sustain critical loads plus required stability reserve.

Variables:
SymbolNameUnitDescription
MAMT Minimum Available Margin Threshold MW Minimum sustained power (in MW) that must remain after shedding
P_{crit} Total Critical Load Power MW Sum of all Class I (life-safety) electrical loads
Typical Ranges:
Underground coal mine: 2.8 – 5.2 MW
Open-pit copper mine: 4.1 – 8.6 MW

πŸ’‘ Worked Example

Problem: A mine draws 8.2 MW total load. Critical safety loads (ventilation, refuge air, comms) = 3.1 MW. Two 5 MW diesel generators operate in parallel (derated to 4.5 MW each due to altitude and ambient temp). Grid supply is lost. Calculate MAMT for Tier 1 shedding initiation.
1. Step 1: Total available generation = 2 Γ— 4.5 MW = 9.0 MW
2. Step 2: Required minimum reserve = 15% of critical load (per IEEE 141–2020 Sec. 5.7.3) = 0.15 Γ— 3.1 MW = 0.465 MW
3. Step 3: MAMT = Critical load + Reserve = 3.1 MW + 0.465 MW = 3.565 MW β€” this is the *minimum sustained power* that must remain available after shedding; thus, maximum allowable shed = 9.0 MW βˆ’ 3.565 MW = 5.435 MW
4. Step 4: Verify: Non-critical load = 8.2 βˆ’ 3.1 = 5.1 MW < 5.435 MW β†’ all non-critical loads can be shed while maintaining reserve.
Answer: The result is 3.565 MW, which falls within the safe range of 3.5–3.7 MW for this configuration per MSHA Technical Bulletin TB-2021-04.

πŸ—οΈ Real-World Application

At the Diavik Diamond Mine (NWT, Canada), a dual-source microgrid (grid + 4Γ—12 MW diesel gensets) employs Siemens SICAM PAS-based load shedding logic. During a 2023 grid fault, the system detected βˆ’13.2% voltage deviation within 80 ms, triggered Tier 1 shedding (crushers, dryers, admin lighting) at 120 ms, confirmed stable bus voltage at 320 ms, then initiated Tier 2 (non-essential hoist auxiliaries) only after 1.8 sβ€”when genset governor response stabilized frequency. No safety system interruption occurred, and full non-critical restoration commenced after 4 min 12 sβ€”demonstrating compliance with CSA Z462–22 arc-flash coordination timing requirements.

✏️ Design Exercise

You are tasked with configuring Tier 1 shedding for an open-pit copper mine substation serving: (a) Main fan (1.8 MW, Class I), (b) Dewatering pumps (2.4 MW, Class I), (c) Ore haul trucks (6.3 MW, Class II), (d) Camp facilities (0.9 MW, Class III). Grid capacity = 10 MW; onsite backup = two 4.2 MW gensets (90% derated). Using MSHA 30 CFR Β§57.12001 and IEEE 141–2020, determine: (i) Total Class I load, (ii) Minimum required reserve (15%), (iii) Maximum permissible shed, and (iv) Which loads must remain energizedβ€”and justify your classification per regulation.

πŸ“š References