PLC Session 2 Flashcards

1
Q

What slot does the power supply of a PLC occupy?

A

It does not take a slot number. Only power supply, input, output modules get a slot number.

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

What are the two kinds of scans the CPU can perform

A

Asynchronous

Synchronous

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

What kinds of inputs can you have?

A

Discreet

Analog

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

What are the four modes of PLC operation?

A
  1. Run Mode
  2. Program Mode
  3. Test Mode
  4. Online\Offline mode
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are two types of Tags we use?

A
  1. Base Tags

2. Alias Tags

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

What are the 6 data types we use in programming a PLC?

A
  1. Bool (True or False)
  2. Sint (-128 to +127)
  3. Int (Word) (-32768 to 32767)
  4. Dint (Double Word) (-2,147,483,648 to +2,147,483,647)
  5. Timer (
  6. Counter
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Bool?

A

A true of false value in memory

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

What is a Sint?

A

Memory value Sint (-128 to +127)

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

What is a Int?

A

A memory value of a word (-32768 to 32767)

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

What is a Dint?

A

A memory value (Double Word) (-2,147,483,648 to +2,147,483,647)

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

What 5 bits are in Timer?

A

.EN BOOL The enable bit indicates the TIMER instruction is enabled.

.TT BOOL The timing bit indicates that a timing operation is in process

.DN BOOL The done bit behaves like the associated hard-wired timer

.PRE DINT The preset value specifies the value in msec which the programmer sets

.ACC DINT The accumulated value specifies the number of milliseconds that have elapsed since the instruction was enabled (on delay)/
disabled (off-delay).

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

What does the .EN BOOL bit in a timer do?

A

The .EN enable bit indicates the TIMER instruction is enabled.

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

What does the .TT BOOL bit in a timer do?

A

The .TT timing bit indicates that a timing operation is in process

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

What does the .DN Bool bit in a timer do?

A

The .DN done bit behaves like the associated hard-wired timer

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

What does the .PRE bit in a timer do?

A

The .PRE preset value specifies the value in msec which the programmer sets

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

What does the .ACC bit in a timer do?

A

The .ACC accumulated value specifies the number of milliseconds that have elapsed since the instruction was enabled (on delay)/
disabled (off-delay).

17
Q

What does the Latch bit do?

A

It sets the Latch data bit. Which stays until it’s unlatched.

18
Q

What does a One-Shot bit do?

A
A one-shot is an instruction that will only allow logic past it for 1 scan provided the 
previous instruction(s) is true
19
Q

What does the .CU bit in counter do?

A

The. CU count up enable bit indicates the CTU instruction is enabled

20
Q

What does the .DN bit in a counter do?

A

The done bit indicates that Accumulated value count has exceeded the Preset value to count to.

21
Q

What does the .OV bit in a counter do?

A

The .OV overflow bit indicates the counter exceeded the upper limit of 2,147,483,647. The counter then rolls over to -2,147,483,648 and begins counting up aga

22
Q

What does the .UN bit in a counter do?

A

The .UN underflow bit indicates that the counter exceeded the lower limit of -2,147,483,647. The counter then rolls over to 2,147,483,647 and begins counting down again.

23
Q

What does the .PRE bit in counter do?

A

The .PRE preset value specifies the value which the accumulated value must reach before the instruction sets the .DN

24
Q

What does the .ACC bit in a counter do?

A

The .ACC accumulated value specifies the number of transitions the instruction has counted.

25
Q

What will shutdown all outputs in a system?

A

The Master Control Relay (MCR)

26
Q

What is used in AC output of PLC modules to suppress noise and surges

A

MOV Metal Oxide Varistor

27
Q

What is test mode on a PLC?

A

PLC reads inputs, but does not activate outputs.

28
Q

Does Sinking and Sourcing apply to DC and AC circuits?

A

No, it only applies to DC circuits.

29
Q

Describe a Sinking input on a PLC?

A

DC Circuit. Battery negative is connected to “Common” on PLC Input board. Positive from battery goes through switch (or other device) to input on PLC board.