PLC Tutorials

PLC Program for Controlling Sequence of Conveyors with Interlock

 This is a PLC Program for controlling the sequence of conveyors and interlocking them.

PLC Conveyor Interlock

Problem Description

A feeder drops material on the conveyor which sends material for further process through one more conveyor. The conveyor must start automatically when the material is dropped.

Implement a PLC program for this application using ladder diagram language.

Problem Diagram

PLC Controlling Sequence of Conveyors with Interlock

Problem Solution

In this system, we will consider S7-300 PLC and TIA portal software for programming.

The feeder has a motor mounted to feed material on conveyor belts.

Load cells are installed at the bottom of conveyor belts to detect if material is present on the conveyor belt.

When material falls on the conveyor belt 1, motor 1 should start, and when material is present on the conveyor belt 2, motor 2 remains ON.

Switches can also be used sometimes to detect material’s presence. But for more reliable operation, Load cells can be used as shown in the diagram above.

List of Inputs/Outputs

Inputs List

  • START PB :- I0.0
  • STOP PB :- I0.1
  • Load cell 1 :- I0.2
  • Load cell 2 :- I0.3

Outputs List

  • Cycle ON :- Q0.0
  • Conveyor 1 motor :- Q0.1
  • Conveyor 2 motor :- Q0.2
  • Feeder motor :- Q0.3

PLC Controlling Sequence of Conveyors with Interlock

Program Explained

Network 1:

Cycle ON (Q0.0) lamp will start when START PB (I0.0) will be pressed and cycle can be stopped by pressing STOP PB (I0.1).

Network 2:

Feeder motor (Q0.3) will be ON when cycle is ON.

Network 3:

If cycle is ON and load cell 1 feedback is detected, conveyor motor 1(Q0.1) will be ON.

Network 4:

If cycle is ON and Conveyor 1 (Q0.1) or load cell 2 feedback (I0.3) is detected, conveyor 2 motor (Q0.2) will be ON.

Note :- Above application may be different from actual application. This example is only for explanation purpose only. We can implement this logic in other PLC also. This is the simple concept of conveyor logic and interlocking them, we can use this concept in other examples also.

All parameters considered in example are for explanation purpose only, parameters may be different in actual applications. Also all interlocks are not considered in the application.

Author: Bhavesh

If you liked this article, then please subscribe to our YouTube Channel for PLC and SCADA video tutorials.

You can also follow us on Facebook and Twitter to receive daily updates.

Read Next:

You've successfully subscribed !

View Comments

Share

Recent Articles

  • PLC Tutorials

PLC Panel and MCC Panel Interface Signals

The PLC panel and MCC panel interface signals are start, stop, run feedback, trip, local…

4 days ago
  • PLC Tutorials

Shutter Door Control using Motor and Limit Switches

 In this article, we are going to discuss about shutter door control using induction motor…

6 days ago
  • Electrical Basics

Electrical Drives – Modes, Types, Speed Control Applications

Electrical Drives control the motion of electric motors. Motion control is required in industrial and…

6 days ago
  • PLC Tutorials

PLC Ladder Logic Design: Control 3 Motors with Toggle Switch

PLC ladder logic design to control 3 motors with toggle switch and explain the program…

3 weeks ago
  • PLC Tutorials

VFD Simulator Download – Free Yaskawa V1000 Software

VFD simulator download: Master the online tool from the Yaskawa V1000 & programming software for…

6 days ago
  • PLC Tutorials

Conveyor Sorting Machine PLC Program with Calculation Function

The conveyor sorting machine is widely used in the packing industries using the PLC program…

1 week ago