SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
IJSRD - International Journal for Scientific Research & Development| Vol. 3, Issue 10, 2015 | ISSN (online): 2321-0613
All rights reserved by www.ijsrd.com 963
Control of Industrial Pneumatic & Hydraulic Systems using Serial
Communication Technology & Matlab
Priyam A. Parikh1
Naman Modi2
Rakesh Prajapati3
1,2,3
Sal College of Engineering
Abstract— it has been observed that machines have become
more intelligent, especially in manufacturing industries and
power plants. Day by day use of hydraulic & pneumatic
systems has been increasing rapidly. Some industries have
only pneumatic systems for various operations. Instead of
other rotary actuators industries are using pneumatic and
hydraulic actuators to get better accuracy and smooth
operations. Simultaneously engineers are focusing on
computer control also. To construct a pneumatic system
with a higher control features, the one and only option is
computer control. It means that engineer would be able to
control the whole system with the help of on board
computer attached with the unit. To build such a system
serial control techniques to control pneumatic & hydraulic
systems have been shown in this paper. This system has
been designed using Arduino Microcontroller (ATMEGA
168, 8 bit ATMEL), Matlab software, Arduino software,
GUI (graphical user interface) toolbox, pneumatic
components and some electromechanical switches.
Verification of the pneumatic circuit can be done using
Automsim premium software.
Key words: Serial communication, Matlab, GUI, Arduino,
electromechanical switches, Automsim Premium software
and pneumatic system setup
I. INTRODUCTION
The current high-growth nature of digital communications
demands higher speed serial communication circuits.
Present day technologies barely manage to keep up with this
demand, and new techniques are required to ensure that
serial communication can continue to expand and grow. The
goal of this work was to research, design, implement, and
test high speed serial communication with pneumatic and
hydraulic circuits. [1]
In this paper Matlab software is used for serial
communication. The purpose of this research is only to
show the serial communication technique implemented
between pneumatic/ hydraulic system and computer.
However it can also be done between a microcontroller and
the pneumatic system, but for better control computer has
been used to provide a signal (serially) to the pneumatic
setup.
Here in this paper arduino microcontroller used as
a mediator between computer and the pneumatic system. In
fact the whole program is written in Matlab. Matlab will
communicate with Arduino (Microcontroller) and
accordingly Arduino will generate a signal at its I/O ports,
which will be used to activate the solenoid valve of the
pneumatic system.
Now the question is: what is the need of Arduino
microcontroller if Matlab can generate a serial port without
any microcontroller? The answer is: Matlab can definitely
generate outputs at serial port of the computer. But there are
very less I/O pins are available at computer‟s own serial
port, so to have more I/O pins arduino microcontroller has
been attached with computer, so Matlab will communicate
with Arduino instead of communicating with local serial
port of the computer. Summary of the introduction in this
fashion: “Matlab will control the pneumatic system through
extra hardware called „Arduino‟. [2-4]
Fig. 1: communication between Matlab and Arduino [4]
II. BLOCK DIAGRAM OF THE SYSTEM
In figure 1 two devices are shown, the first one is the
computer and the second one is Arduino microcontroller (In
the blue one). As mentioned in the introduction part there is
a serial communication between arduino and Matlab. USB
to USB cable (2.0) is used for this purpose.
In figure 2 block diagram of the system is shown,
in which one can understand the flow of signal also. Having
gone through the introduction part it is very much clear that
programming code should have been written in Matlab.
Fig. 2: Block Diagram of the system [2]
Having connected to Arduino using USB to USB
cable, Matlab will give a signal to Arduino. Arduino will
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab
(IJSRD/Vol. 3/Issue 10/2015/217)
All rights reserved by www.ijsrd.com 964
generate a voltage signal at its I/O pins according to the
logic fade in Matlab. In fact Matlab will force Arduino to do
so. Then the signal generated at the I/O pins of the arduino
will travel towards the Relay unit. Relay unit will provide
the amplified signal to solenoid valve. Then solenoid valve
would get actuated and pneumatic system will start working.
[3][5]
III. ARDUINO MICROCONTROLLER
Arduino is a tool that makes the computers to sense and
control the physical world. It's an open-source physical
computing platform based on a simple microcontroller
board, and a development environment for writing software
for the board.
Arduino can be used to develop interactive objects,
taking inputs from a variety of switches or sensors, and
controlling a variety of lights, motors, and other physical
outputs. Projects of Arduino can be stand-alone, or they can
be communicating with software running on the computer
(e.g. Flash, Processing, MaxMSP) The boards can be
assembled by hand or purchased preassembled; the open-
source IDE can be downloaded for free.[2][3]
Fig. 3: Arduino Microcontroller [3]
In this research work Arduino ATMEGA168 has been
utilized. It has 14 digital I/Os and 6 Analog I/Os. It works
on +5volts DC, 10 bit analog to digital converter and 14kb
ROM. (www. ATMEL.com). Figure 6 shows the image of
an Arduino ATMEGA168 controller. [2]
The Arduino is a tool. A little computer that can
help designers interacts with the physical world. Ostensibly
though, it‟s not much more than any other similar platform;
what makes it special is how it‟s been designed and
supported. “Arduino is an open-source electronics
prototyping platform based on flexible, easy-to-use
hardware and software. It‟s intended for artists, designers,
hobbyists, and anyone interested in creating interactive
objects or environments” (Arduino, 2007). The key is its
intention – intended for artists and designers, two groups of
people whose backgrounds aren‟t necessarily technical ones
(or if they are, they aren‟t likely to be deep in embedded
computing). So, in the city where Olivetti once stood (it is
now a part of Telecom Italia), the designers of Arduino
substituted corporate ownership and support with
community and openness. This shift is what makes the
Arduino accessible, and it is what has caused its rapid
growth and popularity in the communities using it. [6][7].
IV. SERIAL COMMUNICATION
Serial means "One after another". Serial communication is
when we transfer data one bit at a time, one right after the
other. Information is passed back & forth between the
computer and Arduino by, essentially, setting a pin high or
low. Just like we turn an LED on and o_, we can also send
data. One side sets the pin and the other reads it. MATLAB
can read/send the data from/to the serial port of the
computer and process it.
Fig. 4: Serial Buffer circuit [14]
It is most important to understand the nature of
buffer to avoid errors later while writing codes. There exists
a buffer between the two events of sending and reading the
data. Say a sensor is streaming back data to your program,
more frequently than your program reads it. Then the data is
stored to a list which we call a buffer. One writes data into it
and other reads it, may be with different speeds. Buffers are
of finite length.
Initially the buffer is empty. As new data values
come in they get added to the bottom of the list (most recent
data). If your program reads a value from the buffer, it starts
at the top of the list (oldest data). Once you read a byte of
data, it is no longer in the buffer. The data in the second
position on the list moves up to the top position As soon as
the buffer is full and more data is sent, the oldest data gets
discarded to make space for new data. [11][12]
V. SERIAL COMMUNICATION BETWEEN MATLAB AND
ARDUINO
We have to connect the Arduino board to the PC. Each
serial port on the PC is labeled COM1, COM2 etc. The
Arduino will be given a COM Port Number. Figure it out by
following these steps:
1) Right click on "My Computer icon" and select Manage.
2) Select Device Manager in the tree view you will see on
the left side in the new window opened.
3) Find and select Ports (COM& LPT) in the center panel.
4) Find lists of all the ports attached to the computer.
5) Figure out the one you are concerned with. Refresh the
window. [11]
First Serial port object has to be created. Serial port object is
just a name given to that serial port so that can be used it in
later commands.
>> s = serial ('COM1');
Serial Port Object: Serial-COM1
Communication Settings
Port: COM1
Baud Rate: 9600
Terminator: 'LF'
Communication State
Status: closed
Record Status: o_
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab
(IJSRD/Vol. 3/Issue 10/2015/217)
All rights reserved by www.ijsrd.com 965
Read/Write State
Transfer Status: idle
Bytes Available: 0
Values Received: 0
Values Sent: 0 [11]
VI. PNEUMATIC CIRCUIT
Figure 5 shows an electropneumatic circuit diagram
developed in Automsim Studio software. In the circuit two
cylinders are there among which one is double acting and
another is a single acting spring return. Valves also used to
control them. One is double acting solenoid operated valve
(5/2) and the second is single solenoid spring return (3/2)
valve.
Fig. 5: ElectroPneumatic circuit using Automsim Premium
[9]
The circuit shown in figure 5 is used to achieve following
position step diagram. Below figure shows position step
diagram to be achieved.
Fig. 6: Position Step diagram [9]
In figure 6 position step diagram is shown. Understanding of
this diagram will be in this fashion. When cylinder 1 goes
forward (Point 0 to 1 in the figure 6) and gets its extreme
position cylinder 2 should go forward (Point 1 to 2). But
immediately should get retracted (Point 2 to 3). At the same
time cylinder 1 should get retracted (Point 3 to 0).
VII. RELAY CIRCUIT
The output generated by the Arduino to be given to relay
unit. For an example two pneumatic cylinders are required
to be controlled in figure 5. But Arduino will give signal to
the solenoid. Hence first need to control solenoids (S1, S2
and S3) and then solenoids will control the cylinders. There
are three solenoids in the figure 5. Hence three relays are
required to fulfill the requirement (Each having 1 NO & 1
NC contact). Outputs can be taken at pin number 6, 7, 8.
Figure 7 shows the relay circuit which has been developed
for the problem under consideration. [9]
Fig. 7: Relay circuit [2]
According to figure 7, if bit D0=1, transistor is
activated. Then current passes through the relay coil making
the contact becomes closed and solenoid is actuated. The
pneumatic cylinder is actuated in this way. [2]
VIII. FUTURE SCOPE
A. GUI Feature Can Be Added For More Sophistication:
Fig. 8: Matlab GUI example [13]
B. System Can Be Converted Into The Wireless System
Using Xbee:
Fig. 9: Arduino Xbee Wireless Modem [10]
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab
(IJSRD/Vol. 3/Issue 10/2015/217)
All rights reserved by www.ijsrd.com 966
C. All The Parameters Of The System Also Can Be
Monitored Using Some Sensors And Some Serial Displays:
Fig. 10: Arduino Serial LCD display [8]
IX. ADVANTAGES
This technology or way of serial (digital) communication
between computer and pneumatic system makes whole
system flexible. It also increases the reliability and accuracy
of the system. It is very much user friendly and easy to
operate. System‟s monitoring also can be done using these.
System is cheaper and not much complex to implement.
X. APPLICATIONS
This technology can be used in pharmaceutical industries,
power plant, manufacturing industries. It also can be used in
hydro testing, scissor lift, pneumatic pushing systems,
pneumatic conveyor, hydraulic/ pneumatic motors and in
many more.
REFERENCES
[1] Ahmed A. Mand Ayman A. A, 2013. Mechatronic
Design of a mobile robot system. I.J intelligent systems
and applications, Modern Education and computer
science press.
[2] Bashir M. and Nouri Y, 2005.Modeling and control of
mobile robot. Proceeding of the First International
Conference on Modeling, Simulation and Applied
Optimization, Sharjah, U.A.E.
[3] Brian R., 2008. Design of PID controller using Z-N
tuning.
[4] Gajjar. B. R and Sheth. S, 2014. Design and
Automation in Back Plug Press Fitting Process of Ball
Pen Assembly, Applied Mechanics and Materials, vol.
592, pp. 2596-2600.
[5] Gajjar. B. R and Sheth. S, 2014. Investigation of
Automation Strategy and Its effect on Assembly Cost:
A Case Study on Ball Pen Assembly Line, International
Journal of Current Engineering and Technology,
Special Issue-3, pp. 89-92.
[6] Ian C., 2004. Control system design, Lecture on 14,
Feb-2004.
[7] Parikh. P. A, Joshi. K. D and Sheth. S, 2013. Color
Guided Vehicle–An Intelligent Material Handling
Mechatronic System, Proceedings of the 1st
International and 16th National Conference on
Machines and Mechanisms (iNaCoMM2013), IIT
Roorkee, India, pp. 628-635.
[8] Parikh P., Shah H. and Sheth S., 2014. A Mechatronics
design of a line tracker robot using Ziegler Nichols
control technique for P, PI and PID controllers.
International Mechanical Engineering Congress (IMEC-
2014), June 13-15, 2014. DOI:
10.13140/RG.2.1.4107.4722
[9] Parikh. P, Shah. H and Sheth. S, 2014. Development of
a multi-channel wireless data acquisition System for
swarm robots - A Mechatronic Approach using Arduino
UNO and MAT Lab. International Journal of
Engineering Development and Research (IJEDR),
ISSN:2321-9939,2 (1), pp. 717-725.
[10]Patel. T, Sheth. S and Patel. P, 2015. Design of Semi-
automatic Hydraulic Blanking Machine Using PLC,
National Conference on Innovative & Emerging
Technologies (NCIET- 2015), pp. 410-412. DOI:
10.13140/RG.2.1.4529.6803
[11]Sheth. S, Kher. R, Shah. R, Dudhat. P, Jani. P, 2010.
Automatic Sorting System using Machine Vision,
Multi-Disciplinary International Symposium on
Control, Automation & Robotics, DOI:
10.13140/2.1.1432.1448
[12]Tomas B., Ziegler Nicholas Method, Michigan
Technological University, Houghton, 2004.
[13]Tamboli. K, Sheth. S, Shah. V. Modi. V. Gandhi. C and
Amin. N., 2015.Design and Development of a
Mechatronic System for the Measurement of Railway
Tracks, Proceeding of the International conference
CCEED under IEEE, pp. 264-269.
[14]Virani. M, Vekariya. J, Sheth. S and Tamboli. K, 2013.
Design and Development of Automatic Stirrup Bending
Mechanism, Proceedings of the 1st International and
16th National Conference on Machines and
Mechanisms (iNaCoMM2013), IIT Roorkee, India, pp.
598-606.
[15]W. P. Aung., 2007. Analysis on Modeling and Simulink
of DC Motor and its Driving System Used for Wheeled
Mobile Robot.World Academy of Science, Engineering
and Technology, 32.

