SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7669
DEVELOPMENT OF A SMART FLIPPING SYSTEM
Ishika Aggarwal1, Nimeshka Faujdar2, Shivam Verma3, Pradeep Khanna4
1, 2, 3 Students, MPAE Division, NSUT, New Delhi, India
4 Associate Professor, MPAE Division, NSUT, New Delhi, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – The automated assembly lines have become
indispensible in carrying out mass production processes. In
many instances, the individualproduct needstobeshiftedonto
another conveying line with orientation upside down. Such
requirements can be witnessed in printing applications and
processing of panels. Normally they are affected either
manually or through a complicated and costly pick and place
system. The present system has been developed as an attempt
to provide a simple and cost effective solution to such a
requirement. The system consists of a rotary disc with radial
slots stationed between two conveyors. The product inpresent
cases is a laminated solar cell of standard dimension (6”x6”)
which has to be transferred from one conveyor to the other in
an orientation upside down for further processing. Two IR
sensors have been used to detect presence and absence of the
product in the input and output slots of the rotary disc. Based
on the programming, decision is taken to rotate the disc in the
direction of flow to perform the desired task. Arduino UNO
microcontroller has been used which controls two DC motors,
one stepper motor and a linear actuator and has proved to be
giving satisfactory performance of the system.
Key Words: Automated assembly lines, indispensible, solar
cells, Programming decision, microcontroller,
1. INTRODUCTION
Automation is a key technology necessary for improving the
quality and quantity of products [1]. There are many
instances on industrial level generally dealing with card
shaped laminae. When the same needs to be turned upside
down for necessary actions to be taken on other face. The
task is generally performed by manual efforts in small to
medium sized industries and is performed with the help of
vacuum assistedormechanical pick andplacesystemswhich
are complicated, costly and require considerable
maintenance. To remain competitive, there is a need to
produce products at lower prices and higher quality [2].
Increase in competition has formed the need for innovation
[3]. In the present work an attempt has been made to come
out with a radically different design where the requirement
of pneumatic components, vacuum generation and
mechanical gripping/holding systems has been done away
with while dealing with products like solar cells. The
developed system rather providesa relativelysimple,easyto
operate and a cheaper alternative to such applications. The
speed of the system can be altered to match the production
rate making it flexible with less floor area requirements.
2. THE DESIGN SETUP
The actual working model of the developed system is
shown in figure 1 and 2.
Fig-1 Top view of the setup
Fig-2 Rotary disc with the sensing part
The setup can be explained by dividing it into following
three segments:
A. Sensing part
It consists of two numbers of IR Sensors used to
detect the presence and absence of the product i.e.
solar cells.
B. Actuation part
It consists of following hardware items:
MOTOR 2 MOTOR 1
STEPPER MOTOR
Arduino UNO
IR SENSOR 1IR SENSOR 2
ROTARY DISC
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7670
a. Two numbers of dc motors are used to drive
the input and output conveyors.
b. One stepper motor is used to rotate the slotted
disc at a speed matching with the production.
C. The control part
The Arduino UNO microcontroller is used to run
the logic whose code is given in the later section of
this work.
3. WORKING
The working of the setup can be explained in the
following steps
1. The IR sensor checks the presence of the component
at the inlet and outlet slots of the rotary discs.
2. If both the sensors register no product, input
conveyor starts and fed the product to the slot of
rotary-disc.
3. The status is again checked by the sensor with
output sensor registering zero and input sensor
registering one, the disc rotates by 90 degrees
bringing another free slot in front of input conveyor.
4. Status is again checked and situationoneisobserved
causing input conveyor to feed another product into
the free slot of the disc.
5. Status is checked again and situation of step two is
observed causing the disc to rotate further by 90
degrees. By now the product in the previous slot is
positioned on conveyor 2 through a total rotation of
180 degrees.
6. Status is checked again with input sensor registering
zero and output sensor registering one. Thistriggers
the rotation of motor 2 making the conveyor2torun
and taking the product at output slot in upside down
inverted position for further processing. This brings
the system back to stage one and so on.
The working can also be understood conveniently by a
process flow chart given in figure 3.
START
CHECK FOR THE PRESENCE/ ABSENCE OF THE PRODUCT
IR1 ON
IR2 OFF
IR1 OFF
IR2 OFF
IR1 OFF
IR2 ON
PRODUCT ENTERS THE
INPUT SLOT OF THE DISC
DISC ROTATES 90
DEGREES
PRODUCT EXITS THE
OUTPUT SLOT OF THE
DISC
END
Fig-3 Flow Chart for the system
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7671
4. CONTROL PROGRAM
void setup() {
Serial.begin(9600); // set up Serial library at 9600 bps
motor.setSpeed(40); // 10 rpm
actuator.setSpeed(250);
conyer.setSpeed(110);
actuator.run(RELEASE);
conyer.run(RELEASE);
rotateStepper();
delay(1000);
motor.release();
// ------------PINS FOR IR SENSORS----------------
pinMode(firstIrPin,INPUT);
pinMode(secondIrPin,INPUT);
}
void loop() {
firstIrResult=digitalRead(firstIrPin);
Serial.println("firstIrResult");
Serial.println(firstIrResult);
secondIrResult=digitalRead(secondIrPin);
Serial.println("secondIrResult");
Serial.println(secondIrResult);
if(firstIrResult==1&&secondIrResult==1)
{
pushPlate();
}
if(firstIrResult==0&&secondIrResult==1)
{
rotateStepper();
delay(1000);
}
if(firstIrResult==1&&secondIrResult==0)
{
motor.release();
conyer.run(BACKWARD);
delay(3000);
rotateStepperC();
conyer.run(RELEASE);
}
}
void rotateStepper()
{
motor.step(50.5,BACKWARD, SINGLE);
motor.release();}
void pushPlate()
{
actuator.run(FORWARD);
delay(2000);
actuator.run(BACKWARD);
delay(1000);
actuator.run(RELEASE);
}
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7672
5. RESULT
The developed system has been tested for its effected
working and is found to be giving satisfactorily
performance.
6. CONCLUSIONS
The following conclusions can be drawn from the work
carried out so far.
1. The controller Arduino UNO has been found to give
adequately competent to perform such kind of task.
2. The complexity, cost and space requirement of the
developed system is considerably less than the
conventional one.
3. The speed of the system can easily be varied
steplessly.
4. If commercialized, the system with minor
modification can successfully be used even in small
scale industries owning to its discussed features.
REFERENCES
[1] H. Beigi,”Automation in manufacturing”, Proceedings of
1st Annual Conference on Technological Advancements
in Developing Countries, Columbia University, New
York, July 24-25, 1993, pp. 85-92.
[2] Y.Y. Yusuf, M. Sarhadi, A. Gunasekaran,” Agile
Manufacturing: The drivers, concepts and attributes”,
International. Journal Production Economics, vol 62,
1999, pp, 33-43.
[3] Vyshnavi T S, Chetan N,”A review on implementation of
agile in manufacturing industries using key enablers”,
vol 3, issue 3, 2016, pp.1929-1933

