PLCs general Flashcards

1
Q

Name the five basic components of a PLC system!

A

• The PLC processor, or controller • I/O (Input /Output) modules • Chassis or backplane • Power supply • Programming software that runs in a PC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the processor do?

A


Stores the control program and data in its memory

Reads the status of connected input devices

Executes the control program

Commands connected outputs to change state based on program execution

For example: Turn a light on, start a fan, adjust a speed, or temperature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What do the I/O Modules do?

A


Physically connect to field devices

Input modules convert electrical signals coming in from input field devices such as pushbuttons, to electrical signals that the PLC can understand.

Output modules take information coming from the PLC and convert it to electrical signals the output field devices can understand, such as a motor starter, or a hydraulic solenoid valve.

I/O that is remotely located from the PLC requires a network connection back to the PLC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Sketch an Input Module!

A

Input modules interface directly to devices such as switches and temperature sensors.

Input modules convert many different types of electrical signals such as 120VAC, 24VDC, or 4-20mA, to signals which the controller can understand.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Whats the difference between analogue and discrete input modules - when do you use what?

A


Discrete modules use only a single bit to represent the state of the device. For example, a switch is either open or closed. Therefore, the bit is either a 0 (switch is open) or a 1 (switch is closed). Discrete modules are also known as Digital modules.
•Analog modules use words to represent the state of a device. An analog signal represents a value.. For example, the temperature could be 5, 9, 20, 100, etc degrees. Analog modules use a value, such as 52, rather than a 0 or 1 to represent the state of the device.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

operation voltage of discrete modules and number of possible input devices per module!

A

Discrete modules come in a variety of types, such as 24VDC or 120VAC. You can buy discrete modules that allow you to typically connect anywhere from 2 to 32 devices, with the most popular being 16 devices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Analog Modules - typical voltage/performance of operation and nubmer of inputs per module.

A

Analog modules come in a variety of types, such as 4 to 20 mA or 0 to 10 VDC. You can buy analog modules that allow you to connect anywhere from 2 to 16 devices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Storage of words - difference analog and discrete inputs

A

Since it takes 1 word to represent a number, a 16 point analog module requires 16 words of memory in the controller to store the value of all the numbers on the module. Each word in a PLC takes 16 or 32 bits (depending on the PLC), therefore it takes 16 or 32 times the amount of PLC memory to store analog points vs. digital points.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Output modules - what do they do and usual mode of operation?

A

Output modules interface directly to devices such as motor starters and lights

Output modules take digital signals from the PLC and convert them to electrical signals such as 24VDC and 4 mA that field devices can understand

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do components of the PLC communicate with each other? Which kind of chassis/backplane are possible? Draw them!

A


Modules are installed in the same chassis as the PLC and communicate over the chassis backplane

Modules are designed to “plug” into each other. The interconnecting plugs form a backplane. There is no chassis

Modules are built into the PLC. The modules come together in one physical block. The backplane in this case is transparent to the user.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What forms of power supply are there?

A


Power supply modules that fit into one of the slots in a chassis

External power supplies that mount to the outside of a chassis

Stand alone power supplies that connect to the PLC or I/O through a power cable

Embedded power supplies that come as part of the PLC block.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What kind of devices can be connected to the PLC over the Network interface?

A

Network Interface Most PLCs have the ability to communicate with other devices. These devices include computers running programming software, or collecting data about the manufacturing process, a terminal that lets an operator enter commands into the PLC, or I/O that is located in a remote location from the PLC. The PLC will communicate to the other devices through a network interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Name the parts of the plc Cabinet!

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Name the great PLC manufactureres and their softwares!

A

Siemens, Allen-Bradley/Rockwell, etc…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How to program and install a PLC program?

A

The most popular language used to program a PLC is ladder logic.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the lines of code of the ladder logic are called? How is the program executed?

A

Each line of code is known as a “rung”. the end rung markis the end of the program. The PLC executes the program 1 rung at a time, starting with the first rung and then working down.

17
Q

What is a rung? What logic do they follow, how are they executed?

A

Ladder logic rungs are basically IF-THEN statements. Each individual rung is executed from the left to the right. The outputs at the right side of each rung is set to a condition that reflects the status of the permissive contacts in a particular rung.

18
Q

What does this rung mean?

A

If the Start Button is on, turn the Motor on.

If the Start Button is off, then turn the Motor off.

The first instruction is as an “eXamine If Closed”, or “XIC” instruction.

In this example, if the actual Start Button is on, then the value of all the XICs named Start Button, in the program will be true (also known as a ‘one”, or “closed”). If the start button is off (not on) then the value of the Start Button XICs will be false (also known as a “zero”, or “open”).

The second instruction is known as an Output Energize, or “OTE”. This is an output instruction.

This instruction turns on if the logic to the left of the OTE is true. If the logic is false, then the output will be turned off. The OTE commands a physical output located on a output module to turn either on or off.

19
Q

What about multiple XICs?

A

If there are multiple XIC’s on the rung, then all would have to be on for the rung to be true.

20
Q

What about multiple OTEs?

A

If there are multiple OTE’s on the rung, then all would be turned on or off based on the rung condition (true or false).

21
Q

What does the text above the XICs and OTEs mean?

A

The text above the XIC and OTE is the address associated with the instruction. PLC addresses may appear in many different ways depending on the PLC being used.

22
Q

How can the PLC addresses be formatted?

A

The text above the XIC and OTE is the address associated with the instruction. PLC addresses may appear in many different ways depending on the PLC being used.

  • Start_Button
  • Local:2:I.Data[0].1
  • I:020/2

The address is used by the PLC to tell exactly which input to read or which output to command.

I/O addresses are a means to tie a physical I/O point to a location in PLC memory

23
Q

What is the input and what the output of a ladder program?

A
24
Q

What other kind of addresses (except from I/O addresses) are there?

A

Data addresses store a value used for functions like timers, counters, or calculations.

25
Q
A