Weitere ähnliche Inhalte

Was ist angesagt?

IRJET - Smart Office IoT based Office Automation [Ramu Kaka]
IRJET - Smart Office  IoT based Office Automation [Ramu Kaka]IRJET - Smart Office  IoT based Office Automation [Ramu Kaka]
IRJET - Smart Office IoT based Office Automation [Ramu Kaka]IRJET Journal
 
16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)Susam Pal
 
Pc guided automatic vehicle system
Pc guided automatic vehicle systemPc guided automatic vehicle system
Pc guided automatic vehicle systemIJCI JOURNAL
 
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embeded Hardware
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embeded HardwareSYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embeded Hardware
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embeded HardwareArti Parab Academics
 
Microprocessors Assignment
Microprocessors AssignmentMicroprocessors Assignment
Microprocessors AssignmentRAHUL957367
 
Introduction to microprocessor notes
Introduction to microprocessor notesIntroduction to microprocessor notes
Introduction to microprocessor notesSARITHA REDDY
 
Fpga based interfacing for 8-bit and 32-bit electronic devices
Fpga based interfacing for 8-bit and 32-bit electronic devicesFpga based interfacing for 8-bit and 32-bit electronic devices
Fpga based interfacing for 8-bit and 32-bit electronic deviceseSAT Publishing House
 
