Pages

Friday, October 24, 2014

Basic PLC Ladder Programming Examples 9

Basic PLC Ladder Programming Training Examples for Beginners.

 Hi friends here we are starting here a series of Free Training on PLC Ladder Programming training & tutorials.These PLC Ladder Programs are important to get basics of Ladder programs.

 PLC Ladder Practice Problem: 


Starting 3 Motors Sequentially with delay i.e. starting the oil pump motor immediately when START is pressed. The main motor will be started after a 10 sec delay and then the auxiliary motor after a 5 sec delay. In addition, stopping all motors immediately when STOP is pressed.

Timing Diagram:




Topics Covered in this example is PLC Timer (Starting 3 Motors Sequentially).

Number of PLC Inputs Required

X1 – Start Switch.


      X2 – Stop Switch.

Number of PLC Outputs Required


Y0 – OIL Motor

Y1 – Main Motor

Y2 – Auxiliary Motor

Number of PLC Timer Required


T0 – 10 second Timer, 100 ms Time Base. (See K100 Preset Value for Timer)

T1 – 5 second Timer, 100 ms Time Base. (See K50 Preset Value for Timer)

 PLC Ladder Programming:



 


PLC Ladder Program Description: 


·        When START is pressed, the NO contact X0 will be activated, which makes Y0 to be ON and latched. The oil pump motor will start the lube system. At the same time, [TMR T0 K100] instruction will be executed. When T0 reaches its set value of 10 sec, the NO contact T0 will be ON.   

·        When the NO contact T0 is ON, Y1 will be ON and latched, which starts the main motor and stops timer T0. At the same time, [TMR T1 K50] is executed, and the NO contact T1 will be ON when timer T1 reaches its set value. 

·        When the NO contact T1 is ON, Y2 will be ON and latched, which starts the auxiliary motor and stops T1.   

·        When STOP is pressed, the NC contact X1 will be activated, which makes Y0, Y1 and Y2 OFF. The oil pump motor, main motor and auxiliary motor will stop working. 

Note: Example is only for training purposes. No practical implementation is done.

 See More PLC Ladder Programming Examples


PLC Ladder Programming Example 1

PLC Ladder Programming Example 2
PLC Ladder Programming Example 3
PLC Ladder Programming Example 4
PLC Ladder Programming Example 5
PLC Ladder Programming Example 6
PLC Ladder Programming Example 7
PLC Ladder Programming Example 8
PLC Ladder Programming Example 9
PLC Ladder Programming Example 10
PLC Ladder Programming Example 11
PLC Ladder Programming Example 12
PLC Ladder Programming Example 13
PLC Ladder Programming Example 14
PLC Ladder Programming Example 15
 

Related Posts by Categories

0 comments:

Post a Comment