A Question on Interlocking Logic

FCC

Member
Join Date
Mar 2003
Posts
9
I wanna design a Start-Stop circuit which onctrols 3 motor starters. If I connect all three motor starters so that if an OVERLOAD occurs on any one of the starters. all three starters will automatically diusconnect. More than one overload is needed since there are more than one motor starter. Physically, the overloads aren't part of the PLC because if the PLC stops then the emergency stop wpould be of no use, from my understanding. Physcially, it must be separate from the PLC, like an emergency stop button. My question is where does it connect to though, and how will it make the 3 motor starters stop automatically when an overload occurs. Thanks in advance.
 
When you are talking about motors, overcurrent protection and overload protection you need to realize that you are getting out of the realm of PLC logic and back into hardwired devices. There are electronic devices, but even these are intended for use external to system controllers.

One of the most common OVERLOAD protection devices used with motor starters is the thermal overload. It is sized for the specific motor and application and then monitors the sustained amperage that the motor draws by way of heat. When the heat is too great for too long, the overload "trips" and opens a set of N.C. contacts.

Generally, each motor is wired with this set of N.C. contacts between the neutral side of the motor starter coil and neutral. A standard motor starting circuit looks something like this:

                                  Starter          Thermal
Stop PB Start PB Coil Overload
---------|/|-----+--| |-----+-----( )--------------|/|-----
| |
| |
| Starter |
| Coil |
+--| |-----+


In the case of the three individual motors wired so that any given motor overload would shut down all three, all you need to do is wire all three overloads in series. Like this:


       Stop PB    Start PB        M1     OL1    OL2    OL3
---------|/|-----+--| |-----+-----( )--+---|/|----|/|----|/|-----
| | |
| | |
| | |
| M1 | |
+--| |-----+ |
|
|
Stop PB Start PB M3 |
---------|/|-----+--| |-----+-----( )--+
| | |
| | |
| | |
| M2 | |
+--| |-----+ |
|
|
Stop PB Start PB M3 |
---------|/|-----+--| |-----+-----( )--+
| |
| |
| |
| M3 |
+--| |-----+



Does that help?

Steve
 
IP1=E-STOP,IP2=O/L1 TRIP,I/P3=O/L2 TRIP,I/P4=O/L3 TRIP,OP1=MOTORS



I/P1 I/P2 I/P3 I/P4
---[ ]---[/]----[/]----[/]--------------------------(O/P1)





EXTERNAL CIRCUIT

E-STOP
----[/]-----------I/P1
O/L1 TRIP
----[ ]-----------I/P2

O/L2 TRIP
----[ ]-----------I/P3

O/L3 TRIP
----[ ]-----------I/P4


O/P1 E-STOP O/L1 O/L2 O/L3
-( )-----[/]----[/]----[/]----[/]-------(M1)and(M2)and(M3)


IS THIS ON THE RIGHT LINES????

sorry about the drawing,still can't work out how to send them.
 
Steve, I was told not to put the overloads after the coil (M1)
Can you explain why the overloads go after M1? In my understanding, my basic PLC class is just a theory class, and the weakness is that it leaves out all the physical hard-wiring and other electrical devices, and only focuses on relay ladders and etc. But I think I was told to make it that nothing can go after the coil M1, because the PLC just wont accept it, so I'm a bit confused on the OLs coming after M1.

Bungle, I'm trying to design something that the PLC will accept, in your case, I dont think having 3 coils on one rung will work.
 
Steve was showing the hardwired schematic (i.e. physical wiring), not ladder logic.

You are right that nothing can go AFTER the "coil" in PLC code.

beerchug

-Eric
 
FCC,

Eric is exactly right, I was showing how the system would be hardwired. The important thing to remember here is whenever you are actually working with motors, you must physically hardwire your overload protection in with your motor starters. That is why I drew the circuit I did.

As far as the PLC itself is concerned, it is certainly good information that the overload is tripped and I would encourage taking it into the PLC (using a separat contact). Just don't rely on the PLC to shut off the motor in this event. Just use the PLC to monitor and then to break off any "motor run" commands it might be issuing.

Now, in the PLC itself, I would write the code in a similar fashion to the hardwired diagram with the modification that puts the overloads at the front of the circuit:

                                               Starter
OL1 OL2 OL3 Stop PB Start PB Coil
---|/|---|/|---|/|------|/|-----+--| |-----+-----( )--
| |
| |
| Starter |
| Coil |
+--| |-----+



Steve
 

Similar Topics

I have a 120V relay, 120V DI card and a analog input. I was wanting to know if i could put a 24V DI and well as a 120V DI card on the same plc...
Replies
1
Views
49
Hello again..trying something on an existing poorly written program and just wanted to double check something system is an A-B MicroLogix 1200 In...
Replies
5
Views
182
Good morning! Let me start by saying, I am still learning about this type of HMI programming. I recently watched a video about recipes and how it...
Replies
4
Views
145
I have some logic that I have written within a 5380 series controller that tracks the time an event is started, while the event is running an RTO...
Replies
2
Views
102
I have an HMI 2711R - T4T Series B, and I want to know which PLCs, besides Micro 820, can communicate with it.
Replies
2
Views
112
Back
Top Bottom