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

I have two identical machines running similar HMI projects, the only difference is one is done in FactoryTalk View Version 10 and the other is...
Replies
3
Views
125
Hoping someone can give me some guidance or confirmation of what I need to do. We have a FactoryTalk SE program that I need to change the IP...
Replies
2
Views
96
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
180
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
69
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
172
Back
Top Bottom