A timer delay off (or off-delay timer) is a control function where the output remains energized for a specific, preset duration after the input trigger signal is removed. When you integrate this into a real circuit or installation, it changes the system from reacting instantaneously to a switch opening into a system that gracefully completes a secondary task—like clearing residual heat, purging a gas line, or coasting a motor to a stop. Think of it like taking your foot off the gas pedal in a manual transmission car; the engine stops receiving fuel (input removed), but the vehicle continues to coast forward (output maintained) until friction finally brings it to a halt.
The Core Mechanism: How Timer Delay Off Actually Works
In timing relay terminology, this function is often labeled as TOFF (Timer Off-Delay) or simply an off-delay. The sequence of operations is rigid and predictable:
- Trigger Applied: The input control signal goes HIGH (or a switch closes). The output immediately energizes. There is zero delay on the turn-on phase.
- Trigger Removed: The input signal goes LOW (or the switch opens). This is the exact moment the internal timing clock starts.
- Timing Phase: The output remains energized, holding the load, for the duration of the preset time ($t$).
- Timeout: Once $t$ expires, the output de-energizes and the load turns off.
Where You Meet This in Practice
You will rarely see a timer delay off used for primary safety interlocks, but it is the undisputed king of post-cycle maintenance and thermal management. Here is where it shows up on the bench and the jobsite:
- TIG Welding Post-Flow: When you release the foot pedal, the arc stops, but a TOFF circuit keeps the argon shielding gas flowing over the hot tungsten electrode for 3 to 10 seconds to prevent oxidation.
- HVAC Blower Run-On: In high-efficiency furnaces or DIY solar air heaters, the fan continues running after the heat source shuts off to extract residual thermal energy from the heat exchanger.
- VFD and Inverter Cooling: Variable Frequency Drives and high-wattage power inverters use TOFF relays to keep chassis cooling fans spinning after the heavy load drops, preventing heat soak from destroying the IGBTs or MOSFETs.
- Motor Dynamic Braking: In some DC motor controllers, a TOFF circuit keeps a braking resistor shorted across the motor terminals for a few seconds after power is cut to bleed off back-EMF.
Worked Numeric Example: Sizing the RC Network for a Discrete TOFF
While you can buy a DIN-rail relay like the Finder 80.11 for about $25, building a discrete TOFF circuit on a breadboard or custom PCB using a resistor-capacitor (RC) network and a bipolar junction transistor (BJT) is a rite of passage. Let's calculate the exact component values needed to hold a 12V relay closed for 45 seconds after the trigger is removed.
We will use a standard NPN transistor (2N3904) to sink current for the relay coil. The transistor stays in saturation (keeping the relay ON) as long as the voltage across the base-emitter junction ($V_{be}$) remains above approximately 0.6V. The capacitor charges to 12V when the trigger is active, and discharges through a base resistor when the trigger is removed.
The discharge formula for a capacitor is:
V_c(t) = V_0 * e^(-t / RC)
We want to find the time ($t$) when $V_c$ drops to 0.6V, starting from $V_0 = 12V$.
0.6 = 12 * e^(-t / RC)
0.05 = e^(-t / RC)
ln(0.05) = -t / RC
-2.996 = -t / RC
For practical bench math, we round $-2.996$ to 3. Therefore, the time it takes for the transistor to turn off is roughly t = 3 * RC.
If our target delay is 45 seconds:
45 = 3 * RC → RC = 15
Now we select a capacitor. Large electrolytic capacitors have worse leakage, so we want to keep the value reasonable. Let's choose C = 220µF (0.00022 F).
R = 15 / 0.00022 = 68,181Ω
We use a standard 68kΩ resistor. When the trigger switch opens, the 220µF capacitor discharges through the 68kΩ resistor into the base of the 2N3904, holding it in saturation for exactly 45 seconds before the voltage decays below the 0.6V threshold.
Real-World Scenario Walkthrough: The Inverter Cooling Fan Failure
Theory on a breadboard is clean; physics in a hot enclosure is unforgiving. Here is a scenario that highlights a classic TOFF failure mode.
The Setup: A DIY off-grid cabin used a 3000W 12V pure sine wave inverter. To prevent the internal cooling fans from cycling on and off rapidly during fluctuating loads, the builder wired a discrete TOFF circuit (using the 68kΩ / 220µF math above) to hold a 30A automotive relay closed, powering two 120mm PC fans for 45 seconds after the inverter's internal load-sense dropped below 500W.
The Numbers: 12V nominal supply (13.2V from the LiFePO4 bank), 68kΩ carbon film resistor, standard 220µF 25V aluminum electrolytic capacitor, 2N3904 NPN transistor.
The Outcome: On the workbench at 22°C ambient, the fans ran for 46 seconds after the load dropped and then shut off perfectly. The builder installed it in the cabin's battery shed.
What Went Wrong: In mid-July, the ambient temperature inside the inverter chassis hit 55°C. The builder noticed the LiFePO4 battery bank was mysteriously losing 1.5Ah overnight despite zero loads. The cooling fans were running 24/7. The TOFF circuit had failed in the 'ON' state.
V = I * R), 60µA * 68,000Ω = 4.08V. Because the leakage current maintained a 4.08V drop across the resistor, the voltage at the base of the transistor never dropped to the 0.6V cutoff threshold. The transistor stayed in the active region, the relay stayed pulled in, and the fans drained the battery bank.
The Fix: The builder replaced the BJT with a logic-level N-channel MOSFET (IRLZ44N). Because a MOSFET is voltage-controlled and its gate draws virtually zero steady-state current, the capacitor's leakage current could not create a voltage drop across the gate resistor. The gate voltage decayed cleanly to the MOSFET's $V_{gs(th)}$ threshold, and the fans shut off reliably. For a deeper look at how timing ICs handle these edge cases, refer to the TI NE555 Datasheet which integrates internal comparators immune to this specific RC leakage trap.
Common Confusions and Troubleshooting Matrix
When diagnosing a timing circuit that isn't behaving, you first need to verify you actually have the right timing function wired into the panel. Here is how the three most common solid-state and electromechanical timer functions compare.
| Function | Trigger Applied (Switch Closes) | Trigger Removed (Switch Opens) | Primary Use Case |
|---|---|---|---|
| TON (On-Delay) | Waits $t$ seconds, then Output ON | Output turns OFF instantly | Motor soft-starts, alarm entry delays |
| TOFF (Off-Delay) | Output turns ON instantly | Waits $t$ seconds, then Output OFF | Cooling fan run-on, gas purging |
| One-Shot (Monostable) | Output turns ON for exactly $t$ seconds, regardless of how long trigger is held | No effect if $t$ has already expired | Debouncing switches, fixed-length solenoid pulses |
If you are using a microcontroller like an ESP32 or Arduino to handle your delays, you avoid the analog RC leakage issues entirely. However, in high-EMI environments (like near a VFD or a welding machine), a discrete analog TOFF relay or a dedicated IC like the 555 timer (see this 555 monostable guide for wiring topologies) will often survive voltage spikes that would brownout or reset a microcontroller's GPIO logic.
Frequently Asked Questions
Can I use a smart home relay for a timer delay off?
Yes, but with caveats. Smart relays (like Shelly or Sonoff) can execute 'run-on' scripts via their internal logic or Home Assistant automations. However, if the WiFi network drops or the router reboots, the smart relay may default to an 'OFF' state, killing your critical cooling or purging cycle prematurely. For safety-critical thermal management, a hardwired analog TOFF relay is vastly more reliable.
Why does my off-delay timer reset if the power blips?
Standard TOFF relays require continuous power to their $A1/A2$ coil terminals to maintain the internal timing circuitry. If the main supply voltage sags or drops out during the timing phase, the relay will instantly de-energize. If you need the timer to finish its count even during a total power failure, you must use a latching relay circuit backed by a supercapacitor or a UPS-fed control circuit.
What is the difference between a TOFF timer and a slow-release relay?
A slow-release relay uses a physical copper slug or a parallel diode/capacitor across the coil to create a magnetic decay delay, usually measured in milliseconds (e.g., 100ms to 500ms). A true TOFF timer uses an active timing circuit (RC network, quartz oscillator, or microcontroller) to hold the output contacts closed for seconds, minutes, or even hours.