Microcontroller presentation
Microcontroller presentationMicrocontroller presentation
Microcontroller presentationxavierpaulino
 
5x7 matrix led display
5x7 matrix led display 5x7 matrix led display
5x7 matrix led display Vatsal N Shah
 
Introduction to Embedded System I : Chapter 2 (3rd portion)
Introduction to Embedded System I : Chapter 2 (3rd portion)Introduction to Embedded System I : Chapter 2 (3rd portion)
Introduction to Embedded System I : Chapter 2 (3rd portion)Moe Moe Myint
 
Microcontroller
MicrocontrollerMicrocontroller
MicrocontrollerMaha lakshmi
 
Introduction to Embedded System: Chapter 2 (4th portion)
Introduction to Embedded System:  Chapter 2 (4th portion)Introduction to Embedded System:  Chapter 2 (4th portion)
Introduction to Embedded System: Chapter 2 (4th portion)Moe Moe Myint
 
Hardware I/O organization
Hardware  I/O organization Hardware  I/O organization
Hardware I/O organization faria_khan
 
stage-allemagne
stage-allemagnestage-allemagne
stage-allemagneMarwa HADDAD
 
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embedded Systems Memory
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embedded Systems MemorySYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embedded Systems Memory
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embedded Systems MemoryArti Parab Academics
 
Chapter 8 Embedded Hardware Design and Development (third portion)
Chapter 8 Embedded Hardware Design and Development (third portion)Chapter 8 Embedded Hardware Design and Development (third portion)
Chapter 8 Embedded Hardware Design and Development (third portion)Moe Moe Myint
 

Was ist angesagt? (19)

IRJET - Smart Office IoT based Office Automation [Ramu Kaka]
IRJET - Smart Office  IoT based Office Automation [Ramu Kaka]IRJET - Smart Office  IoT based Office Automation [Ramu Kaka]
IRJET - Smart Office IoT based Office Automation [Ramu Kaka]
 
16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)
 
Pc guided automatic vehicle system
Pc guided automatic vehicle systemPc guided automatic vehicle system
Pc guided automatic vehicle system
 
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embeded Hardware
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embeded HardwareSYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embeded Hardware
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embeded Hardware
 
computer system organization basics
computer system organization basicscomputer system organization basics
computer system organization basics
 
Microprocessors Assignment
Microprocessors AssignmentMicroprocessors Assignment
Microprocessors Assignment
 
Introduction to microprocessor notes
Introduction to microprocessor notesIntroduction to microprocessor notes
Introduction to microprocessor notes
 
Fpga based interfacing for 8-bit and 32-bit electronic devices
Fpga based interfacing for 8-bit and 32-bit electronic devicesFpga based interfacing for 8-bit and 32-bit electronic devices
Fpga based interfacing for 8-bit and 32-bit electronic devices
 
Microcontroller presentation
Microcontroller presentationMicrocontroller presentation
Microcontroller presentation
 
5x7 matrix led display
5x7 matrix led display 5x7 matrix led display
5x7 matrix led display
 
Introduction to Embedded System I : Chapter 2 (3rd portion)
Introduction to Embedded System I : Chapter 2 (3rd portion)Introduction to Embedded System I : Chapter 2 (3rd portion)
Introduction to Embedded System I : Chapter 2 (3rd portion)
 
Microcontroller
MicrocontrollerMicrocontroller
Microcontroller
 
Introduction to Embedded System: Chapter 2 (4th portion)
Introduction to Embedded System:  Chapter 2 (4th portion)Introduction to Embedded System:  Chapter 2 (4th portion)
Introduction to Embedded System: Chapter 2 (4th portion)
 
encoder.pptx
encoder.pptxencoder.pptx
encoder.pptx
 
Hardware I/O organization
Hardware  I/O organization Hardware  I/O organization
Hardware I/O organization
 
Embedded two mark question
Embedded two mark questionEmbedded two mark question
Embedded two mark question
 
stage-allemagne
stage-allemagnestage-allemagne
stage-allemagne
 
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embedded Systems Memory
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embedded Systems MemorySYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II  Embedded Systems Memory
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embedded Systems Memory
 
Chapter 8 Embedded Hardware Design and Development (third portion)
Chapter 8 Embedded Hardware Design and Development (third portion)Chapter 8 Embedded Hardware Design and Development (third portion)
Chapter 8 Embedded Hardware Design and Development (third portion)
 

Andere mochten auch

PNEUMATIC TOOLS
PNEUMATIC TOOLSPNEUMATIC TOOLS
PNEUMATIC TOOLScarplusaz
 
