EC (Intro To Progrannable Control) Ch 15 Flashcards

(17 cards)

1
Q

What are the three basic logic control functions?

A
  • AND: All input conditions must be true
  • OR: Any input condition being true will activate the output
  • NOT: Reverses the state of an input

Examples include switches for AND, sensors for OR, and normally closed buttons for NOT.

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

Name five electrical control devices that provide input information.

A
  • Push Buttons (NO/NC)
  • Limit Switches
  • Proximity Sensors
  • Photoelectric Sensors
  • Pressure/Temperature Switches

These devices are crucial for detecting conditions or states in a control system.

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

What types of electrical devices handle logic/decision making?

A
  • Relays
  • Timers
  • Counters
  • PLC Logic

These devices execute control and decision-making functions in a system.

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

List four electrical devices that provide output/work.

A
  • Contactors
  • Solenoids
  • Indicator Lights
  • Motor Starters

These devices perform actions based on the control logic.

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

What programming language do PLCs typically use?

A

Ladder Logic

Ladder Logic mimics relay diagrams and consists of rungs representing logic sequences.

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

What are three advantages of PLCs over hardwired logic?

A
  • Easier to modify logic without rewiring
  • Faster troubleshooting and diagnostics
  • More compact

PLCs also offer programmability for complex operations and scalability.

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

Describe the relationship between the PLC processor and I/O.

A

The CPU scans Input Table, executes logic, and updates Output Table.

Inputs are read from sensors and outputs are sent to actuators.

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

Identify three PLC ladder logic symbols.

A
  • | | = Normally open input
  • |/| = Normally closed input
  • ( ) = Output coil

These symbols represent the basic components in Ladder Logic diagrams.

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

What does a simple PLC ladder logic for a motor starter look like?

A

Start PB | Stop PB | OL Relay | Motor Coil
–[ ]——[/]——–[ ]———–( )

This represents the control sequence for starting and stopping a motor.

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

Name four devices that condition input signals to a PLC.

A
  • Signal conditioners
  • Opto-isolators
  • Debounce circuits
  • Analog-to-digital converters (ADC)

These devices ensure that the signals sent to the PLC are clean and usable.

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

What is stored in PLC memory?

A
  • Input and output states
  • Program
  • Timers
  • Counters
  • Internal variables

This information is essential for the PLC to function correctly.

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

What are the types of PLC memory?

A
  • RAM – Temporary storage (volatile)
  • ROM – Permanent storage (non-volatile)
  • EEPROM/Flash – Holds user programs even during power loss

Different types of memory serve various purposes within the PLC.

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

Outline the logical path of an input in a PLC.

A
  1. Sensor sends signal to PLC input
  2. Input is stored in the Input Table
  3. CPU reads table, executes logic
  4. Output table updated
  5. Actuator is energized

This sequence illustrates how inputs are processed to produce outputs.

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

Give an example of a simple PLC control circuit.

A

I0.0 (Start) | I0.1 (Stop NC) | Q0.0 (Motor)
–[ ]————-[/]—————–( )

This circuit represents a basic start-stop control for a motor.

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

How do you convert relay logic to PLC?

A
  • Replace push buttons with PLC input addresses (e.g., I0.0)
  • Replace contactors with PLC output coils (e.g., Q0.0)
  • Replace timers/counters with internal PLC instructions

This conversion process allows for easier implementation of control logic.

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

What is the role of the data communication highway in a PLC system?

A
  • Allows PLCs to communicate with:
    • Other PLCs
    • HMIs (Human Machine Interfaces)
    • SCADA systems
    • Remote I/O or networks (Ethernet/IP, Modbus, etc.)

This communication is essential for integrated industrial automation.

17
Q

What functions does a complete PLC system perform in industrial use?

A
  • Inputs collect data from machines
  • CPU processes logic
  • Outputs control motors, valves, etc.

PLCs are widely used in packaging, automation, manufacturing, and material handling.