0% found this document useful (0 votes)
16 views6 pages

Tia555 - Q1 - 2217 2

Uploaded by

ykxk7gjggj
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)
16 views6 pages

Tia555 - Q1 - 2217 2

Uploaded by

ykxk7gjggj
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/ 6

TIA555 Quiz 1

Name: Fenny Jivani 14041190


SID#:_______________ Marks:

Note
1. Choose an answer/choice by highlighting or circling
2. Fill in with your answers in the designed space
3. Upload one answer file only either in Word or in PDF format on Blackboard before the due time of
the quiz; Uploading several images or uploading images with wrong orientation would result in marks
deduction.

Question 1 (6 marks) -- Choose multiple answers.


To see, express, understand, and program complex sequential process, we could use following tools:
1) Truth table

2) Function chart

3) Schematic diagram

4) Step definition table

5) None above

Question 2 (4 marks) -- Choose one best answer.


The 3s/X8 “delay” in following section of
function chart for Handling station means:

1) Delay 3 seconds or 8 seconds.

2) Delay 3sX8 seconds.

3) Delay 3 seconds after step 8.

4) Delay 24 seconds.

5) None above.

SEMET of Seneca College 1


Question 3 (6 marks) – Fill in blank.
Constant
AC drives function by converting a _______________ AC frequency and voltage into a
_______________ AC frequency and voltage.
Variable

Question 4 (4 marks) -- Choose one best answer.


The advantages of AC drives include:

1) Lower energy costs

2) Improved process control

3) Increased productivity

4) Reduced maintenance

5) All above

Question 5 (2 marks) – Ture / False.


NEMA defines standards used in the whole world for electrical products.

Question 6 (2 marks) – Ture / False.


NEMA design A is the most common three-phase AC induction motor design.

Question 7 (2 marks) – Ture / False.


NEMA design B is the least common three-phase AC induction motor design.

Question 8 (6 marks) – Fill in blank.


600% to 650%.
For a standard efficiency NEMA B motor, starting current is typically _______________ of full-load
current.

Question 9 (6 marks) -- Choose multiple answers.


An AC drive consists of the following section:

1) Rectifier section

2) Power section

3) Inverter section

4) Control section

5) Interface section

Question 10 (6 marks) – Fill in blank.


Absorbs and dissiplates
Braking Resistor in an AC drive is the resistor grid that _______________ energy from the load during
dynamic braking.

SEMET of Seneca College 2


Question 11 (2 marks) – Ture / False.
Internal HMI tags are accessible only in the HMI station.

Question 12 (6 marks) – Fill in blank.


Elements
Available objects in TIA for designing a screen of HMI include _______________,
Basic object _______________,
_______________,
Controls Buttons
and _______________.

Question 13 (4 marks) – Fill in blank.


To configure a button in a screen of HMI as a NO pushbutton, you should set 2 events with
corresponding function for the button as below:
Press
Event name: _______________, Set bits
Function name: _______________.
Event name: _______________,
Release Reset bits
Function name: _______________.

Question 14 (4 marks) – Fill in blank.


To configure a button in a screen of HMI as a NC pushbutton, you should set 2 events with
corresponding function for the button as below:
Press
Event name: _______________, Reset bits
Function name: _______________.
Release
Event name: _______________, Set bits
Function name: _______________.

Question 15 (4 marks) – Fill in blank.


To configure a button in a screen of HMI as a toggle switch, you only need to set one event with
corresponding function for the button as below:
Click
Event name: _______________, Function name: _______________.
Invert bit

Question 16 (6 marks) – Choose one best answer.


A NO pushbutton in a screen of HMI is connected to a PLC tag named StartPB. The address of StartPB
could be:
1) %I0.6

2) %I2.0

3) %Q2.0

4) %M2.0

5) Counter1.PV

SEMET of Seneca College 3


Question 17 (4 marks) – Choose one best answer.
Available animation types for objects in a screen of HMI include:
1) Tag connections

2) Display

3) Movements

4) All above

Question 18 (6 marks) – Choose multiple answers.


Available animations for a button in a screen of HMI include:
1) Appearance of Display type.

2) Visibility of Display type.

3) Tag connections.

4) Movements.

5) All above.

Question 19 (2 marks) – Ture / False.


An I/O field relates an integer tag with a text list so as a value of the tag relates to a text entry in the text
list.

Question 20 (2 marks) – Ture / False.


A symbolic I/O field relates an integer tag with a text list so as a value of the tag relates to a text entry in
the text list.

Question 21 (6 marks) – Choose one best answer.


Each object/group in a screen of HMI could be configured the following animations:
1) Direct movement and Diagonal movement.

2) Direct movement and Horizontal movement.

3) Direct movement and Vertical movement.

4) Horizontal movement and Vertical movement.

5) None above.

SEMET of Seneca College 4


Question 22 (10 marks + bonus 10 marks) – Mini program

Write the codes to fulfill the following control requirements for the robot in K2200:
Pressing the black NC pushbutton ncPB once (pressing and releasing quickly), the robot
should:
close the gripper (if the gripper of the robot is not close) or keep the gripper close (if the
gripper of the robot is close)

Initially, the gripper is close. Pressing the white NO pushbutton noPB once (pressing and
releasing quickly), the robot should go over the sequence below:
open the gripper.
wait 3 seconds.
close the gripper.
wait 5 seconds.
open the gripper to end the sequence.

Note: Pressing ncPB or noPB at any moment when the sequence above is activated should
do nothing affecting the sequence.

Note:
1. I/O tags and addresses used for the pneumatic robot in K2200 are shown in the following table (it
is not necessary to use all tags in the table, furthermore, you could define any other tags or timers
if need):

Siemens PLC's I/O Assignment for the Robot


Input Output
Name Address Name Address
1 CloseLim %I0.0 ClosingGripper %Q0.0
2 OpenLim %I0.1 OpeningGripper %Q0.1
3 UpperLim %I0.2 MovingDown %Q0.2
4 LowerLim %I0.3 MovingUp %Q0.3
5 RightLim %I0.4 MovingRight %Q0.4
6 LeftLim %I0.5 MovingLeft %Q0.5
7 noPB %I0.6 redLED %Q0.6
8 ncPB %I0.7 yellowLED %Q0.7

2. Codes could be the screenshots from TIA Portal V15 or handwriting pictures inserted into the
Word file.

SEMET of Seneca College 5


SEMET of Seneca College 6

You might also like