ME8781-Mechatronics Laboratory
ME8781-Mechatronics Laboratory
R2017
Prepared By
Faculty Members
1. Students are expected to be punctual to the lab classes. If they are late, they will be
considered absent for that particular session.
2. Students should strictly maintain the dress code (i.e.) they have to wear the lab uniform
with black shoes.
3. Students must bring their observation note, record note (completed with previous
experiment) and the calculator to every lab class without fail.
4. Students are advised to come with full preparation for their lab sessions by
a. Reading the detailed procedure of the experiment from the laboratory manual.
7. Students are advised to get their results evaluated in the observation note book on the
same day of that experiment.
8. Class assessment marks for each experiment is based only on their performance in the
laboratory.
9. Record note has to be completed then and there and get corrected when the students are
coming or the next lab class.
11. If any of the students is absent for the lab class for genuine reasons, he/she will be
permitted to do the experiment during the repetition class only.
12. Students are advised to perform their experiments under safety care.
13. If any student is found causing damage to the lab equipments, he/she shall replace the
same with a new.
Department of Mechanical Engineering
VII Semester Mechanical Engineering
ME8781- MECHATRONICS LABORATORY
SYLLABUS
Course Objective: The main learning objective of this course is to prepare the students for:
1. Measuring of physical quantity such as displacement, force and temperature and also the
operation of signal conditioning circuits
2. Applying a suitable sensor and image processing technique for Mechatronics systems.
3. Design appropriate circuits to automate and control the hydraulic, pneumatic and electric
actuators.
4. Apply PLC, PID and 8085 microcontroller as a control unit Mechatronics system.
5. Developing a model of pneumatic and hydraulic circuits by using simulation software.
LIST OF EXPERIMENTS
1. Introduction to Mechatronics
8. Modelling and analysis basic hydraulic, pneumatic and electrical circuits using software.
Course Outcomes: Upon completion of this course, the students will be able to:
1. Measuring of physical quantity such as displacement, force and temperature and also the
operation of signal conditioning circuits.
2. Applying a suitable sensor and image processing technique for Mechatronics systems.
3. Design appropriate circuits to automate and control the hydraulic, pneumatic and electric
actuators.
4. Apply PLC, PID and 8085 microcontroller as a control unit in Mechatronics system.
2. PSO2- Can be able to apply thermal, fluid, design, electrical & electronics engineering
principles to mechanical engineering applications.
3. PSO3- Would be able to apply the tools and techniques of quality management of
manufacturing service processes.
4. PSO4- Ability to use the concept of process planning and cost estimation to manufacture
different products.
✔ ✔ - ✔
PO Description ✔
B Graduates will demonstrate the ability to design and conduct experiments, interpret
✔
and analyze data, and report results.
G Graduates will be able to communicate effectively in both verbal and written forms. ✔
H Graduates will have the confidence to apply engineering solutions in global and
-
societal contexts.
J Graduates will be broadly educated and will have an understanding of the impact of
-
engineering on society and demonstrate awareness of contemporary issues.
K Graduates will be familiar with modern engineering software tools and equipment to
✔
analyze mechanical engineering problems.
PO PSO
co 1 2 3 4 5 6 7 8 9 10 11 12 1 2 3 4
1 3 2 3
2 3 3 3
3 3 3 3
4 3 3 2 3
5 3 2 2 2 3
INDEX
EXPT
DATE NAME OF THE EXPERIMENT SIGN.
NO
- Introduction to Mechatronics
Study Experiments
5 Study of various types of transducers
Today many industries improving their product though automation which is based on the
inter connection between the electronics control systems and mechanical engineering. Such
control systems generally use microprocessors as controllers and have electrical sensors
extracting information from mechanical inputs through electrical actuators to mechanical
systems.
MECHATRONICS
Most of mechatronics systems work based on motion or action by means of sort. This
motion or actuation caused either by torque or force form which displacement and acceleration
can be obtained. To obtain this force or acceleration, actuators are mainly used. Actuator is a
device which provides enough force needed to stat the mechatronics systems. At the same,
power should be supplied to the actuator to activate it. The power supplied to actuators might be
any one of the following forms such as compressed air, pressurized fluid, electric power and
mechanical power. If compressed air supplied to the system, it is called as pneumatic system.
But if pressurized fluid is supplied to flow the system it is called as hydraulic system.
BASIC ELEMENTS OF PNEUMATIC SYSTEM:
Air receiver
Pump
Prime mover
Valves
Actuator
Fluid-transfer piping
AIM
To write an assembly language program for Add and Subtract- 8-bit numbers in memory
and store the result in memory.
APPARATUS REQUIRED:
THEORY:
The first data is brought to accumulator A and the second one in any one of the other
registers says B. The addition is done using ADD. The result is then stored at 4152. The ADD
instruction affects flags depending on result.
EXAMPLE ADDITION:
The two data to be added are at 4150 and 4151. The result is stored at 4152.
Data (4150) = 23
(4152) = 35
Result = 58
PROGRAM:
LDA 4150 ;
4150 (A) = 23
MOV B, A;
LDA 4151;
4151 A =35
ADD B;
STA 4152;
(A) 4152 = 58
HLT
4100 3A LDA@4150
4101 50
4102 41
4103 47 MOV B, A
4104 3A LDA@4151
4105 51
4106 41
4107 80 ADD B
4108 32 STA@4152
4109 52
410A 41
410B 76 HLT
Procedure:
Change data at 4150 and execute each time and check for result
EXAMPLE SUBTRACT:
The two data to be added are at 4150 and 4151. The result is stored at 4152.
Data (4150) = 49
(4152) = 24
Result = 25
4101 50
4102 41
4103 7E MOV A, M
4104 23 INX H
4105 96 SUB M
4106 23 INX H
4107 77 MOV K, A
4108 76 HLT
Procedure:
Change data at 4150 and execute each time and check for result
OBJECT CODES FOR MULTIPLICATION :
4101 52
4102 41
4105 00
4106 00
4108 50
4109 41
410A EB XCHG
410C 05 DCR B
410E 0B
410F 41
4111 54
4112 41
4113 76 HLT
PROCEDURE:
Execute the program and check for the result at 4154 and 4155
Change data at 4250 and 4151 and execute each time and check result
4101 50
4102 41
4105 51
4106 41
4107 0E MVI C, 00
4108 00
4109 B8 CMP B
410A DA JC LOOP
410B 13
410C 41
410E 0C INR C
410F B8 CMP B
4110 D2 JNC LOOP1
4111 09
4112 41
4114 52
4115 41
4118 53
4119 41
PROCEDURE:
Execute the program and check for the result at 4152 and 4153
Objective: To convert the ASCII number in memory to its equivalent decimal number
4101 50
4102 41
4103 7E MOV A, M
4104 DE SUI 30
4105 30
4106 FE CPI 0A
4107 0A
4108 DA JC LOOP
4109 0D
410A 41
410C FF
410E 77 MOV M, A
410F 76 HLT
RESULT:
Thus the Add ,Subtract, multiplication, Division and code convection- 8-bit numbers in
memory and store the result in memory are verified.
VIVA QUESTIONS AND ANSWERS
1. What is a Microprocessor?
Clock speed is measured in the MHz and it determines that how many instructions a
processor can processed. The speed of the microprocessor is measured in the MHz or
GHz.
5. Define Interpreter.
An interpreter may be a program that either :-executes the source code directly; translates
source code into some efficient intermediate representation (code) and immediately
executes this; explicitly executes stored precompiled code[1] made by a compiler which
is part of the interpreter system.
6. Define Assembler.
An assembler is a program that takes basic computer instructions and converts them into
a pattern of bits that the computer's processor can use to perform its basic operations.
9. What is a bus?
But micro controller is a computer on a chip which has memory, input, output on
the chip itself.
So, micro processor can perform only few functions but micro controller can
perform so many functions.
STEPPER MOTOR INTERFACING WITH 8051 MICRO CONTROLLER FOR
CLOCKWISE ROTATION
AIM
To write an assembly language program for driving the stepper motor in clockwise
direction.
APPARATUS REQUIRED:
Stepper motor
PROGRAM:
4101 FF
4103 41
4104 14
4106 04
4109 83
410B 82
410D FF
410E C0
4111 06
4113 FE
4115 05
4116 06
4117 0A
4118 7A
4119 03
411B FF
411D FF
411F FE
4121 FA
4123 F6
412 83
412A DC
412C D5
412D END
RESULT:
In the reverse direction, the diode conducts very little when the voltage is below the breakdown
value. This critical limiting value of reverse voltage is known as zener voltage.
3. What is a microprocessor?
BUS – A group of lines used to transfer bits between the microprocessor and other components
of the computer system. RAM – Random Access Memory. Data is stored in a read / write
memory. ROM – Read only Memory. A memory that stores binary information permanently.
The information can be read from this memory but cannot be altered.
The types of languages used are, a. Machine language b. Assembly language c. Low – level
language d. High – level language.
The binary medium of communication with a computer through a designed set of instructions
specific to each computer.
AIM
To write an assembly language program for Microcontroller based traffic light system.
APPARATUS REQUIRED:
PROGRAM:
4100 74 80 MOV
4102 90 FF OF MOV
4105 FO MOVX
4106 7C 04 MOV
4108 90 41 9B MOV
410B AA 83 MOV
410D AB 82 MOV
410F 90 41 8F MOV
4112 A8 83 MOV
4114 A9 82 MOV
4116 EO MOVX
4117 A8 83 MOV
4119 A9 82 MOV
411B 90 FF OC MOV
411E F0 MOVX
411F 09 INC
4122 89 82 MOV
4124 EO MOVX
4125 A8 83 MOV
4127 A9 82 MOV
4129 90 FF OD MOV
412C FO MOVX
412E 88 83 MOV
4130 89 82 MOV
4132 EO MOVX
4133 A8 83 MOV
4135 A9 82 MOV
4137 90 FF OE MOV
413A FO MOVX
413B O9 INC
413C 12 41 75 LCALL
4141 8B 82 MOV
4143 E0 MOVX
4144 AA 83 MOV
4146 AB 82 MOV
4148 90 FF OC MOV
414B FO MOVX
414C OB INC
414D 8A 83 MOV
414F 8B 82 MOV
4151 EO MOVX
4152 AA 83 MOV
4154 AB 82 MOV
4156 90 FF OD MOV
4159 FO MOVX
415A OB INC
415B 8A 83 MOV
815D 8B 82 MOV
415 F EO MOVX
4160 AA 83 MOV
4162 AB 82 MOV
4164 90 FF 0E MOV
4167 FO MOVX
4168 OB INC
4169 12 41 82 LCALL
416C 88 83 MOV
416E 89 82 MOV
4170 DC A4 DJNZ
4172 12 41 06 LCALL
4175 7D 12 MOV
4177 7E FF MOV
4179 7F FF MOV
417B DF FE MOV
417D DE FA DJNZ
417F DD F6 DJNZ
4181 22 RET
4182 7D 12 MOV
4184 7E FF MOV
4186 7F FF MOV
4188 DF FE DJNZ
418A DE FA DJNZ
418C DD F6 DJNZ
418E 22 RET
418F 44 27 12 DB
4192 92 2B 10 DB
4195 84 9D 10 DB
4198 84 2E 48 DB
419B 48 27 12 DB
419E 92 4B 10 DB
41A1 84 9D 20 DB
41A4 04 2E 49 END
RESULT:
Compiler – A program that translates English – like words of a high level language into the
machine language of a computer. A compiler reads a given program, called a source code, in its
entirety and then translated the program into the machine language, which is called an object
code. Interpreter – A program that translates the English – like statements of a high – level
language in to the machine language of a computer. An interpreter translates one statement at a
time from a source code to an object code.
The types of bus are, a. Address bus b. Data bus c. Control bus.
a. Address Bus A group of lines that are used to send a memory address or a device address
from the MPU to the memory location or the peripheral and is unidirectional. The 8085
microprocessor has 16 address lines. b. Data bus A group of bi-directional lines used to transfer
data between the MPU and peripherals and is bi-directional. The 8085 microprocessor has eight
data lines. c. Control bus Single lines that are generated by the MPU to provide timing of
various operations.
The 8085 has two 16 – bit register. a. The program counter b. Stack pointer The program counter
is used to sequence the execution of a program. The stack pointer is used as a memory pointer
for the stack memory.
The two types of memories are, a. Static memory (SRAM) b. Dynamic memory (DRAM)
a. This memory is made up of flip – flops, and it sores the bit as a voltage. b. Each memory cell
requires six transistors. c. The memory chip has low density, but high speed. d. More expensive,
and consumes more power. e. Also known as cache memory.
7. What is flash memory?
The flash memory must be erased either in its entirely or at the sector level. The memory chips
can be erased and programmed at least a million times. The power supply requirement for
programming these chips 2was around 12V, but now chips are available that can be programmed
using a power supply as low as 1.8 V. Hence, this memory is ideally suited for low – power
systems.
The bus drivers increase the current driving capacity of the buses, the decoder decodes the
address to identify the output port, and the latch holds data output for display. These devices are
called interfacing devices. The interfacing devices are semiconductor chips that are needed to
connect peripherals to the bus system.
The buffer is a logic circuit that amplifies the current or power. It has one input line and one
output line. The logic level of the output is the same as that of the input, logic 1 input provides 1
output. The buffer is used primarily to increase the driving capability of a logic circuit. It is also
known as driver.
The programming technique used to instruct the microprocessor to repeat tasks is called looping.
A loop is set up by instructing the microprocessor to change the sequence of execution and
perform the task again. This process is accomplished by using Jump instructions.
SPEED CONTROL OF DC DRIVES USING PID CONTROLLER INTERFACING UNIT
AIM
To control the speed of the DC motor using PID controller interfacing unit.
THEORY
PID CONTROLLER
One of the most powerful but complex controller mode operation combines the proportional,
integral and derivative mode. This system can be used for virtually any process condition. The
analytical expression is.
The mode eliminates the offset of the proportional mode and still provides fast response. The
three mode controller action exhibits proportional, integral and derivative action.
PROCEDURE
Welcome to Vi Microsystems
AUTO MODE
Kp = 0.1
Ki = 0.01
Kd = 1
Results:
VIVA QUESTIONS AND ANSWERS
An incremental encoder is used for the measurement of angular displacement. A beam of light
passes through slots in a disc and is detected by a suitable light sensor. When the disc is rotated,
the sensor produces a pulsed output with the number of pulses being proportional to the angle
through which the disc is rotated. Hence, the angular position of the disc is determined.
An absolute encoder is used for the measurement of angular displacement. This gives an output
in the form of a binary number of several digits, each such number representing a particular
angular position. The rotating disc has three concentric circles of slots and three sensors to detect
the light pulses.
Photosensitive devices can be used to detect the presence of an opaque object by it breaking a
beam of light or infrared radiation, falling on such a device or by detecting the light reflected
back by the object.
When a beam of charged particles passes through a magnetic field, forces act on the particles
and the beam is deflected from its straight line path. A current flowing in a conductor is like a
beam of moving charges and thus can be deflected by a magnetic field.
Digital signals are discrete time signals in that they are not continuous functions of time but
exist at only discrete times.
Signal conditioning of analogue signals requires components such as amplifiers filter circuits
and digital signal microprocessor.
7. Define Actuator.
1. Linear motion
2. Rotary Motion
The need for cascade control will occur when a final control element experiences signal overlap
i.e. when a trip valve mechanism is still held down , but the output signal has to been used and
requires removal
AIM
APPARATUS REQUIRED:
LVDT Kit
Multi-meter
Connecting wires
PROCEDURE:
First turn the nut in clockwise direction to move core inwards i.e left of null position and
take respective voltage readings on the voltmeter.
Now run nut in anticlockwise direction to move the core towards right of null point and
again take respective voltage reading from voltmeter.
Result:
AIM
Measurement of strain for the applied load using given strain gauge trainer.
APPARATUS REQUIRED:
Strain cantilever
Multi-meter
Connecting wires
PROCEDURE:
Connect strains output +ve and -ve to the output to the voltmeters terminals
constant voltage source are given as 5V. give some time to stabilize the instrument
reading.
Note down the readings in strain's corresponding voltage display on the trainer.
Tabulate the reading and plot the graph for applied load and the output voltage.
Result:
AIM
Measurement temperature of the temperature transducer and verify the performance with
output voltage.
APPARATUS REQUIRED:
Water bath
Thermometer
RTD sensor
Multi-meter
Connecting wires
PROCEDURE:
Initially keep the RTD switch in o- open -to check resistance between the RTD. Set the
value of 1.4- 1.6 v (using zero setting) with room temp using thermometer
Then keep the RTD switch in c - close mode, Place the sensor in water bath and insert
both RTD and thermo meter in water bath.
Switch on the heater, for every 5 deg increment, note down the output reading using
voltmeter.
Increase the temperature and note down the respective voltage readings by using
voltmeter.
Plot the graph between temperature (thermometer) and the observations taken in terms of
output (voltage).
Result:
AIM
Measurement of applied pressure to the pressure transducer and verify the performance
with output voltage.
APPARATUS REQUIRED:
Pressure tank
Foot pump
Sensor
Pressure gauge
Multi-meter
Connecting wires
PROCEDURE:
Connect the sensor module on the corresponding place(Right side of the board)
Foot pump is to give pressure to the tank and the pressure inside in the tank is displayed
in the pressure gauge mounted on the tank.
Connect Pressure transducer's output +ve and -ve to the voltmeter's +ve and -ve
terminals.
Give some pressure using foot pump, and note down the respective voltage readings by
using voltmeter.
If required adjust the span setting to change the voltmeter reading (Max reading).
Plot the graph between applied pressure and the observations taken (voltage).
Result:
AIM
Measurement of speed of the PMDC motor using tacho generator transducer and verify
the performance with displayed speed on the display.
APPARATUS REQUIRED:
PMDC motor
Sensor
Multi-meter
Connecting wires
PROCEDURE:
Connect the sensor module on the corresponding place(Right side of the board)
Connect Speed transducer's output +ve and -ve to the Speed display's +ve and - ve
terminals.
Control voltage is varying from 0-12 V. This value can be verified across the motor.
The op-amp based PWM generator and MOSFET based power driver along tacho
generator feedback to get the speed output in terms of voltage.
If required adjust the span setting to change the voltmeter reading (Max reading).
Plot the graph between speed in RPM and the tacho generator output voltage.
Result:
1. What are the two basic types of the displacement and the position transducers?
1. Contact sensors
The electrical resistance strain gauge is a metal wire, metal foil strip, or a strip of semiconductor
material, which is wafer – like and can be stuck onto surfaces like a postage stamp.
3. Write about the gauge factors for different types of strain gauges?
The gauge factor of metal wire or foil strain gauges with the metals generally used is about 2.0.
Silicon p – and n – type semiconductor strain gauges have gauge factors of about + 100 or more
for p- type silicon and – 100 or more for n – type silicon.
4. Define gauge factor. The gauge factor is defined as the ratio of per unit change in
resistance to per unit change in length. Gauge factor Gf= ΔR/R ΔL/L
5. Define LVDT?
The Linear Variable Differential Transformer consists of three coils symmetrically spaced along
an insulated tube. The central coil is the primary coil and the other two are identical secondary
coils, which are connected in series in such a way that their outputs oppose each other.
When there is an alternating voltage input to the primary coil, alternating e.m.f.s are induced in
the secondary coils. With the magnetic core central, the amount of magnetic material in each of
the secondary coil is the same.
The uses are as follows. a. Widely used as primary transducers for monitoring displacements. b.
Also used as secondary transducers in the measurement of force, weight and pressure.
9. What is an encoder?
The two types of position encoders are, a. Incremental encoders b. Absolute encoders.
To control the speed of double acting cylinder using Meter In and Meter Out valve
circuit in Basic Pneumatic Training Kit
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the speed of double acting cylinder was controlled using Metering In and Metering
Out circuit in Pneumatic Trainer Kit.
1. Define Mechatronics.
The term Mechatronics is used for the integration of microprocessor control system,
electrical systems and mechanical systems. Mechatronics is defined as the integration of
precision mechanical & electronic control for the development of smart products & process.
A system can be considered as a box, which has an input, and an output and where it is not
concerned with what goes on inside the box but only the relationship between the output and the
input. Example: A motor may be thought of as a system, which has as its input electric power
and as output the rotation of a shaft.
A measurement system can be considered as a black box, which is used for making
measurements. It has as its input the quantity being measured and its output the value of that
quantity.
A sensor, which responds to the quantity being measured by giving as its output a signal which
is related to the quantity. Example: A thermocouple is a temperature sensor. The input to the
sensor is a temperature and the output is an e.m.f. which is related to the temperature value.
A signal conditioner takes the signal from the sensor and manipulates it in to a condition, which
is suitable for either display, or in the case of a control system, for use to exercise control.
The various elements of a closed loop control system are, a. Comparison element b. Control
element c. Correction element d. Process element e. Measurement element
There are two types of control elements. They are a. Hard – wired systems b. Programmable
systems.
To operate a single acting cylinder using an impulse pilot valve in pneumatic trainer kit
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the single acting cylinder was operated an impulse pilot valve in Pneumatic Trainer
kit.
Pneumatic direction control valve is used to control the direction of air path. These
Valves have generally two, three, four (or) five ports: These ports are designated as P:
Compressor line port R: Exhaust port (T is case of hydraulics) A, B: Working ports
connected to actuator.
Pneumatic time delay valves are used to delay operations where time based sequences
are required.
A fast exhaust valve is used to vent cylinder quickly. It is primary used with spring return
(single acting) pneumatic cylinders.
The working fluid of hydraulic system is water (or) oil (or) any liquid. The working fluid
of pneumatic circuit is air Hydraulic systems are designed for heavy loads where as
pneumatic systems are designed for low (or) medium loads.
By quickly exhausting the air from the cylinder, the cylinder speed can be exhausted.
In certain applications, the impulse to the main direction control valve may have to be
delayed to pre-determined time for different operational reasons. A pneumatic time delay
valve may be used in such cases. A pneumatic circuit using this time delay valve is
known as time delay circuit.
A compressor is a machine which compresses air (or) any other gas from atmospheric
pressure to a desired higher pressure level.
Air is not clean and hence contamination may result in pneumatic circuit. Also, due to
time fluctuations, the receiver air pressure does not remain constant. Also, some parts of
the Pneumatic system have to be lubricated for proper maintenance. For cleaning the air,
regulating the pressure of air and lubricating pneumatic parts, three units 'Filter -
Pressure Regulator - Lubricator' (Trio unit) are put together and this combined unit - Trio
unit - is called FRL unit.
To operate a double acting cylinder using AND & OR logic circuit in Pneumatic Trainer
Kit
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the double acting cylinder using AND & OR logic circuit was operated in
Pneumatic Trainer kit.
Viva Questions
The two links or elements are joined together to form a pair. If the relative motion between them
is completely or successfully constrained, the pair is known as kinematic pair.
The need for cascade control will occur when a final control element experiences signal overlap
ie; when a trip valve mechanism is still held down, but the output signal has been use and
requires removal.
controlled easily
A stepper motor is a rotating machine which converts a DC voltage pulse into a series of
discrete rotational steps. Each step position is an equilibrium position without further excitation;
this makes it ideally suitable for the use with digital control
A stepper motor is a device which transforms electrical pulses into equal increments of rotary
shaft motion called steps.
6. What is servomotor?
The motors used in automatic control systems or in servomechanism are called servomotors.
They are used to convert electrical signal into angular motion.
7. What is synchro?
A synchro is a device used to convert an angular motion to an electrical signal or vice versa.
a. The size of the mechanical load. b. The movement distance of plunger. c. The type of
electrical connections. d. The type of value of current and voltage.
Relay is used for many control functions and essentially an electro-mechanical switch. It uses
basic switching principles and solenoid actuation.
To operate automatic operation of double acting cylinder in a single cycle using limit
switch in Pneumatic Trainer Kit.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the single cycle automation of double acting cylinder was operated by using limit
switch in Pneumatic Trainer Kit.
AIM:
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the single cycle automation of multiple cylinders operated sequence (A+B+B-A-)in
Pneumatic Trainer Kit.
1. Home Appliances: Washing machine, Bread machines etc 2. Automobile: Electrical fuel
injection, Antilock brake system 3. Aircraft: Flight control, Navigation system 4. Automated
Manufacturing
The System is the group of physical component combined to perform a specific function. Any
Mechatronics devices consists of systems
Washing machines, dish washers, micro ovens, cameras, camcorders, robots, automatic
conveyors, computer-controlled machines
1. To minimize the error between the actual and desired output 2. To minimize the time response
to load changes in the system
1. Closed loop system – Automatic water level controller 2. open loop system - Electric fire
10. What is meant by sequential control what are the two modes in it? A system
operating with sequential control is one where a set of prescribed operations are performed in
sequence. The modes are,
– based mode
– based mode
To operate single and double acting cylinder using the single solenoid valve in Electro
Pneumatic Trainer Kit.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the single and double acting cylinder was operated using the single solenoid valve
in Electro Pneumatic Trainer Kit.
System using gas for power transmission are called pneumatic systems and industrial system are
usually based on air.
Filters are used to prevent dirt or dust entering important elements of hydraulic system like
valves, seals, etc. Filters are used to remove very finer particles.
5. What are the types of pumps used as energy source in a hydraulic system?
The type of air compressor is selected dependent on quality of air, pressure and cleanliness
An air receiver is used to store high pressure air and provide constant supply of air pressure in
the pneumatic system regardless of varying and fluctuating consumption. It is used for the
emergency supply of air to the system in case of power failure.
The aim is to reduce the temperature of the air to a dew point which ensures that the water in the
air condenses and drops out easily.
The primary function of the control valve is to direct and regulate the flow of fluid from an
energy source to various loading devices. Normally the control valves are used for the purpose
of sensing, processing ,and controlling. They are used for:
The minimum number of independent displacement required to specify the system completely is
called degrees of freedom
To operate double acting cylinder using double solenoid valve in Electro Pneumatic
Trainer Kit.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the double acting cylinder was operated using the double solenoid valve in Electro
Pneumatic Trainer Kit.
Loops can be classified in to two groups. They are, a. Continuous loop b. Conditional loop.
A continuous loop is a set up by using the unconditional jump instruction. A program with a
continuous loop does not stop repeating the tasks until the system is reset.
A conditional loop is set up by the conditional jump instructions. The instructions check flags
(Zero, Carry etc.,) and repeat the specified tasks if the conditions are satisfied. These loops
usually include counting and indexing.
4. What are the instructions of a 8085 instruction set for data transfer from memory
to the microprocessor?
The 8085 instruction set includes three memory transfer instructions. They are, a.MOV R,M :
Move from Memory to Register b.LDAX B/D : Load Accumulator Indirect c.LDA 16 – bit :
Load Accumulator Direct
5. What are the instructions of a 8085 instruction set for data transfer from
microprocessor to the memory?
The 8085 instruction set includes three memory transfer instruction. They are, a. MOV. R,M :
Move from Memory to Register b. STAX B / D : Store Accumulator Indirect c. STA 16 – bit :
Store Accumulator Direct d. MVI M, 8 – bit : Load 8 – bit data in memory.
The opcodes related to rotating the accumulator bits are, a. RLC – Rotate Accumulator Left
through Carry b. RAL – Rotate Accumulator Left c. RRC – Rotate Accumulator Right through
Carry d. RAR – Rotate Accumulator Right
After the steps have been completed in the process of static debugging, and if the program still
does not produce the expected output, attempt is made to debug the program by observing the
execution of instructions. This is called dynamic debugging.
The tools used for dynamic debugging are, a. Single step b. Register examine c. Break point.
The single step key on a keyboard allows to execute one instruction at a time, and to observe the
results following each instruction. Generally, a single-step facility is built with a hard-wired
logic circuit. When the single step key is pushed, addresses and codes are observed as they are
executed.
With the single step technique, it is able to spot, a. Incorrect addresses b. Incorrect jump
locations for loops c. Incorrect data or missing codes.
To simulate the single acting cylinder with ON and OFF delay timer in Electro
Pneumatic with PLC Trainer Kit.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the actuation of single acting cylinder with ON and OFF delay timer was done
using Electro Pneumatic with PLC Trainer Kit.
In most of the industrial plants, centralized compressed air supply will exist.
Hence, simple automation of machining sequences (or) material handling
can be done without much expense. Low cost automation is attempted
without going for a major alteration of the existing set up. Low cost
automation enhances productivity. The sequencing pneumatic circuit is an
example of "Low cost Automation"
Fluidics is the branch of science which deals with Liquids, Gaseous systems,
components, design, and applications of above in the industries to perform
useful work.
To simulate the double acting cylinder with UP and DOWN counter using Electro
Pneumatic with PLC Trainer Kit.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the actuation of double acting cylinder with UP and DOWN counter was done
using Electro Pneumatic with PLC Trainer Kit.
A conditional loop is set up by the conditional jump instructions. The instructions check
flags (Zero, Carry etc.,) and repeat the specified tasks if the conditions are satisfied.
These loops usually include counting and indexing
The electronic signal that translates the analog signal into digital signal is called analog
to digital (A/D) converter. The electronic signal that translates the digital signal into
analog signal is called digital to analog (D/A) converter.
4. What is a PLC?
PLC’s have great advantage that it is possible to modify a control system without having
to rewire the connections to the input and output devices
The ladder programming involves each program task being specified as though a
rung of a ladder. Thus such a rung could specify that the state of switches A and B, the
inputs, be examined and if A and B are both closed then a solenoid, the output is
energized.
Programs are entered into the input / output unit from a panel, which can vary
from small keyboards with liquid crystals to those using a visual display unit (VDU) with
keyboard and screen display. Alternatively, the programs can be entered into the system
by means of a link to a PC.
They are rugged and designed to withstand vibrations, temperature, humidity and
noise.
The input/output channels provide signal conditioning and isolation functions so that
sensors and actuators can be generally directly connected to them without the need for
other circuitry. Common input voltages are 5 V and 24V. Common output voltages are
24 V and 240 V
To simulate the single acting cylinder with AND & OR logic using Electro Pneumatic
with PLC Trainer Kit.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the double acting cylinder with AND & OR logic was done using Electro
Pneumatic with PLC Trainer Kit.
With the relay type, the signal from the PLC output is used to operate a relay and so is
able to switch currents of the order of a few amperes in an external circuit. The relay
isolates the PLC from the external circuit and can be used for both D.C. and A.C.
switching. Relays are, however, relatively slow to operate.
Opto isolators are used with transistor switches to provide isolation between the external
circuit and the PLC. They are also used to provide isolation.
There are two methods used for input / output processing. They are
a. Continuous updating
This involves the CPU scanning the input channels as they occur in the program
instructions. Each input point is examined individually and its effect on the program
determined. Each input is scanned with a 3 ms delay, before the program has the
instruction for a logic operation to be executed and an output to occur. This process is
called continuous updating.
Because of the 3 ms delay in the continuous updating on each input, the time taken to
examine several hundred input/output points can become comparatively long.
To allow a more rapid execution of a program, a specific area of RAM is used as a buffer
store between the control logic and the input/output unit. At the start of each program
cycle the CPU scans all the inputs and copies their status into the input/output address in
RAM. At the end of each program cycle all the outputs are transferred from RAM to the
output channels. The outputs are latched so that they retain their status until the next
updating
The term latch circuit is used for the circuit used to carry out such an operation. It is a
self – maintaining circuit in that, after being energized, it maintains that state until
another input is received. It remembers its last state.
The term point is used for a data point and so is a timing, marker (internal relay) or
counter element. Thus, the 16 points for timers means that there are 16 timer circuits. The
term delay on is used to indicate that this type of timer waits for a fixed delay period
before turning on.
A timer circuit is specified by stating the interval to be times and the conditions or events
that are to start and / or stop the timer. They are commonly regarded as delays with coils
which, when energized, result in the closing or opening of input contacts after some
preset time.
The term internal relay, auxiliary relay or marker is used for what can be considered as
an internal relay in the PLC. These behave like relays with their associated contacts, but
in reality are not actual relays with their associated by the software of the PLC. Internal
relays are often used when there are programs with multiple input conditions.
APPARATUS REQUIRED:
PROCEDURE:
RESULT:
Thus the single cycle automatic of multiple cylinder is operated in sequence (A+B+A-B)
was done using Electro Pneumatic with PLC Trainer Kit.
Counters are used when there is a need to count a specified number of contact operations.
Example – where items pass along a conveyor into boxes, and when the specified
number of items has passed into a box the next item is diverted into another box.
2. What is an up counter?
An up counter would count up to the preset value i.e., events are added until the number
reaches the set value. When the set value is reached the counters contact changes state.
Down counter means that the computer counts down from the preset value to zero i.e.,
events are subtracted from the set value. When zero is reached the counters contact
changes state.
The term shift register is used because the bits can be shifted along by one bit when there
is a suitable input to the register.
a. One to load data into the first element of the register (OUT).
The microprocessor controlled system can cope easily with giving precision and
programmed control. The system is much more flexible. This improvement in flexibility is a
common characteristic of Mechatronics systems when compared with traditional systems.
A PLC solution could involve the arrangement with the given ladder program. This would
have the advantage over the rotating cam of having off and on times which can be adjusted
by purely changing the timer preset values in the program whereas a different cam is needed
if the times have to be changed with the mechanical solution
An illustration of the use of a PLC in the coin operated barriers for a car park. The in-barrier
is to open when the correct money is inserted in the collection box and the out – barrier is to
open when a car is detected at the car park side of the barrier.
AIM:
To simulate the Pneumatic, Hydraulic and Electrical circuit with single acting,
double acting cylinders by manual and automatic mode using pneumatic simulation software
(Fluid-SIM).
REQUIREMENTS:
Personal Computer
FLUID SIM (Pneumatic and Hydraulic) Software’s
PROCEDURE:
RESULT:
Thus the Pneumatic, Hydraulic and Electrical circuit for single acting and double
acting cylinder was simulated using FLUIDSIM software.
Sensor is used for an element which produces a signal relating to the quantity being measured.
I.e., an electrical resistance temperature element, the quantity being measured is temperature and
the sensor transforms an input of temperature into a change in resistance.
3. Define transducer?
The term transducer is often used in place of the term sensor. Transducer is defined as elements
that when subject to some physical change experience a related change. Thus, sensors are
transducers.
4. What are the terms that define the performance of the transducers?
2. Error
3. Accuracy
4. Sensitivity
5. Hysteresis error
7. Repeatability / reproducibility
8. Stability
10. Resolution
The static characteristics are the values given when the steady – state conditions occur. i.e., the
values given when the transducer has settled down after having received some input.
The dynamic characteristics refer to the behavior between the time that the input value changes
and the times that the value given by the transducer settles down to the steady – state value.
Dynamic characteristics are stated in terms of the response of the transducer to inputs in
particular forms.
7. What are the terms that you can find from the dynamic characteristics?
1. Response time.
2. Time constant.
3. Rise time
4. Settling time.
Displacement sensors are concerned with the measurement of the amount by which some object
has been moved
Position sensors are concerned with the determination of the position of some object with
reference to some reference point.
Proximity sensors are a form of position sensor and are used to determine when an object has
moved to within some particular critical distance of the sensor
Aim
To determine unknown dimension for the given specimen using image process tool.
Procedure:
1. Define Image.
An Image may be defined as a two dimensional function f (x,y) where x & y are spatial
(plane) coordinates, and the amplitude of f at any pair of coordinates (x,y) is called
intensity or gray level of the image at that point. When x,y and the amplitude values of f
are all finite, discrete quantities we call the image as Digital Image.
3. Define Quantization.
The range of values spanned by the gray scale is called dynamic range of an image.
Image will have high contrast, if the dynamic range is high and image will have dull
washed out gray look if the dynamic range is low.
The spatial interaction of Luminance from an object and its surround creates a
Phenomenon called the mach band effect.
6. Define Brightness.
Brightness of an object is the perceived luminance of the surround. Two objects with
different surroundings would have identical luminance but different brightness.
If gray levels in a certain range occur frequently while others occurs rarely, the
quantization levels are finely spaced in this range and coarsely spaced outside of it. This
method is sometimes called Tapered Quantization.
Gray level refers to a scalar measure of intensity that ranges from black to grays and
finally to white.
Aim:
To actuate the hydraulic cylinder and find out the force vs. Pressure and find
out speed vs. Discharge
Apparatus required
Oil tank, single-phase motor, gear pump, pressure relief valve, 4/3 double solenoid
valve, flow control valve, double acting cylinder, load cell, and data actuation card
than lab view software.
Now regulate the flow control valve, contract the system by pressing down
position. After seen monitor in velocity cm/sec.
STUDY REPORT:
COMPONENT DESCRIPTION
1. Motor:
Frequency : 50Hz
Torque : 1HP
3. Manifold:
4/3 Manifold
Operating Voltage : 24 V DC
5. Pressure Gauge:
6. Tank:
Rectangular Shape
9. Load Cell:
Maximum Kg : 500Kg
62 KB Flash Memories
1. Define Hydraulics.
A pump having multiple pistons disposed with their axes parallel to shaft
axis
8. Define Viscosity .
9. Define Motor.
AIM:
Apparatus Required:
Power supply
Personal Computer
Procedure:
CONCLUTION:
AIM:
To study the performance of servomotor control for open & closed loop system.
PROCEDURE:
A new window will open. Clicks add and give speed between 1 to 100000.
Make changes as shown in below and click OK.
RESULT:
Thus the performance of servomotor control for close loop system is studied.