K-10714 ABHISHEK(MATLAB )
K-10714 ABHISHEK(MATLAB )K-10714 ABHISHEK(MATLAB )
K-10714 ABHISHEK(MATLAB )shailesh yadav
 
Problemlösungen mit MATLAB
Problemlösungen mit MATLABProblemlösungen mit MATLAB
Problemlösungen mit MATLABdinomasch
 
Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...
Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...
Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...Kiminao Kogiso
 
Week 10 part 3 pe 6282 mecchanical liquid and electrical
Week 10 part 3 pe 6282 mecchanical liquid and electricalWeek 10 part 3 pe 6282 mecchanical liquid and electrical
Week 10 part 3 pe 6282 mecchanical liquid and electricalCharlton Inao
 
Industrial Control Systems - Pneumatic Systems
Industrial Control Systems - Pneumatic SystemsIndustrial Control Systems - Pneumatic Systems
Industrial Control Systems - Pneumatic SystemsBehzad Samadi
 
Hydraulic and pneumatic control elements
Hydraulic and pneumatic control elementsHydraulic and pneumatic control elements
Hydraulic and pneumatic control elementsumesh chikhale
 
What is mechatronic system simulation
What is mechatronic system simulationWhat is mechatronic system simulation
What is mechatronic system simulationSiemens PLM Software
 
Pneumatic controllers
Pneumatic controllersPneumatic controllers
Pneumatic controllersbestinkallely
 
Class 11 mathematical modeling of pneumatic and hydraulic systems
Class 11   mathematical modeling of pneumatic and hydraulic systemsClass 11   mathematical modeling of pneumatic and hydraulic systems
Class 11 mathematical modeling of pneumatic and hydraulic systemsManipal Institute of Technology
 
Finite DIfference Methods Mathematica
Finite DIfference Methods MathematicaFinite DIfference Methods Mathematica
Finite DIfference Methods Mathematicaguest56708a
 
Babic components of hydraulic & pneumatic systems
Babic components of hydraulic & pneumatic systemsBabic components of hydraulic & pneumatic systems
Babic components of hydraulic & pneumatic systemswakurets_21
 

Andere mochten auch (13)

PNEUMATIC TOOLS
PNEUMATIC TOOLSPNEUMATIC TOOLS
PNEUMATIC TOOLS
 
K-10714 ABHISHEK(MATLAB )
K-10714 ABHISHEK(MATLAB )K-10714 ABHISHEK(MATLAB )
K-10714 ABHISHEK(MATLAB )
 
Problemlösungen mit MATLAB
Problemlösungen mit MATLABProblemlösungen mit MATLAB
Problemlösungen mit MATLAB
 
Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...
Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...
Hybrid Nonlinear Model of McKibben Pneumatic Artificial Muscle Systems Incorp...
 
Week 10 part 3 pe 6282 mecchanical liquid and electrical
Week 10 part 3 pe 6282 mecchanical liquid and electricalWeek 10 part 3 pe 6282 mecchanical liquid and electrical
Week 10 part 3 pe 6282 mecchanical liquid and electrical
 
Industrial Control Systems - Pneumatic Systems
Industrial Control Systems - Pneumatic SystemsIndustrial Control Systems - Pneumatic Systems
Industrial Control Systems - Pneumatic Systems
 
Hydraulic and pneumatic control elements
Hydraulic and pneumatic control elementsHydraulic and pneumatic control elements
Hydraulic and pneumatic control elements
 
What is mechatronic system simulation
What is mechatronic system simulationWhat is mechatronic system simulation
What is mechatronic system simulation
 
Pneumatic controllers
Pneumatic controllersPneumatic controllers
Pneumatic controllers
 
Class 11 mathematical modeling of pneumatic and hydraulic systems
Class 11   mathematical modeling of pneumatic and hydraulic systemsClass 11   mathematical modeling of pneumatic and hydraulic systems
Class 11 mathematical modeling of pneumatic and hydraulic systems
 
Finite DIfference Methods Mathematica
Finite DIfference Methods MathematicaFinite DIfference Methods Mathematica
Finite DIfference Methods Mathematica
 
Hydraulic and pneumatic systems
Hydraulic and pneumatic systemsHydraulic and pneumatic systems
Hydraulic and pneumatic systems
 
Babic components of hydraulic & pneumatic systems
Babic components of hydraulic & pneumatic systemsBabic components of hydraulic & pneumatic systems
Babic components of hydraulic & pneumatic systems
 

Ă„hnlich wie Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab

Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION  Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION NAGASAI547
 
Minor Project Report on - short range personal 'RADAR'.
Minor Project Report on - short range personal 'RADAR'.Minor Project Report on - short range personal 'RADAR'.
Minor Project Report on - short range personal 'RADAR'.Sarvesh Kushwaha
 
Home Automation with MATLAB and ARDUINO Interface
Home Automation with MATLAB and ARDUINO InterfaceHome Automation with MATLAB and ARDUINO Interface
Home Automation with MATLAB and ARDUINO InterfaceAlok Tiwari
 
Report 2 microp.(microprocessor)
Report 2 microp.(microprocessor)Report 2 microp.(microprocessor)
Report 2 microp.(microprocessor)Ronza Sameer
 
IRJET- Android based Home Automation System with Power Optimization Modes
IRJET-  	  Android based Home Automation System with Power Optimization ModesIRJET-  	  Android based Home Automation System with Power Optimization Modes
IRJET- Android based Home Automation System with Power Optimization ModesIRJET Journal
 
IRJET- Information Logging and Investigation of Control Framework Utilizing D...
IRJET- Information Logging and Investigation of Control Framework Utilizing D...IRJET- Information Logging and Investigation of Control Framework Utilizing D...
IRJET- Information Logging and Investigation of Control Framework Utilizing D...IRJET Journal
 
Arduino Teaching Program
Arduino Teaching ProgramArduino Teaching Program
Arduino Teaching ProgramMax Kleiner
 
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNETSOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNETcseij
 
Data Acquisition and Control System for Real Time Applications
Data Acquisition and Control System for Real Time ApplicationsData Acquisition and Control System for Real Time Applications
Data Acquisition and Control System for Real Time Applicationsijsrd.com
 
Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Alexander Decker
 
The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...Sheena Crouch
 
IRJET- Wireless Home Automation System using OpenHAB
IRJET- Wireless Home Automation System using OpenHABIRJET- Wireless Home Automation System using OpenHAB
IRJET- Wireless Home Automation System using OpenHABIRJET Journal
 
Monitoring and Control System for Building Application Using Modbus Remote Te...
Monitoring and Control System for Building Application Using Modbus Remote Te...Monitoring and Control System for Building Application Using Modbus Remote Te...
Monitoring and Control System for Building Application Using Modbus Remote Te...IJITCA Journal
 
IRJET- Smart Power Optimization with IoT
IRJET-  	  Smart Power Optimization with IoTIRJET-  	  Smart Power Optimization with IoT
IRJET- Smart Power Optimization with IoTIRJET Journal
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Editor IJARCET
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Editor IJARCET
 
IJSRED-V2I2P57
IJSRED-V2I2P57IJSRED-V2I2P57
IJSRED-V2I2P57IJSRED
 
Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...eSAT Journals
 
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual)  vatsal shah-ec_4th yearFloor cleaning robot(autonomus mannual)  vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th yearVatsal N Shah
 

Ă„hnlich wie Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab (20)

Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION  Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION
 
Minor Project Report on - short range personal 'RADAR'.
Minor Project Report on - short range personal 'RADAR'.Minor Project Report on - short range personal 'RADAR'.
Minor Project Report on - short range personal 'RADAR'.
 
Home Automation with MATLAB and ARDUINO Interface
Home Automation with MATLAB and ARDUINO InterfaceHome Automation with MATLAB and ARDUINO Interface
Home Automation with MATLAB and ARDUINO Interface
 
Report 2 microp.(microprocessor)
Report 2 microp.(microprocessor)Report 2 microp.(microprocessor)
Report 2 microp.(microprocessor)
 
IRJET- Android based Home Automation System with Power Optimization Modes
IRJET-  	  Android based Home Automation System with Power Optimization ModesIRJET-  	  Android based Home Automation System with Power Optimization Modes
IRJET- Android based Home Automation System with Power Optimization Modes
 
IRJET- Information Logging and Investigation of Control Framework Utilizing D...
IRJET- Information Logging and Investigation of Control Framework Utilizing D...IRJET- Information Logging and Investigation of Control Framework Utilizing D...
IRJET- Information Logging and Investigation of Control Framework Utilizing D...
 
Arduino Teaching Program
Arduino Teaching ProgramArduino Teaching Program
Arduino Teaching Program
 
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNETSOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
 
Data Acquisition and Control System for Real Time Applications
Data Acquisition and Control System for Real Time ApplicationsData Acquisition and Control System for Real Time Applications
Data Acquisition and Control System for Real Time Applications
 
Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...
 
The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...
 
IRJET- Wireless Home Automation System using OpenHAB
IRJET- Wireless Home Automation System using OpenHABIRJET- Wireless Home Automation System using OpenHAB
IRJET- Wireless Home Automation System using OpenHAB
 
Monitoring and Control System for Building Application Using Modbus Remote Te...
Monitoring and Control System for Building Application Using Modbus Remote Te...Monitoring and Control System for Building Application Using Modbus Remote Te...
Monitoring and Control System for Building Application Using Modbus Remote Te...
 
IRJET- Smart Power Optimization with IoT
IRJET-  	  Smart Power Optimization with IoTIRJET-  	  Smart Power Optimization with IoT
IRJET- Smart Power Optimization with IoT
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397
 
IJSRED-V2I2P57
IJSRED-V2I2P57IJSRED-V2I2P57
IJSRED-V2I2P57
 
Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...
 
[IJET-V2I3P18] Authors: Mr. B. N. Patil , Mr. Sandesh Sonar , Mr. Pavankumar ...
[IJET-V2I3P18] Authors: Mr. B. N. Patil , Mr. Sandesh Sonar , Mr. Pavankumar ...[IJET-V2I3P18] Authors: Mr. B. N. Patil , Mr. Sandesh Sonar , Mr. Pavankumar ...
[IJET-V2I3P18] Authors: Mr. B. N. Patil , Mr. Sandesh Sonar , Mr. Pavankumar ...
 
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual)  vatsal shah-ec_4th yearFloor cleaning robot(autonomus mannual)  vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
 

Mehr von IJSRD

#IJSRD #Research Paper Publication
#IJSRD #Research Paper Publication#IJSRD #Research Paper Publication
#IJSRD #Research Paper PublicationIJSRD
 
Maintaining Data Confidentiality in Association Rule Mining in Distributed En...
Maintaining Data Confidentiality in Association Rule Mining in Distributed En...Maintaining Data Confidentiality in Association Rule Mining in Distributed En...
Maintaining Data Confidentiality in Association Rule Mining in Distributed En...IJSRD
 
Performance and Emission characteristics of a Single Cylinder Four Stroke Die...
Performance and Emission characteristics of a Single Cylinder Four Stroke Die...Performance and Emission characteristics of a Single Cylinder Four Stroke Die...
Performance and Emission characteristics of a Single Cylinder Four Stroke Die...IJSRD
 
Preclusion of High and Low Pressure In Boiler by Using LABVIEW
Preclusion of High and Low Pressure In Boiler by Using LABVIEWPreclusion of High and Low Pressure In Boiler by Using LABVIEW
Preclusion of High and Low Pressure In Boiler by Using LABVIEWIJSRD
 
Prevention and Detection of Man in the Middle Attack on AODV Protocol
Prevention and Detection of Man in the Middle Attack on AODV ProtocolPrevention and Detection of Man in the Middle Attack on AODV Protocol
Prevention and Detection of Man in the Middle Attack on AODV ProtocolIJSRD
 
Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...
Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...
Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...IJSRD
 
Evaluation the Effect of Machining Parameters on MRR of Mild Steel
Evaluation the Effect of Machining Parameters on MRR of Mild SteelEvaluation the Effect of Machining Parameters on MRR of Mild Steel
Evaluation the Effect of Machining Parameters on MRR of Mild SteelIJSRD
 
Filter unwanted messages from walls and blocking nonlegitimate user in osn
Filter unwanted messages from walls and blocking nonlegitimate user in osnFilter unwanted messages from walls and blocking nonlegitimate user in osn
Filter unwanted messages from walls and blocking nonlegitimate user in osnIJSRD
 
Keystroke Dynamics Authentication with Project Management System
Keystroke Dynamics Authentication with Project Management SystemKeystroke Dynamics Authentication with Project Management System
Keystroke Dynamics Authentication with Project Management SystemIJSRD
 
Diagnosing lungs cancer Using Neural Networks
Diagnosing lungs cancer Using Neural NetworksDiagnosing lungs cancer Using Neural Networks
Diagnosing lungs cancer Using Neural NetworksIJSRD
 
A Survey on Sentiment Analysis and Opinion Mining
A Survey on Sentiment Analysis and Opinion MiningA Survey on Sentiment Analysis and Opinion Mining
A Survey on Sentiment Analysis and Opinion MiningIJSRD
 
A Defect Prediction Model for Software Product based on ANFIS
A Defect Prediction Model for Software Product based on ANFISA Defect Prediction Model for Software Product based on ANFIS
A Defect Prediction Model for Software Product based on ANFISIJSRD
 
Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...
Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...
Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...IJSRD
 
Product Quality Analysis based on online Reviews
Product Quality Analysis based on online ReviewsProduct Quality Analysis based on online Reviews
Product Quality Analysis based on online ReviewsIJSRD
 
Solving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy Numbers
Solving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy NumbersSolving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy Numbers
Solving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy NumbersIJSRD
 
Study of Clustering of Data Base in Education Sector Using Data Mining
Study of Clustering of Data Base in Education Sector Using Data MiningStudy of Clustering of Data Base in Education Sector Using Data Mining
Study of Clustering of Data Base in Education Sector Using Data MiningIJSRD
 
Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...
Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...
Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...IJSRD
 
Investigation of Effect of Process Parameters on Maximum Temperature during F...
Investigation of Effect of Process Parameters on Maximum Temperature during F...Investigation of Effect of Process Parameters on Maximum Temperature during F...
Investigation of Effect of Process Parameters on Maximum Temperature during F...IJSRD
 
Review Paper on Computer Aided Design & Analysis of Rotor Shaft of a Rotavator
Review Paper on Computer Aided Design & Analysis of Rotor Shaft of a RotavatorReview Paper on Computer Aided Design & Analysis of Rotor Shaft of a Rotavator
Review Paper on Computer Aided Design & Analysis of Rotor Shaft of a RotavatorIJSRD
 
A Survey on Data Mining Techniques for Crime Hotspots Prediction
A Survey on Data Mining Techniques for Crime Hotspots PredictionA Survey on Data Mining Techniques for Crime Hotspots Prediction
A Survey on Data Mining Techniques for Crime Hotspots PredictionIJSRD
 

Mehr von IJSRD (20)

#IJSRD #Research Paper Publication
#IJSRD #Research Paper Publication#IJSRD #Research Paper Publication
#IJSRD #Research Paper Publication
 
Maintaining Data Confidentiality in Association Rule Mining in Distributed En...
Maintaining Data Confidentiality in Association Rule Mining in Distributed En...Maintaining Data Confidentiality in Association Rule Mining in Distributed En...
Maintaining Data Confidentiality in Association Rule Mining in Distributed En...
 
Performance and Emission characteristics of a Single Cylinder Four Stroke Die...
Performance and Emission characteristics of a Single Cylinder Four Stroke Die...Performance and Emission characteristics of a Single Cylinder Four Stroke Die...
Performance and Emission characteristics of a Single Cylinder Four Stroke Die...
 
Preclusion of High and Low Pressure In Boiler by Using LABVIEW
Preclusion of High and Low Pressure In Boiler by Using LABVIEWPreclusion of High and Low Pressure In Boiler by Using LABVIEW
Preclusion of High and Low Pressure In Boiler by Using LABVIEW
 
Prevention and Detection of Man in the Middle Attack on AODV Protocol
Prevention and Detection of Man in the Middle Attack on AODV ProtocolPrevention and Detection of Man in the Middle Attack on AODV Protocol
Prevention and Detection of Man in the Middle Attack on AODV Protocol
 
Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...
Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...
Comparative Analysis of PAPR Reduction Techniques in OFDM Using Precoding Tec...
 
Evaluation the Effect of Machining Parameters on MRR of Mild Steel
Evaluation the Effect of Machining Parameters on MRR of Mild SteelEvaluation the Effect of Machining Parameters on MRR of Mild Steel
Evaluation the Effect of Machining Parameters on MRR of Mild Steel
 
Filter unwanted messages from walls and blocking nonlegitimate user in osn
Filter unwanted messages from walls and blocking nonlegitimate user in osnFilter unwanted messages from walls and blocking nonlegitimate user in osn
Filter unwanted messages from walls and blocking nonlegitimate user in osn
 
Keystroke Dynamics Authentication with Project Management System
Keystroke Dynamics Authentication with Project Management SystemKeystroke Dynamics Authentication with Project Management System
Keystroke Dynamics Authentication with Project Management System
 
Diagnosing lungs cancer Using Neural Networks
Diagnosing lungs cancer Using Neural NetworksDiagnosing lungs cancer Using Neural Networks
Diagnosing lungs cancer Using Neural Networks
 
A Survey on Sentiment Analysis and Opinion Mining
A Survey on Sentiment Analysis and Opinion MiningA Survey on Sentiment Analysis and Opinion Mining
A Survey on Sentiment Analysis and Opinion Mining
 
A Defect Prediction Model for Software Product based on ANFIS
A Defect Prediction Model for Software Product based on ANFISA Defect Prediction Model for Software Product based on ANFIS
A Defect Prediction Model for Software Product based on ANFIS
 
Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...
Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...
Experimental Investigation of Granulated Blast Furnace Slag ond Quarry Dust a...
 
Product Quality Analysis based on online Reviews
Product Quality Analysis based on online ReviewsProduct Quality Analysis based on online Reviews
Product Quality Analysis based on online Reviews
 
Solving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy Numbers
Solving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy NumbersSolving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy Numbers
Solving Fuzzy Matrix Games Defuzzificated by Trapezoidal Parabolic Fuzzy Numbers
 
Study of Clustering of Data Base in Education Sector Using Data Mining
Study of Clustering of Data Base in Education Sector Using Data MiningStudy of Clustering of Data Base in Education Sector Using Data Mining
Study of Clustering of Data Base in Education Sector Using Data Mining
 
Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...
Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...
Fault Tolerance in Big Data Processing Using Heartbeat Messages and Data Repl...
 
Investigation of Effect of Process Parameters on Maximum Temperature during F...
Investigation of Effect of Process Parameters on Maximum Temperature during F...Investigation of Effect of Process Parameters on Maximum Temperature during F...
Investigation of Effect of Process Parameters on Maximum Temperature during F...
 
Review Paper on Computer Aided Design & Analysis of Rotor Shaft of a Rotavator
Review Paper on Computer Aided Design & Analysis of Rotor Shaft of a RotavatorReview Paper on Computer Aided Design & Analysis of Rotor Shaft of a Rotavator
Review Paper on Computer Aided Design & Analysis of Rotor Shaft of a Rotavator
 
A Survey on Data Mining Techniques for Crime Hotspots Prediction
A Survey on Data Mining Techniques for Crime Hotspots PredictionA Survey on Data Mining Techniques for Crime Hotspots Prediction
A Survey on Data Mining Techniques for Crime Hotspots Prediction
 

KĂĽrzlich hochgeladen

Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxPoojaSen20
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
FILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinoFILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinojohnmickonozaleda
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 

KĂĽrzlich hochgeladen (20)

Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
FILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinoFILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipino
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 

Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab

  • 1. IJSRD - International Journal for Scientific Research & Development| Vol. 3, Issue 10, 2015 | ISSN (online): 2321-0613 All rights reserved by www.ijsrd.com 963 Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab Priyam A. Parikh1 Naman Modi2 Rakesh Prajapati3 1,2,3 Sal College of Engineering Abstract— it has been observed that machines have become more intelligent, especially in manufacturing industries and power plants. Day by day use of hydraulic & pneumatic systems has been increasing rapidly. Some industries have only pneumatic systems for various operations. Instead of other rotary actuators industries are using pneumatic and hydraulic actuators to get better accuracy and smooth operations. Simultaneously engineers are focusing on computer control also. To construct a pneumatic system with a higher control features, the one and only option is computer control. It means that engineer would be able to control the whole system with the help of on board computer attached with the unit. To build such a system serial control techniques to control pneumatic & hydraulic systems have been shown in this paper. This system has been designed using Arduino Microcontroller (ATMEGA 168, 8 bit ATMEL), Matlab software, Arduino software, GUI (graphical user interface) toolbox, pneumatic components and some electromechanical switches. Verification of the pneumatic circuit can be done using Automsim premium software. Key words: Serial communication, Matlab, GUI, Arduino, electromechanical switches, Automsim Premium software and pneumatic system setup I. INTRODUCTION The current high-growth nature of digital communications demands higher speed serial communication circuits. Present day technologies barely manage to keep up with this demand, and new techniques are required to ensure that serial communication can continue to expand and grow. The goal of this work was to research, design, implement, and test high speed serial communication with pneumatic and hydraulic circuits. [1] In this paper Matlab software is used for serial communication. The purpose of this research is only to show the serial communication technique implemented between pneumatic/ hydraulic system and computer. However it can also be done between a microcontroller and the pneumatic system, but for better control computer has been used to provide a signal (serially) to the pneumatic setup. Here in this paper arduino microcontroller used as a mediator between computer and the pneumatic system. In fact the whole program is written in Matlab. Matlab will communicate with Arduino (Microcontroller) and accordingly Arduino will generate a signal at its I/O ports, which will be used to activate the solenoid valve of the pneumatic system. Now the question is: what is the need of Arduino microcontroller if Matlab can generate a serial port without any microcontroller? The answer is: Matlab can definitely generate outputs at serial port of the computer. But there are very less I/O pins are available at computer‟s own serial port, so to have more I/O pins arduino microcontroller has been attached with computer, so Matlab will communicate with Arduino instead of communicating with local serial port of the computer. Summary of the introduction in this fashion: “Matlab will control the pneumatic system through extra hardware called „Arduino‟. [2-4] Fig. 1: communication between Matlab and Arduino [4] II. BLOCK DIAGRAM OF THE SYSTEM In figure 1 two devices are shown, the first one is the computer and the second one is Arduino microcontroller (In the blue one). As mentioned in the introduction part there is a serial communication between arduino and Matlab. USB to USB cable (2.0) is used for this purpose. In figure 2 block diagram of the system is shown, in which one can understand the flow of signal also. Having gone through the introduction part it is very much clear that programming code should have been written in Matlab. Fig. 2: Block Diagram of the system [2] Having connected to Arduino using USB to USB cable, Matlab will give a signal to Arduino. Arduino will
  • 2. Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab (IJSRD/Vol. 3/Issue 10/2015/217) All rights reserved by www.ijsrd.com 964 generate a voltage signal at its I/O pins according to the logic fade in Matlab. In fact Matlab will force Arduino to do so. Then the signal generated at the I/O pins of the arduino will travel towards the Relay unit. Relay unit will provide the amplified signal to solenoid valve. Then solenoid valve would get actuated and pneumatic system will start working. [3][5] III. ARDUINO MICROCONTROLLER Arduino is a tool that makes the computers to sense and control the physical world. It's an open-source physical computing platform based on a simple microcontroller board, and a development environment for writing software for the board. Arduino can be used to develop interactive objects, taking inputs from a variety of switches or sensors, and controlling a variety of lights, motors, and other physical outputs. Projects of Arduino can be stand-alone, or they can be communicating with software running on the computer (e.g. Flash, Processing, MaxMSP) The boards can be assembled by hand or purchased preassembled; the open- source IDE can be downloaded for free.[2][3] Fig. 3: Arduino Microcontroller [3] In this research work Arduino ATMEGA168 has been utilized. It has 14 digital I/Os and 6 Analog I/Os. It works on +5volts DC, 10 bit analog to digital converter and 14kb ROM. (www. ATMEL.com). Figure 6 shows the image of an Arduino ATMEGA168 controller. [2] The Arduino is a tool. A little computer that can help designers interacts with the physical world. Ostensibly though, it‟s not much more than any other similar platform; what makes it special is how it‟s been designed and supported. “Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It‟s intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments” (Arduino, 2007). The key is its intention – intended for artists and designers, two groups of people whose backgrounds aren‟t necessarily technical ones (or if they are, they aren‟t likely to be deep in embedded computing). So, in the city where Olivetti once stood (it is now a part of Telecom Italia), the designers of Arduino substituted corporate ownership and support with community and openness. This shift is what makes the Arduino accessible, and it is what has caused its rapid growth and popularity in the communities using it. [6][7]. IV. SERIAL COMMUNICATION Serial means "One after another". Serial communication is when we transfer data one bit at a time, one right after the other. Information is passed back & forth between the computer and Arduino by, essentially, setting a pin high or low. Just like we turn an LED on and o_, we can also send data. One side sets the pin and the other reads it. MATLAB can read/send the data from/to the serial port of the computer and process it. Fig. 4: Serial Buffer circuit [14] It is most important to understand the nature of buffer to avoid errors later while writing codes. There exists a buffer between the two events of sending and reading the data. Say a sensor is streaming back data to your program, more frequently than your program reads it. Then the data is stored to a list which we call a buffer. One writes data into it and other reads it, may be with different speeds. Buffers are of finite length. Initially the buffer is empty. As new data values come in they get added to the bottom of the list (most recent data). If your program reads a value from the buffer, it starts at the top of the list (oldest data). Once you read a byte of data, it is no longer in the buffer. The data in the second position on the list moves up to the top position As soon as the buffer is full and more data is sent, the oldest data gets discarded to make space for new data. [11][12] V. SERIAL COMMUNICATION BETWEEN MATLAB AND ARDUINO We have to connect the Arduino board to the PC. Each serial port on the PC is labeled COM1, COM2 etc. The Arduino will be given a COM Port Number. Figure it out by following these steps: 1) Right click on "My Computer icon" and select Manage. 2) Select Device Manager in the tree view you will see on the left side in the new window opened. 3) Find and select Ports (COM& LPT) in the center panel. 4) Find lists of all the ports attached to the computer. 5) Figure out the one you are concerned with. Refresh the window. [11] First Serial port object has to be created. Serial port object is just a name given to that serial port so that can be used it in later commands. >> s = serial ('COM1'); Serial Port Object: Serial-COM1 Communication Settings Port: COM1 Baud Rate: 9600 Terminator: 'LF' Communication State Status: closed Record Status: o_
  • 3. Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab (IJSRD/Vol. 3/Issue 10/2015/217) All rights reserved by www.ijsrd.com 965 Read/Write State Transfer Status: idle Bytes Available: 0 Values Received: 0 Values Sent: 0 [11] VI. PNEUMATIC CIRCUIT Figure 5 shows an electropneumatic circuit diagram developed in Automsim Studio software. In the circuit two cylinders are there among which one is double acting and another is a single acting spring return. Valves also used to control them. One is double acting solenoid operated valve (5/2) and the second is single solenoid spring return (3/2) valve. Fig. 5: ElectroPneumatic circuit using Automsim Premium [9] The circuit shown in figure 5 is used to achieve following position step diagram. Below figure shows position step diagram to be achieved. Fig. 6: Position Step diagram [9] In figure 6 position step diagram is shown. Understanding of this diagram will be in this fashion. When cylinder 1 goes forward (Point 0 to 1 in the figure 6) and gets its extreme position cylinder 2 should go forward (Point 1 to 2). But immediately should get retracted (Point 2 to 3). At the same time cylinder 1 should get retracted (Point 3 to 0). VII. RELAY CIRCUIT The output generated by the Arduino to be given to relay unit. For an example two pneumatic cylinders are required to be controlled in figure 5. But Arduino will give signal to the solenoid. Hence first need to control solenoids (S1, S2 and S3) and then solenoids will control the cylinders. There are three solenoids in the figure 5. Hence three relays are required to fulfill the requirement (Each having 1 NO & 1 NC contact). Outputs can be taken at pin number 6, 7, 8. Figure 7 shows the relay circuit which has been developed for the problem under consideration. [9] Fig. 7: Relay circuit [2] According to figure 7, if bit D0=1, transistor is activated. Then current passes through the relay coil making the contact becomes closed and solenoid is actuated. The pneumatic cylinder is actuated in this way. [2] VIII. FUTURE SCOPE A. GUI Feature Can Be Added For More Sophistication: Fig. 8: Matlab GUI example [13] B. System Can Be Converted Into The Wireless System Using Xbee: Fig. 9: Arduino Xbee Wireless Modem [10]
  • 4. Control of Industrial Pneumatic & Hydraulic Systems using Serial Communication Technology & Matlab (IJSRD/Vol. 3/Issue 10/2015/217) All rights reserved by www.ijsrd.com 966 C. All The Parameters Of The System Also Can Be Monitored Using Some Sensors And Some Serial Displays: Fig. 10: Arduino Serial LCD display [8] IX. ADVANTAGES This technology or way of serial (digital) communication between computer and pneumatic system makes whole system flexible. It also increases the reliability and accuracy of the system. It is very much user friendly and easy to operate. System‟s monitoring also can be done using these. System is cheaper and not much complex to implement. X. APPLICATIONS This technology can be used in pharmaceutical industries, power plant, manufacturing industries. It also can be used in hydro testing, scissor lift, pneumatic pushing systems, pneumatic conveyor, hydraulic/ pneumatic motors and in many more. REFERENCES [1] Ahmed A. Mand Ayman A. A, 2013. Mechatronic Design of a mobile robot system. I.J intelligent systems and applications, Modern Education and computer science press. [2] Bashir M. and Nouri Y, 2005.Modeling and control of mobile robot. Proceeding of the First International Conference on Modeling, Simulation and Applied Optimization, Sharjah, U.A.E. [3] Brian R., 2008. Design of PID controller using Z-N tuning. [4] Gajjar. B. R and Sheth. S, 2014. Design and Automation in Back Plug Press Fitting Process of Ball Pen Assembly, Applied Mechanics and Materials, vol. 592, pp. 2596-2600. [5] Gajjar. B. R and Sheth. S, 2014. Investigation of Automation Strategy and Its effect on Assembly Cost: A Case Study on Ball Pen Assembly Line, International Journal of Current Engineering and Technology, Special Issue-3, pp. 89-92. [6] Ian C., 2004. Control system design, Lecture on 14, Feb-2004. [7] Parikh. P. A, Joshi. K. D and Sheth. S, 2013. Color Guided Vehicle–An Intelligent Material Handling Mechatronic System, Proceedings of the 1st International and 16th National Conference on Machines and Mechanisms (iNaCoMM2013), IIT Roorkee, India, pp. 628-635. [8] Parikh P., Shah H. and Sheth S., 2014. A Mechatronics design of a line tracker robot using Ziegler Nichols control technique for P, PI and PID controllers. International Mechanical Engineering Congress (IMEC- 2014), June 13-15, 2014. DOI: 10.13140/RG.2.1.4107.4722 [9] Parikh. P, Shah. H and Sheth. S, 2014. Development of a multi-channel wireless data acquisition System for swarm robots - A Mechatronic Approach using Arduino UNO and MAT Lab. International Journal of Engineering Development and Research (IJEDR), ISSN:2321-9939,2 (1), pp. 717-725. [10]Patel. T, Sheth. S and Patel. P, 2015. Design of Semi- automatic Hydraulic Blanking Machine Using PLC, National Conference on Innovative & Emerging Technologies (NCIET- 2015), pp. 410-412. DOI: 10.13140/RG.2.1.4529.6803 [11]Sheth. S, Kher. R, Shah. R, Dudhat. P, Jani. P, 2010. Automatic Sorting System using Machine Vision, Multi-Disciplinary International Symposium on Control, Automation & Robotics, DOI: 10.13140/2.1.1432.1448 [12]Tomas B., Ziegler Nicholas Method, Michigan Technological University, Houghton, 2004. [13]Tamboli. K, Sheth. S, Shah. V. Modi. V. Gandhi. C and Amin. N., 2015.Design and Development of a Mechatronic System for the Measurement of Railway Tracks, Proceeding of the International conference CCEED under IEEE, pp. 264-269. [14]Virani. M, Vekariya. J, Sheth. S and Tamboli. K, 2013. Design and Development of Automatic Stirrup Bending Mechanism, Proceedings of the 1st International and 16th National Conference on Machines and Mechanisms (iNaCoMM2013), IIT Roorkee, India, pp. 598-606. [15]W. P. Aung., 2007. Analysis on Modeling and Simulink of DC Motor and its Driving System Used for Wheeled Mobile Robot.World Academy of Science, Engineering and Technology, 32.