Author Topic: Time Delay Drop Out Relay  (Read 13793 times)

DanAlden

  • Newbie
  • *
  • Posts: 2
  • I'm a llama!
    • View Profile
Time Delay Drop Out Relay
« on: June 09, 2009, 06:03:24 AM »
What is the best way to simulate a Time Delay Drop Out relay?
That is, how can I simulate a physical relay which when deenergized, will not change contact positions for a specific time period (will continue to operate as if were still energized until the timer times out). :)
« Last Edit: June 09, 2009, 06:04:14 AM by DanAlden »

garysdickinson

  • Hero Member
  • Posts: 502
  • Old PLC Coder
    • View Profile
Re:Time Delay Drop Out Relay
« Reply #1 on: June 09, 2009, 11:56:13 PM »
There are several ways to do this.  I'll present a fairly generic method that will work with most all PLCs.

In the following example:

I1, is the INPUT
O1 is the OUTPUT
Timer1 is a TIMER that determines how long to keep the OUPUT relay energized after the input goes inactive.

The first rung of the ladder logic causes Timer1 to go active (TRUE) only after the INPUT, I1, has inactive (FALSE) for the time value that is set by Timer1.

The second rung is of the ladder logic is typical ladder logic latching relay.  When I1 is TRUE O1 goes TRUE.  The OUTPUT, O1, is wrapped back as an input term to the O1.  The the Timer1 NC term (|/|) is used to reset output O1 when Timer1 goes active.


    I1
--|/|------------------------(Timer1)

    I1                Timer1
--||-------+---|/|------------(O1)
              |
  O1        |
--||-----+

Gary D

DanAlden

  • Newbie
  • *
  • Posts: 2
  • I'm a llama!
    • View Profile
Re:Time Delay Drop Out Relay
« Reply #2 on: June 11, 2009, 03:44:26 AM »
This looks good.  Thanks very much Gary D. :)

bongofury

  • Newbie
  • *
  • Posts: 10
  • I'm a llama!
    • View Profile
Re:Time Delay Drop Out Relay
« Reply #3 on: June 11, 2009, 06:48:27 PM »
Dan, I put together a small program, specific to TRI T100MD+ that will do what you want.  Email me at <debruns@ahdynamics.com> if you would like.  You will need i-TRiLOGI to open it.........Dave ;D