Allen Bradley Pyramid Control PLC5/250 TON Instruction

MBrande315

Member
Join Date
Apr 2013
Location
Birmingham, Alabama
Posts
2
I am in the process of converting a PLC5/250 program and the program has a timer on delay (TON) instruction. The time base is set to SCAN. I have only seen a time base of 0.01 and 1.0 in the PLC5. Does SCAN as a time base mean that when the timer is enabled that it accumulates the number of scans in the Preset value and then the Done bit goes high? Does the timer reset when the Enable signal is lost like a regular TON?

Also, any ideas why someone would use this method over just use a 0.01 or 1.0 time base?

Thanks. Any help would be greatly appreciated.
 
I have never seen the need to use a timebase of SCAN in any project I have ever worked on....

The TON instruction works exactly the same as when using a "proper" timebase, except that the instruction doesn't have to work out how much time has elapsed since it was last scanned, it simply adds 1 to the accumulator each time it is scanned.

It effectively turns the Timer into a Counter, counting the number of scans of the logic into the ACCumulator, and sets the DN bit when the ACC is greater than or equal to the PREset.

Perhaps the programmer wanted a shorter time interval than the smallest timebase allowed, or perhaps there is some iterative code that actually takes XXX scans to complete, and he used a timer to signal that it was complete. Either way it is possible to replicate this in your new machine by using Counter instead. You will have to unlatch the .CU enable bit each time the CTU has been scanned, or it won't progress past a count of 1.
 

Similar Topics

For nostalgic reasons does anyone know the model number for the DEC VMS computer that fits into the Pyramid Rack? I could only find the OS tapes...
Replies
1
Views
1,009
I am looking to purchase or borrow an offline license for the Pyramid Integrator Controller. I have an online license but also need an offline...
Replies
12
Views
4,414
Hi, I have a ControlLogix system with 1756-IF16 analogue inputs. I can't scale the inputs at the card as there is a requirement to facilitate...
Replies
11
Views
233
Dear community, I am trying to find a tool for Allen-Bradley PLCs similar to SiVArch for Siemens PLCs to automatically generate faceplates and...
Replies
0
Views
78
Hi everyone, new to forum. Since very long time i having issue with 1734-AENT module, after some period of time its keep stuck in error (simmilar...
Replies
13
Views
418
Back
Top Bottom