March 20, 2026

Sequential Motor Control with Time delay using Schneider M340 PLC

Introduction

Sequential motor control with time delay is a widely used industrial automation technique where multiple motors are operated one after another in a fixed sequence, with a programmed delay between each operation. Instead of starting all motors simultaneously, which can cause excessive current surges and mechanical stress, this method ensures safe operation, load management, and smooth functioning of machines.

The system is typically implemented using a Programmable Logic Controller (PLC), which provides flexibility, reliability, and easy modification of timing or sequence. Timers within the PLC are used to introduce delays between the starting of each motor, ensuring controlled and predictable operation.

This technique is essential in industries where multiple motors are part of a process, such as conveyor systems, pumping stations, HVAC systems, and automated manufacturing plants.

     Diagram: -

 

 










Problem Statement

In industrial environments, starting multiple motors simultaneously can lead to:

High inrush current, causing voltage dips and possible equipment damage.

Mechanical stress on connected machinery.

Reduced safety due to uncontrolled startup.

To overcome these issues, a sequential motor control system with time delay is required. This system ensures motors start one after another, with defined delays, improving safety, efficiency, and equipment lifespan.

 

Components Used

Start Push Button (NO – Normally Open): Initiates the process.

Stop Push Button (NC – Normally Closed): Stops the system instantly.

Relay Coil: Provides latching after pressing the start button.

Motors (M1, M2, M3, M4, M5): Represent different stages of operation.

Timers (TON_1, TON_2, TON_3, TON_5): Provide time delays between motor operations.

 

Ladder Logic Concept

The PLC program is designed using ladder logic. The Start button energizes the relay coil, which latches the system. Timers are then activated sequentially, each controlling the delay before the next motor starts. The Stop button breaks the latch, shutting down all motors immediately.

 

Working Principle

Step 1: System Start

When the Start button is pressed, the relay coil energizes and latches itself using its own contact.

The system remains ON even after releasing the Start button.

Pressing the Stop button breaks the latch, stopping all motors instantly.

Step 2: First Motor (M1) Operation

After the relay is activated, Motor M1 starts immediately.

No delay is applied before M1, making it the starting point of the sequence.

 

Step 3: Second Motor (M2) with Delay

Timer TON_1 is activated with a preset delay of 30 seconds.

After this delay, its output turns ON Motor M2.

M2 starts 30 seconds after M1.

 

Step 4: Third Motor (M3) with Additional Delay

Timer TON_2 is used for Motor M3, with a delay of 40 seconds.

Once the timer completes, M3 is turned ON.

M3 starts after M2 with a defined delay.

 

Step 5: Fourth Motor (M4)

Timer TON_5 controls Motor M4 with a delay of 50 seconds.

After the timer finishes, M4 starts automatically.

This ensures proper sequencing and avoids overload.

 

Step 6: Fifth Motor (M5)

Finally, Timer TON_3 with a delay of 60 seconds is used to start Motor M5.

M5 is the last motor in the sequence and starts after all previous motors.

 

Interlocking Concept

Interlocking is a critical safety feature in ladder logic. Contacts of other motors (M2, M3, M4, M5) are used in series or parallel to ensure:

Motors start in the correct order.

A motor will not start unless previous conditions are satisfied.

Prevents unsafe operations and system faults.

 

Advantages of Sequential Motor Control

Reduced Starting Current: Motors do not start simultaneously, avoiding high inrush current.

Improved Safety: Controlled and predictable operation.

Energy Efficiency: Prevents power spikes and optimizes load distribution.

Extended Machine Life: Smooth startup reduces mechanical wear and tear.

Flexibility: Timing and sequence can be easily modified in PLC programming.

Applications

Conveyor Belt Systems: Motors start sequentially to move products smoothly.

Industrial Production Lines: Ensures machines operate in the correct order.

Pumping Systems: Controls multiple pumps with delays to manage water flow.

HVAC Systems: Sequential startup of fans and compressors prevents overload.

Automated Manufacturing Plants: Provides safe and efficient motor operation.

Conclusion

Sequential motor control with time delay is a fundamental automation technique in modern industries. By using PLC ladder logic and timers (TON), multiple motors can be controlled efficiently in a fixed sequence.

The system ensures:

Smooth operation

Enhanced safety

Efficient use of electrical power

Longer equipment lifespan

The project demonstrates how motors M1 to M5 are started one by one using different time delays (30s, 40s, 50s, 60s). This method is reliable, flexible, and widely applicable in industrial automation.

Learning Outcomes

Understanding of timers and sequencing in PLC programming.

Practical exposure to ladder logic design.

Application of interlocks and latching for safety.

Real‑world implementation of automation principles.