Change sequence of contactors each time they start up using plc program?

Murrayrfc

Member
Join Date
Jan 2011
Location
Glasgow
Posts
2
Four contactors k1, k2, k3 & k4. If temperature goes over set temp by, 1 degree bring one contactor in, two degrees bring two contactors in, three degrees bring three contactors in & four degrees bring four contactors in. But my problem is: how do I write the plc program so that it's not always the same contactor that comes in first. (different sequence everytime it goes overtemp)?
 
Last edited:
Try to think of how you would systematically approach this problem using plain English. Worry about the programming after you have a clear idea of how you will solve the problem.

For example. If you started with K1 you will need to remember that you started with K1 so you don't start with it next time. The plain English is "remember that you started with K1" where the PLC logic maybe to latch a bit called STARTED_WITH_K1. Next time you start up, the bit will be latched and your logic could have a condition to start K2 first if STARTED_WITH_K1 is latched. Continue this process with the other contactors and don't forget to unlatch your bits at the appropriate time.
 
You could use a counter that is updated every time it overtemps. If the counter is at one, start this sequence. If the count is two, then start this sequence, etc. Once the count goes to four, start the last sequence and reset the counter.
 

Similar Topics

Hey all, i have a panelview screen (image attached), with 4 items on it. Program 1, Program 2, ...3, ...4. The PLC i am using is a compactlogix...
Replies
5
Views
150
Greetings I have a problem, my system is the following: wincc v8.0 (demo), logo8.3, abb m2m analyzer. I created some pages to display the...
Replies
0
Views
49
We had one go down. we have a new one. Their emergency Number don't work. The Model is TLSA046AAH-330N01-007 A catalog says we need software TET...
Replies
2
Views
165
“The HMI files we cannot open—they were saved in V13—we do not have that—I cannot restore file –please have them save in V11 and send them back to...
Replies
4
Views
170
Hi guys! I'm working in Studio 5000 and have a bunch of armorstarts there (+- 40). I need to set up parameters for each of them, mostly just same...
Replies
0
Views
86
Back
Top Bottom