More Related Content

What's hot

Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...
Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...
Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...
udfjjjsekekkem
 
Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...
Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...
Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...
uudfjjjskkemmd
 
Skidweigh ed-series, hydraulische Wiegesysteme
Skidweigh ed-series, hydraulische WiegesystemeSkidweigh ed-series, hydraulische Wiegesysteme
Skidweigh ed-series, hydraulische Wiegesysteme
ZeljkoJurca
 
EIM Electric Valve Actuator Product Selection Guide
EIM Electric Valve Actuator Product Selection GuideEIM Electric Valve Actuator Product Selection Guide
EIM Electric Valve Actuator Product Selection Guide
Process Control Solutions, LLC
 
Maximum precision for your web guiding
Maximum precision for your web guidingMaximum precision for your web guiding
Maximum precision for your web guiding
Universidad Complutense de Madrid
 
Numatics Express Catalog: Pneumatic and Motion Control Products
Numatics Express Catalog: Pneumatic and Motion Control ProductsNumatics Express Catalog: Pneumatic and Motion Control Products
Numatics Express Catalog: Pneumatic and Motion Control Products
Process Control Solutions, LLC
 
Condition monitor for vibrating screens
Condition monitor for vibrating screensCondition monitor for vibrating screens
Condition monitor for vibrating screens
LisaThomas194
 
Extrusion thermoforming line
Extrusion thermoforming lineExtrusion thermoforming line
Extrusion thermoforming line
Lyle F Eveleigh
 
Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...
Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...
Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...
fjjsefkkertsemme
 

What's hot (9)

Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...
Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...
Caterpillar cat 320 d2 excavator (prefix nbf) service repair manual (nbf00001...
 
Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...
Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...
Caterpillar cat 235 b excavator (prefix 7wc) service repair manual (7wc00001 ...
 
Skidweigh ed-series, hydraulische Wiegesysteme
Skidweigh ed-series, hydraulische WiegesystemeSkidweigh ed-series, hydraulische Wiegesysteme
Skidweigh ed-series, hydraulische Wiegesysteme
 
EIM Electric Valve Actuator Product Selection Guide
EIM Electric Valve Actuator Product Selection GuideEIM Electric Valve Actuator Product Selection Guide
EIM Electric Valve Actuator Product Selection Guide
 
Maximum precision for your web guiding
Maximum precision for your web guidingMaximum precision for your web guiding
Maximum precision for your web guiding
 
Numatics Express Catalog: Pneumatic and Motion Control Products
Numatics Express Catalog: Pneumatic and Motion Control ProductsNumatics Express Catalog: Pneumatic and Motion Control Products
Numatics Express Catalog: Pneumatic and Motion Control Products
 
Condition monitor for vibrating screens
Condition monitor for vibrating screensCondition monitor for vibrating screens
Condition monitor for vibrating screens
 
Extrusion thermoforming line
Extrusion thermoforming lineExtrusion thermoforming line
Extrusion thermoforming line
 
Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...
Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...
Caterpillar cat 242 d skid steer loader (prefix a9w) service repair manual (a...
 

Similar to IRJET- Development of a Smart Flipping System

Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...
IRJET Journal
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
IRJET Journal
 
IRJET- Automatic Gold Sphere Drill Machine
IRJET- Automatic Gold Sphere Drill MachineIRJET- Automatic Gold Sphere Drill Machine
IRJET- Automatic Gold Sphere Drill Machine
IRJET Journal
 
IRJET-Hob Grinding Machine Automation using PLC&HMI
IRJET-Hob Grinding Machine Automation using PLC&HMIIRJET-Hob Grinding Machine Automation using PLC&HMI
IRJET-Hob Grinding Machine Automation using PLC&HMI
IRJET Journal
 
Dish Positioning By Using IR Remote
Dish Positioning By Using IR RemoteDish Positioning By Using IR Remote
Dish Positioning By Using IR Remote
IRJET Journal
 
IRJET- Productivity Improvement of Assembly Workstation in a Small Scale ...
IRJET-  	  Productivity Improvement of Assembly Workstation in a Small Scale ...IRJET-  	  Productivity Improvement of Assembly Workstation in a Small Scale ...
IRJET- Productivity Improvement of Assembly Workstation in a Small Scale ...
IRJET Journal
 
IRJET- Arduino Controlled Automatic Pneumatic Bumper System
IRJET- Arduino Controlled Automatic Pneumatic Bumper SystemIRJET- Arduino Controlled Automatic Pneumatic Bumper System
IRJET- Arduino Controlled Automatic Pneumatic Bumper System
IRJET Journal
 
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
IRJET-  	  Design & Development of Two-Wheeled Self Balancing RobotIRJET-  	  Design & Development of Two-Wheeled Self Balancing Robot
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
IRJET Journal
 
IRJET- Three Axis Pneumatic Automatic Welding Machine
IRJET-  	  Three Axis Pneumatic Automatic Welding MachineIRJET-  	  Three Axis Pneumatic Automatic Welding Machine
IRJET- Three Axis Pneumatic Automatic Welding Machine
IRJET Journal
 
IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...
IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...
IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...
IRJET Journal
 
IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
IRJET-  	  Closed Loop Speed Control of DC Motor by using PI ControllerIRJET-  	  Closed Loop Speed Control of DC Motor by using PI Controller
IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
IRJET Journal
 
IRJET- Quadrotor Modeling and Control using PID Technique
IRJET- Quadrotor Modeling and Control using PID TechniqueIRJET- Quadrotor Modeling and Control using PID Technique
IRJET- Quadrotor Modeling and Control using PID Technique
IRJET Journal
 
IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...
IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...
IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...
IRJET Journal
 
IRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for SkyscrapersIRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for Skyscrapers
IRJET Journal
 
Semi-Automatic Engine Valve Cleaning Machine Using Cam and Follower Mechanism
Semi-Automatic Engine Valve Cleaning Machine Using Cam and Follower MechanismSemi-Automatic Engine Valve Cleaning Machine Using Cam and Follower Mechanism
Semi-Automatic Engine Valve Cleaning Machine Using Cam and Follower Mechanism
IRJET Journal
 
Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...
Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...
Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...
IRJET Journal
 
Fuzzy and Pid Based Pitch Angle Control of Variable Speed Wind Turbines
Fuzzy and Pid Based Pitch Angle Control of Variable Speed Wind TurbinesFuzzy and Pid Based Pitch Angle Control of Variable Speed Wind Turbines
Fuzzy and Pid Based Pitch Angle Control of Variable Speed Wind Turbines
IRJET Journal
 
Smart driving license renewal machine using labview
Smart driving license renewal machine using labviewSmart driving license renewal machine using labview
Smart driving license renewal machine using labview
IRJET Journal
 
IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...
IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...
IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...
IRJET Journal
 
IRJET- Low Cost Industrial Paint Bot
IRJET-  	  Low Cost Industrial Paint BotIRJET-  	  Low Cost Industrial Paint Bot
IRJET- Low Cost Industrial Paint Bot
IRJET Journal
 

Similar to IRJET- Development of a Smart Flipping System (20)

Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
 
IRJET- Automatic Gold Sphere Drill Machine
IRJET- Automatic Gold Sphere Drill MachineIRJET- Automatic Gold Sphere Drill Machine
IRJET- Automatic Gold Sphere Drill Machine
 
IRJET-Hob Grinding Machine Automation using PLC&HMI
IRJET-Hob Grinding Machine Automation using PLC&HMIIRJET-Hob Grinding Machine Automation using PLC&HMI
IRJET-Hob Grinding Machine Automation using PLC&HMI
 
Dish Positioning By Using IR Remote
Dish Positioning By Using IR RemoteDish Positioning By Using IR Remote
Dish Positioning By Using IR Remote
 
IRJET- Productivity Improvement of Assembly Workstation in a Small Scale ...
IRJET-  	  Productivity Improvement of Assembly Workstation in a Small Scale ...IRJET-  	  Productivity Improvement of Assembly Workstation in a Small Scale ...
IRJET- Productivity Improvement of Assembly Workstation in a Small Scale ...
 
IRJET- Arduino Controlled Automatic Pneumatic Bumper System
IRJET- Arduino Controlled Automatic Pneumatic Bumper SystemIRJET- Arduino Controlled Automatic Pneumatic Bumper System
IRJET- Arduino Controlled Automatic Pneumatic Bumper System
 
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
IRJET-  	  Design & Development of Two-Wheeled Self Balancing RobotIRJET-  	  Design & Development of Two-Wheeled Self Balancing Robot
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
 
IRJET- Three Axis Pneumatic Automatic Welding Machine
IRJET-  	  Three Axis Pneumatic Automatic Welding MachineIRJET-  	  Three Axis Pneumatic Automatic Welding Machine
IRJET- Three Axis Pneumatic Automatic Welding Machine
 
IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...
IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...
IRJET- Interlooping Process of Diode Continuity Clamping Voltage Checking Mac...
 
IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
IRJET-  	  Closed Loop Speed Control of DC Motor by using PI ControllerIRJET-  	  Closed Loop Speed Control of DC Motor by using PI Controller
IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
 
IRJET- Quadrotor Modeling and Control using PID Technique
IRJET- Quadrotor Modeling and Control using PID TechniqueIRJET- Quadrotor Modeling and Control using PID Technique
IRJET- Quadrotor Modeling and Control using PID Technique
 
IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...
IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...
IRJET- Design and Development Pedal Operated Multi-Crop Thresher with Vibrati...
 
IRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for SkyscrapersIRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for Skyscrapers
 
Semi-Automatic Engine Valve Cleaning Machine Using Cam and Follower Mechanism
Semi-Automatic Engine Valve Cleaning Machine Using Cam and Follower MechanismSemi-Automatic Engine Valve Cleaning Machine Using Cam and Follower Mechanism
Semi-Automatic Engine Valve Cleaning Machine Using Cam and Follower Mechanism
 
Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...
Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...
Implementation of Customised SCADA for Cartoner Packaging machine for Cost Ef...
 
Fuzzy and Pid Based Pitch Angle Control of Variable Speed Wind Turbines
Fuzzy and Pid Based Pitch Angle Control of Variable Speed Wind TurbinesFuzzy and Pid Based Pitch Angle Control of Variable Speed Wind Turbines
Fuzzy and Pid Based Pitch Angle Control of Variable Speed Wind Turbines
 
Smart driving license renewal machine using labview
Smart driving license renewal machine using labviewSmart driving license renewal machine using labview
Smart driving license renewal machine using labview
 
IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...
IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...
IRJET- Vertical Milling Center Machines Status Monitoring System for Industri...
 
IRJET- Low Cost Industrial Paint Bot
IRJET-  	  Low Cost Industrial Paint BotIRJET-  	  Low Cost Industrial Paint Bot
IRJET- Low Cost Industrial Paint Bot
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
ydzowc
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 
Gas agency management system project report.pdf
Gas agency management system project report.pdfGas agency management system project report.pdf
Gas agency management system project report.pdf
Kamal Acharya
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
ijaia
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...
Prakhyath Rai
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
Paris Salesforce Developer Group
 
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
ecqow
 
Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
21UME003TUSHARDEB
 
Design and optimization of ion propulsion drone
Design and optimization of ion propulsion droneDesign and optimization of ion propulsion drone
Design and optimization of ion propulsion drone
bjmsejournal
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
upoux
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
PKavitha10
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
Atif Razi
 
Rainfall intensity duration frequency curve statistical analysis and modeling...
Rainfall intensity duration frequency curve statistical analysis and modeling...Rainfall intensity duration frequency curve statistical analysis and modeling...
Rainfall intensity duration frequency curve statistical analysis and modeling...
bijceesjournal
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
shadow0702a
 

Recently uploaded (20)

原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 
Gas agency management system project report.pdf
Gas agency management system project report.pdfGas agency management system project report.pdf
Gas agency management system project report.pdf
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
 
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
 
Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
 
Design and optimization of ion propulsion drone
Design and optimization of ion propulsion droneDesign and optimization of ion propulsion drone
Design and optimization of ion propulsion drone
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
 
Rainfall intensity duration frequency curve statistical analysis and modeling...
Rainfall intensity duration frequency curve statistical analysis and modeling...Rainfall intensity duration frequency curve statistical analysis and modeling...
Rainfall intensity duration frequency curve statistical analysis and modeling...
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
 

IRJET- Development of a Smart Flipping System

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7669 DEVELOPMENT OF A SMART FLIPPING SYSTEM Ishika Aggarwal1, Nimeshka Faujdar2, Shivam Verma3, Pradeep Khanna4 1, 2, 3 Students, MPAE Division, NSUT, New Delhi, India 4 Associate Professor, MPAE Division, NSUT, New Delhi, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – The automated assembly lines have become indispensible in carrying out mass production processes. In many instances, the individualproduct needstobeshiftedonto another conveying line with orientation upside down. Such requirements can be witnessed in printing applications and processing of panels. Normally they are affected either manually or through a complicated and costly pick and place system. The present system has been developed as an attempt to provide a simple and cost effective solution to such a requirement. The system consists of a rotary disc with radial slots stationed between two conveyors. The product inpresent cases is a laminated solar cell of standard dimension (6”x6”) which has to be transferred from one conveyor to the other in an orientation upside down for further processing. Two IR sensors have been used to detect presence and absence of the product in the input and output slots of the rotary disc. Based on the programming, decision is taken to rotate the disc in the direction of flow to perform the desired task. Arduino UNO microcontroller has been used which controls two DC motors, one stepper motor and a linear actuator and has proved to be giving satisfactory performance of the system. Key Words: Automated assembly lines, indispensible, solar cells, Programming decision, microcontroller, 1. INTRODUCTION Automation is a key technology necessary for improving the quality and quantity of products [1]. There are many instances on industrial level generally dealing with card shaped laminae. When the same needs to be turned upside down for necessary actions to be taken on other face. The task is generally performed by manual efforts in small to medium sized industries and is performed with the help of vacuum assistedormechanical pick andplacesystemswhich are complicated, costly and require considerable maintenance. To remain competitive, there is a need to produce products at lower prices and higher quality [2]. Increase in competition has formed the need for innovation [3]. In the present work an attempt has been made to come out with a radically different design where the requirement of pneumatic components, vacuum generation and mechanical gripping/holding systems has been done away with while dealing with products like solar cells. The developed system rather providesa relativelysimple,easyto operate and a cheaper alternative to such applications. The speed of the system can be altered to match the production rate making it flexible with less floor area requirements. 2. THE DESIGN SETUP The actual working model of the developed system is shown in figure 1 and 2. Fig-1 Top view of the setup Fig-2 Rotary disc with the sensing part The setup can be explained by dividing it into following three segments: A. Sensing part It consists of two numbers of IR Sensors used to detect the presence and absence of the product i.e. solar cells. B. Actuation part It consists of following hardware items: MOTOR 2 MOTOR 1 STEPPER MOTOR Arduino UNO IR SENSOR 1IR SENSOR 2 ROTARY DISC
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7670 a. Two numbers of dc motors are used to drive the input and output conveyors. b. One stepper motor is used to rotate the slotted disc at a speed matching with the production. C. The control part The Arduino UNO microcontroller is used to run the logic whose code is given in the later section of this work. 3. WORKING The working of the setup can be explained in the following steps 1. The IR sensor checks the presence of the component at the inlet and outlet slots of the rotary discs. 2. If both the sensors register no product, input conveyor starts and fed the product to the slot of rotary-disc. 3. The status is again checked by the sensor with output sensor registering zero and input sensor registering one, the disc rotates by 90 degrees bringing another free slot in front of input conveyor. 4. Status is again checked and situationoneisobserved causing input conveyor to feed another product into the free slot of the disc. 5. Status is checked again and situation of step two is observed causing the disc to rotate further by 90 degrees. By now the product in the previous slot is positioned on conveyor 2 through a total rotation of 180 degrees. 6. Status is checked again with input sensor registering zero and output sensor registering one. Thistriggers the rotation of motor 2 making the conveyor2torun and taking the product at output slot in upside down inverted position for further processing. This brings the system back to stage one and so on. The working can also be understood conveniently by a process flow chart given in figure 3. START CHECK FOR THE PRESENCE/ ABSENCE OF THE PRODUCT IR1 ON IR2 OFF IR1 OFF IR2 OFF IR1 OFF IR2 ON PRODUCT ENTERS THE INPUT SLOT OF THE DISC DISC ROTATES 90 DEGREES PRODUCT EXITS THE OUTPUT SLOT OF THE DISC END Fig-3 Flow Chart for the system
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7671 4. CONTROL PROGRAM void setup() { Serial.begin(9600); // set up Serial library at 9600 bps motor.setSpeed(40); // 10 rpm actuator.setSpeed(250); conyer.setSpeed(110); actuator.run(RELEASE); conyer.run(RELEASE); rotateStepper(); delay(1000); motor.release(); // ------------PINS FOR IR SENSORS---------------- pinMode(firstIrPin,INPUT); pinMode(secondIrPin,INPUT); } void loop() { firstIrResult=digitalRead(firstIrPin); Serial.println("firstIrResult"); Serial.println(firstIrResult); secondIrResult=digitalRead(secondIrPin); Serial.println("secondIrResult"); Serial.println(secondIrResult); if(firstIrResult==1&&secondIrResult==1) { pushPlate(); } if(firstIrResult==0&&secondIrResult==1) { rotateStepper(); delay(1000); } if(firstIrResult==1&&secondIrResult==0) { motor.release(); conyer.run(BACKWARD); delay(3000); rotateStepperC(); conyer.run(RELEASE); } } void rotateStepper() { motor.step(50.5,BACKWARD, SINGLE); motor.release();} void pushPlate() { actuator.run(FORWARD); delay(2000); actuator.run(BACKWARD); delay(1000); actuator.run(RELEASE); }
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7672 5. RESULT The developed system has been tested for its effected working and is found to be giving satisfactorily performance. 6. CONCLUSIONS The following conclusions can be drawn from the work carried out so far. 1. The controller Arduino UNO has been found to give adequately competent to perform such kind of task. 2. The complexity, cost and space requirement of the developed system is considerably less than the conventional one. 3. The speed of the system can easily be varied steplessly. 4. If commercialized, the system with minor modification can successfully be used even in small scale industries owning to its discussed features. REFERENCES [1] H. Beigi,”Automation in manufacturing”, Proceedings of 1st Annual Conference on Technological Advancements in Developing Countries, Columbia University, New York, July 24-25, 1993, pp. 85-92. [2] Y.Y. Yusuf, M. Sarhadi, A. Gunasekaran,” Agile Manufacturing: The drivers, concepts and attributes”, International. Journal Production Economics, vol 62, 1999, pp, 33-43. [3] Vyshnavi T S, Chetan N,”A review on implementation of agile in manufacturing industries using key enablers”, vol 3, issue 3, 2016, pp.1929-1933