PLC Tutorials

Sequential PLC Programming for the Pneumatic Valves

This is a PLC program for pneumatic valve operation in sequence mode.

Sequential PLC Programming for the Pneumatic Valves

Write a ladder logic for sequential PLC programming for the pneumatic valves to operate cylinders in sequential mode.

Pneumatic valve operation in sequence mode

Solution:

Here in this system, there are two cylinders and two push buttons that are connected to the PLC.

 The push buttons are connected to the PLC inputs and the cylinders are connected to the Outputs of the PLC.

There are the following condition for the system to work which are as follows: –

When START PB is pushed, cylinder A should start, and Cylinder B should start after 5 seconds of Cylinder A.

When STOP PB is pushed, both cylinders A & B are to be stopped.

Now to meet the following conditions, we must use a timer which delays the operation of cylinder B.

List of inputs/outputs

Inputs:

  1. X1 -START PB
  2. X2 -STOP PB

Outputs:

  1. Y0 -Cylinder A
  2. Y1 -Cylinder B

Ladder Diagram for the Sequential Operation of Cylinders

Program Explanation:

In rung 1, we used STRAT PB (X1) to start Cylinder A (Y0). Here we used NC contact of STOP PB (X2) to stop cylinder A (Y0). In parallel with X1 contact, we used NO contact of Y0 to latch the output.

In rung 2, we used Timer T0 to count the delay for cylinder B (Y1).

In rung 3, we used NO contact of T0 so once time delay over the Cylinder B (Y1) will ON.

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

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

Read Next:

You've successfully subscribed !
Share

Recent Articles

  • PLC Tutorials

Example of Flip-Flop PLC Program for Lamps Application

Learn the example of flip-flop PLC program for lamps application using the ladder logic to…

3 days ago
  • PLC Tutorials

STAR DELTA Programming using PLC Controller

In this article, you will learn the STAR DELTA programming using PLC controller to start…

4 days ago
  • Instrumentation Design

Single and Three Phase Immersion Electrical Heaters Wiring Circuits

Lube oil consoles of rotary equipment packages in industrial process plants are usually equipped with…

21 hours ago
  • Instrumentation Design

Immersion Heaters in Lube Oil Consoles

Rotating equipment packages such as pumps, compressors, turbines need the lube oil consoles for their…

3 days ago
  • PLC Tutorials

How to Blink Lights in Ladder Logic?

This article explains how to blink lights in ladder logic with a detailed explanation video…

3 weeks ago
  • PLC Tutorials

From Boolean Algebra to PLC Logic

In this article, a simple example will teach you the conversion from Boolean algebra to…

1 month ago