Ipe 4716 Material Handling & Maintenance I Experiment 01 (06092024)
Ipe 4716 Material Handling & Maintenance I Experiment 01 (06092024)
IPE 4716
Material Handling and Maintenance
Management Lab
Laboratory Policy
1. Philosophy:
To present a physical significance to the analytical material covered in the sessional course taken
prior or concurrently and to familiarize the student with realistic testing techniques and laboratory
practices. A second, but still extremely important objective is the development of sound attitudes
and procedures in conducting and reporting experimental work.
2. Reports:
Reports are a vital part of good engineering practice. They permit the organization, condensation,
analysis, interpretation, and transmission of meaningful results. For more details, see the lab Report
Structure.
3. Preparation and Procedures:
The experiments are conducted by groups of students under the guidance of the instructor. The
reports are to be handed in at the beginning of the next class unless otherwise directed by the
instructor.
4. Grading:
To obtain credit for each laboratory period, a student must:
(a) Work effectively as part of a team to obtain accurate data and
(b) Submit an acceptable report.
These two requirements imply that each student must come to the lab on time and be fully
prepared. Tardy students, who do not do their best in being efficient and careful in experimenting
will receive a zero, failing, or incomplete grade for that experiment. There will be no opportunity
to make up work, which has been missed because of an unexcused absence or tardiness. If
conditions develop that cause you to miss laboratory work, please contact your lab instructor as
soon as possible in advance of the scheduled laboratory.
5. Laboratory Grades:
The grade for each experiment will be based on the following: (a). Data processing, (b). Written
reports, (c). Practical Test, (d). Peer Evaluation
6. Plagiarism:
Students must not adopt or reproduce ideas works or statements of another person without an
appropriate acknowledgment. Copying someone else’s work or facilitating academic dishonesty
constitutes plagiarism. Plagiarism will be heavily penalized.
Objectives
i. To study the Programmable Logic Controller (PLC), logic diagrams, ladder logic
diagrams, and their functions.
ii. To demonstrate the truth table of basic logic gates operation using a ladder logic
diagram and hardware connection.
iii. To understand and justify the truth table using a ladder logic diagram.
Apparatus
Theory
Features of PLC:
Applications of PLC:
i. Manufacturing/Machining
➢ Assembly machines Boring
➢ Cranes
➢ Energy demand
➢ Grinding
➢ Injection/blow moulding
➢ Material conveyors
➢ Metal casting
➢ Milling
➢ Painting
➢ Plating
➢ Tracer lathe
➢ Welding
iv. Metals
➢ Blast furnace control
➢ Continuous casting
➢ Rolling mills
➢ Soaking pit
v. Mining
➢ Bulk material conveyors
➢ Loading/unloading
➢ Ore processing
➢ Water/waste management
vi. Pumber/Pulp/Paper
➢ Batch digesters
➢ Chip handling
Principles of Operation:
➢ Figure 2 shows an input that accepts a variety of digital or analogue signals from
various field devices or sensors and converts them into a logic signal that the CPU can
use.
➢ These field devices may be discrete or analogue input devices, such as:
• Limit switches
• Pressure transducers
• Push buttons
• Motor starters
• Solenoids, etc.
➢ The CPU makes decisions and executes control instructions based on program
instructions in memory.
➢ During its operation, the CPU completes three processes:
• It reads, or accepts, the input data from the field devices via the input interfaces
• It executes, or performs, the control program stored in the memory system, and
• It writes, or updates, the output devices via the output interfaces.
➢ This process of sequentially reading the inputs, executing the program in memory,
and updating the outputs is known as scanning.
➢ Output modules convert control instructions from the CPU into a digital or analogue
signal that can be used to control various field devices or actuators.
➢ A programming device (programmer), usually a personal computer or a
manufacturer’s miniprogrammer unit, must enter the control program or instructions
into memory.
➢ These instructions determine what the PLC will do for a specific input.
➢ An operator interface device allows process information to be displayed and new
control parameters to be entered.
➢ The system power supply provides all the voltages required to operate the various
central processing properly.
Ladder Diagram:
➢ A ladder diagram is a type of graphic language for automatic control systems it has
been used for a long period and user user-friendly.
➢ Using ladder programming involves writing a program to draw a switching circuit.
➢ Originally, only a few basic elements were available such as Normally Open or contact,
Normally Closed or contact, output coil, timers, and counters.
➢ When a ladder diagram contains a functional block, contact instructions are used to
represent the input conditions that drive the block’s logic.
➢ A functional block can have one or more enabled inputs that control its operation. In
addition, it can have one or more output coils, which signify the status of the function
being performed (refer to Figure 3).
enable
reset
enable
time
reset
AND gate: “All one makes a one” It executes the AND operation (multiplication). When both
of the two inputs are high, the output will be high; otherwise, at times, the output will be low.
OR gate: “Anyone makes a one” It executes the OR operation (Summation). When both of the
two inputs are low, the output will be low; otherwise, at all times, the output will be high.
OR Truth Table
A A+B
Input Output
A A B A+B
A+B
B 0 0 0
B
0 1 1
1 0 1
1 1 1 Equivalent Circuit
NOT gate (Inverter): The output is complementary to the input. This means that when the
input is low (0), the output will be high (1), and when the input is high (1), the output will be
low (0).
NOT Truth Table
Input Output
A A A A
0 1
1 0
Exclusive OR / XOR gate: “either or but not both makes a one” It is also known as EX-OR
gate or XOR gate. When both of the two inputs are low or high, the output will be low, and
when both inputs are different (a combination of high and low), the output will be high.
NAND gate: “Any zero makes a one” It is the combination of AND gate and NOT gate.
When both of the two inputs are high, the output will be low; otherwise, all-time, the output
will be high.
NOR gate: “Any one makes a zero” It is the combination of OR gate and NOT gate. When
both of the two inputs are low, the output will be high; otherwise, all-time, the output will
be low.
XNOR gate: “either or but not both makes a zero” Commonly only have two inputs. It will
only give out a HIGH or logic “1” if both inputs are equal. So, the inputs must be high (1) or
low (0) for the output to become high (1).
Procedure:
1. Complete all hardware connections for logic gates. Connect all the connections
according to the hardware connection section given below.
Hardware Connection:
2. Open the software XG5000 – New project – File Directory – CPU Series – CPU Type –
Program Name – Press OK – New Program – Draw the ladder logic gates (AND, OR,
NOT, XOR, NAND, NOR, XNOR) by following the figure given below.
Software connection
Discussion
Discuss what you have learned in theory and practice.
Pre-Work Questions:
1. What is PLC?
2. What is the principle of operation of PLC and its application used in industry
engineering?
3. What are the differences between logic diagrams and ladder logic diagrams.
Assignment Questions:
1. Convert the following logic gate circuit into a Boolean expression, writing Boolean
sub-expressions next to each gate output in Figure 1 below:
2. Boolean Algebra Properties: Prove that A+B=B+A and AB=BA, and draw the ladder
diagram of these properties.
4. Switches Logic Fundamental: If both switches, X1 and X2, in the circuit, are closed,
the buzzer is ON (beeping). Draw and discuss the circuit illustrating the operation,
logical gate, and truth table.
References: