Sei sulla pagina 1di 15

CHAPTER - INTRODUCTION TO PLCS

Advantages of PLCs

Cost effective for controlling complex systems. Flexible and can be reapplied to control other systems quickly and easily. Computational abilities allow more sophisticated control. Trouble shooting aids make programming easier and reduce downtime. Reliable components make these likely to operate for years before failure.

PLC Origin

- Developed to replace relays in the late 1960s


- Costs dropped and became popular by 1980s - Now used in many industrial designs

Relays and
Schematic Symbols
input coil

OR

normally closed

normally open

OR

Logical Control with Relays

115V AC wall plug

relay logic

input A (normally closed)

input B (normally open)

output C (normally open)

C ladder logic

Relay Logic In a PLC


power supply +24V com.

push buttons

PLC
inputs

ladder logic

outputs

115V ac AC power neut.

light

Reading Ladder Logic

HOT A B X

NEUTRAL

INPUTS

OUTPUTS

Note: Power needs to flow through some combination of the inputs (A,B,C,D,E,F ,G,H) to turn on outputs (X,Y).

A Ladder Logic Example

Note: When A is pushed, the output B w ill turn on, and the input B w ill also turn on and keep B on perma nently - until power is removed. Note: The line on the right is being left of f intentionally and is implied in these diagrams.

Mnemonics
00001 00002 00003 00004 00005 00006 00007 00008 LDN LD AND LD LD AND OR ST END 00002 00003 00004 00107 00001 00002 00107 the mnemonic code is equivalent to the ladder logic below

00003

00004

END

SFCs

Start

power up

Execution follows multiple paths flash

power down

End

Structured Text

N7:0 := 0; REPEAT N7:0 := N7:0 + 1; UNTIL N7:0 >= 10 END_REPEAT;

PLC in a Control Loop

PROCESS

Feedback from sensors/switches PLC

Connections to actuators

The Four Stages of a PLC Scan

PLC program changes outputs by examining inputs THE CONTROL LOOP Read inputs

Set new outputs Power turned on Process changes and PLC pauses while it checks its own operation

Ladder Logic Inputs

x Normally open, an active input x will close the contact and allow power to flow . x Normally closed, pow er flow s w hen the input x is not open. x IIT immediate inputs will take current values, not those from the previous input scan. (Note: this instruction is actually an output that will update the input table w ith the current input values. Other input contacts can now be used to examine the new values.)

Ladder Logic Outputs


When power is applied (on) the output x is activated for the left output, but turned off for the output on the right. x x

An input transition on will cause the output x to go on for one scan (this is also know n as a one shot relay) x OSR

When the L coil is energized, x will be toggled on, it will stay on until the U coil is energized. This is like a flip-flop and stays set even w hen the PLC is turnedf. of x x L U Some PLCs w ill allow immediate outputs that do not w ait for the program scan to end before setting an output. (Note: This instruction w ill only update the outputs using the output table, other instruction must change the individual outputs.) x IOT

Note: Outputs are also commonly shown using parentheses -( )- instead of the circle. This is because many of the programming systems are text based and circles cannot be draw n.

Sample Problem: Try to develop (without looking at the solution) a relay based controller that will allow three switches in a room to control a single light.

Potrebbero piacerti anche