0% found this document useful (0 votes)
226 views

FWD Rev Three Phase Motor Using Timer PDF

This document describes a program for controlling the direction of a three-phase asynchronous motor. The program uses buttons to control the motor's direction - pressing forward runs the motor forward, pressing reverse runs it in reverse, and pressing stop stops it. Timers are used to avoid short circuits when changing the motor's direction by ensuring a 1 second delay between enabling contactors. The program disables one contactor and enables the other depending on which button is pressed.

Uploaded by

ghan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
226 views

FWD Rev Three Phase Motor Using Timer PDF

This document describes a program for controlling the direction of a three-phase asynchronous motor. The program uses buttons to control the motor's direction - pressing forward runs the motor forward, pressing reverse runs it in reverse, and pressing stop stops it. Timers are used to avoid short circuits when changing the motor's direction by ensuring a 1 second delay between enabling contactors. The program disables one contactor and enables the other depending on which button is pressed.

Uploaded by

ghan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

Basic Program Design Examples


1.15 Forward/Reverse Control for the Three-Phase Asynchronous Motor
Forward

Forward

Reverse
Stop

Reverse

Control Purpose:
z

Controlling the motor to run forward when Forward is pressed, run reverse when Reverse is
pressed and stop when Stop is pressed.

Devices:
Device

Function

X0

Forward button of the motor. X0 will be ON when pressed

X1

Reverse button of the motor. X1 will be ON when pressed

X2

Stop button. X2 will be ON when pressed.

T1

1 sec timer

T2

1 sec timer

Y0

Forward contactor

Y1

Reverse contactor

Control Program:
X0
TMR
T0

X1

X2

T0

K10

T1

K10

Y1
Y0

Y0
X1
TMR
T1

X0

X2

Y0
Y1

Y1

Program Description:
z

X0 = ON when Forward is pressed. After 1 second, contactor Y0 will be enabled, and the
motor begins to run forward. On the other hand, X1 = ON when Reverse is pressed. After 1
second, contactor Y1 will be enabled, and the motor begins to run reverse. Besides, Y0 and
Y1 will be disabled and the motor will stop running when X2 is pressed.

The two timers in the program are used to avoid the interphase short-circuit when the motor
changes its running mode. The short circuit may occur if another contactor is enabled
instantly while the electric arc in the disabled contactor still exists.

1-18

DVP-PLC Application Examples

You might also like