SlideShare a Scribd company logo
1 of 20
AUTOMATION:
Automation is the use of control systems such as computers to control
industrial machinery and processes, replacing human operators. In the scope of
industrialization, it is a step beyond mechanization. Whereas mechanization
provided human operators with machinery to assist them with the physical
requirements of work, automation greatly reduces the need for human sensory
and mental requirements as well.
ADVANTAGES OF AUTOMATION:
The purpose of automation has shifted from increasing productivity and
reducing costs, to broader issues, such as increasing quality and flexibility in the
manufacturing process.
Automation is now often applied primarily to increase quality in the
manufacturing process, where automation can increase quality substantially.
For example, automobile and truck pistons used to be installed into
engines manually. This is rapidly being transitioned to automated machine
installation, because the error rate for manual installment was around 1-1.5%,
but has been reduced to 0.00001% with automation.
Hazardous operations, such as oil refining, the manufacturing of industrial
chemicals, and all forms of metal working, were always early contenders for
automation.
Application of Automation
Power generation
TRANSMISSION AND DISTRIBUTION:
Oil and gas industries
Process industries
Building automation
HISTORY OF AUTOMATION
MANUAL CONTROL
HARDWIRED CONTROL:
Prior to PLCs, many of these control tasks were solved with contactor or
relay controls. This is often referred to as hard-wired control. Circuit diagrams
had to be designed, electrical components specified and installed, and wiring lists
created. Electricians would then wire the components necessary to perform a
specific task. If an error was made the wires had to be reconnected correctly. A
change in function or system expansion required extensive component changes
and rewiring.
DRAWBACKS:
Bulky and complex wiring.
Difficult to change the logic.
Unreliable.
RELAY :
RELAY LOGIC – AND GATE:
ELECTRONICS CONTROL
Logic gates and Electronic Circuits are used
Ease of programming
Ease of maintenance
Drawbacks:
Difficult to Troubleshoot while Change the Logic of the Process
Difficult to expand
Not suitable for industrial conditions
PROGRAMMABLE LOGICAL CONTORL
What is a Programmable Logic Controller PLC?
PLC is a device, which is used to control a machine or process as per the
human control sequence. A PLC monitors inputs, makes decisions based on its
program, and controls outputs to automate a process or machine.
Advantages
• Smaller physical size than hard-wire solutions
• Easier and faster to make changes
• PLCs have integrated diagnostics and override functions
• Diagnostics are centrally available
• Applications can be immediately documented
• Applications can be duplicated faster and less expensively
PROCESSOR MEMORY ORGANIZATION
The memory of a PLC is organized by types.
The memory space can be divided into two broad categories:
Program and Data Memory:
Advanced ladder logic functins allow controllers to perform calculatins,
make decisions and do other complex tasks. Timers and counters are examples of ladder
logic functions. They are more comples than basic inputs contacts and output coils and
relay heavily upon data stored in the memory of the PLC.
PROGRAM FILES:
The user program will account for most of the memory of a PLC
system.
Program files contain the logic controlling machine operation.
This logic consistes of instructions that are programmed in a ladder
logic format.
DATA FILES:
The data file protion of memory stores input and output status,
processor status, the status of various bits and numerical data.
INPUT TABLE FILE OPERATION:
Processor continually reads current input status and updates input
image table file.
OUTPUT TABLE FILE OPERATION:
Processor continually activates or deactivates ouput status according
to output image table file status
PROGRAM SCAN:
During each operating cycle, the processor reads all inputs, takes these
values, and energizes or de-energizes the outputs according to the user
program. This process is known as a scan. Because the inputs can change at
any time, the PLC must carry on this process continuously.
1. I/O scan – records status data of input devices. Energizes output
devices that have their associated status bits set to ON (1)
2. Program scan – instruction are executed sequentially.
SCAN PROCESS:
The scan time indicates how fast the controller can react to changes in
inputs. Scan times vary with computer model and program content, and
length. If a controller has to react to an input signal that changes states twice
during the scan time, it is possible that the PLC will never be able to detect
this change.
When the inputs is closed, the input module senses a voltage and an ON condition
(1) is entered into the input table bit ‘0012’.
During the program scan the processor sets instructins ‘0012’ and ‘506’ to ON(1).
The processor turns light output ‘506’ ON during the next I/O scan.
KEYENCE
ADDRESS:
INPUTS:
0000 to 0015
0100 to 0115
0200 to 0215
0300 to 0315
0400 to 0415
OUTPUTS:
0500 to 0515
0600 to 0615
0700 to 0715
0800 to 0815
0900 to 0915
INTERNAL MEMORY BIT:
1000 to 1015
Upto
1900 to 1915
TIMERS:
TMR<add> space #<time> (0.1sec)
TMH<add> space #<time> (0.01sec)
TMS<add> space #<time> (0.001sec)
COUNTERS:
Up counter: C<add> space #<number of count>space<internal bit>
Up/Dwn counter: C<add>space#<number of count>
PROCEDURE FOR PROGRAMMING:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
1. Edit command/Lable
2. Edit line command
3. Show/Hide command
4. Jump to specified line/step
5. Find
6. Replace operand
7. Usage information
8. Edit list
9. compail
10. Show compilation error
11. Transfer to PLC
12. Read from PLC
13. Plc monitor
14. Simulator
15. Display mode
16. Description of operation
1 2 3 4 5 6 7 8 9 10
1. N.O. contact OR input
2. NC contact OR input
3. NO contact input
4. NC contact input
5. Output coil
6. NC output coil
7. Input vertical connection line
8. Delete vertical connection line
9. Input Horizontal connection line
10. Delete Horizontal connection line
BASIC PROGRAMMES:
--| |-- NORMALY OPEN CONTACT
--| / |-- NORMALY CLOSED CONTACT
--( )-- COIL
EX: 1
When the switch (SW) is ON, the LOAD should ON (Rung 0001)
When the switch (SW) is OFF, the LOAD should ON (Rung 0002
Note: The all programming sequence should complete with ‘END’ AND ‘ENDH’.
LADDER LOGICS FOR DIGITAL GATES:
OR :
I1 I2 L
0 0 0
0 1 1
1 0 1
1 1 1
AND:
I1 I2 L
0 0 0
0 1 0
1 0 0
1 1 1
NOR:
I1 I2 L
0 0 1
0 1 0
1 0 0
1 1 0
NAND:
I1 I2 L
0 0 1
0 1 1
1 0 1
1 1 0
EX-OR: EX-NOR:
I1 I2 L
0 0 1
0 1 1
1 0 1
1 1 0
SWITCH CONTACTS:
EX 1: SW1= 0000, SW2= 0001, LD1 = 500, LD2 = 501
SW1 SW2 LD1 LD2
1 0 1 0
1 1 0 1
EX 2:
SW1 SW2 SW3 LD1 LD2 LD3
0 1 1 1 0 0
1 0 0 0 1 0
1 1 1 0 0 1
I1 I2 L
0 0 1
0 1 1
1 0 1
1 1 0
Automation21

More Related Content

What's hot

PLC, DCS and PLC vs DCS Presentation by Jitender Singh Shekhawat
PLC, DCS and PLC vs DCS Presentation by Jitender Singh ShekhawatPLC, DCS and PLC vs DCS Presentation by Jitender Singh Shekhawat
PLC, DCS and PLC vs DCS Presentation by Jitender Singh ShekhawatJitender Singh Shekhawat
 
Plc and scada presentation
Plc and scada presentationPlc and scada presentation
Plc and scada presentationVikasKumar1628
 
Programmable Logic Controller
Programmable Logic ControllerProgrammable Logic Controller
Programmable Logic ControllerHimshekhar Das
 
INDUSTRIAL AUTOMATION USING PLC
INDUSTRIAL AUTOMATION USING PLCINDUSTRIAL AUTOMATION USING PLC
INDUSTRIAL AUTOMATION USING PLCMehvish Mushtaq
 
Rajkumar333
Rajkumar333Rajkumar333
Rajkumar333Raj D
 
Automated packaging machine using plc
Automated packaging machine using plcAutomated packaging machine using plc
Automated packaging machine using plcrajabco
 
43542179 programmable-logic-controller-plc-ppt
43542179 programmable-logic-controller-plc-ppt43542179 programmable-logic-controller-plc-ppt
43542179 programmable-logic-controller-plc-pptParbat Rajpurohit
 
Basic plc-programming-e book_Reliance High Tech Ltd
Basic plc-programming-e book_Reliance High Tech LtdBasic plc-programming-e book_Reliance High Tech Ltd
Basic plc-programming-e book_Reliance High Tech LtdMarsus Marsus
 
Plc 8 raja presentation plc
Plc 8  raja presentation  plcPlc 8  raja presentation  plc
Plc 8 raja presentation plcRameez Raja
 
PLC lecture by raj nayak
PLC lecture by raj nayakPLC lecture by raj nayak
PLC lecture by raj nayakRaj Nayak
 
PLC (Programmable Logic Controller) S.M.54
PLC (Programmable Logic Controller) S.M.54PLC (Programmable Logic Controller) S.M.54
PLC (Programmable Logic Controller) S.M.54Subhash Mahla
 
Programmable logic controller (PLC)
Programmable logic controller (PLC)Programmable logic controller (PLC)
Programmable logic controller (PLC)Manthan Chavda
 
Basics of Automation, PLC and SCADA
Basics of Automation, PLC and SCADABasics of Automation, PLC and SCADA
Basics of Automation, PLC and SCADAIndira Kundu
 
PLC programming example - Paint Spray
PLC programming example - Paint SprayPLC programming example - Paint Spray
PLC programming example - Paint SprayACC Automation
 

What's hot (20)

Industrial automation
Industrial automationIndustrial automation
Industrial automation
 
PLC, DCS and PLC vs DCS Presentation by Jitender Singh Shekhawat
PLC, DCS and PLC vs DCS Presentation by Jitender Singh ShekhawatPLC, DCS and PLC vs DCS Presentation by Jitender Singh Shekhawat
PLC, DCS and PLC vs DCS Presentation by Jitender Singh Shekhawat
 
Plc and scada presentation
Plc and scada presentationPlc and scada presentation
Plc and scada presentation
 
Programmable Logic Controller
Programmable Logic ControllerProgrammable Logic Controller
Programmable Logic Controller
 
Introduction to PLC
Introduction to PLCIntroduction to PLC
Introduction to PLC
 
INDUSTRIAL AUTOMATION USING PLC
INDUSTRIAL AUTOMATION USING PLCINDUSTRIAL AUTOMATION USING PLC
INDUSTRIAL AUTOMATION USING PLC
 
PLC General
PLC   GeneralPLC   General
PLC General
 
Rajkumar333
Rajkumar333Rajkumar333
Rajkumar333
 
Automated packaging machine using plc
Automated packaging machine using plcAutomated packaging machine using plc
Automated packaging machine using plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
43542179 programmable-logic-controller-plc-ppt
43542179 programmable-logic-controller-plc-ppt43542179 programmable-logic-controller-plc-ppt
43542179 programmable-logic-controller-plc-ppt
 
PLC SCADA
PLC SCADAPLC SCADA
PLC SCADA
 
Vt training plc_1
Vt training plc_1Vt training plc_1
Vt training plc_1
 
Basic plc-programming-e book_Reliance High Tech Ltd
Basic plc-programming-e book_Reliance High Tech LtdBasic plc-programming-e book_Reliance High Tech Ltd
Basic plc-programming-e book_Reliance High Tech Ltd
 
Plc 8 raja presentation plc
Plc 8  raja presentation  plcPlc 8  raja presentation  plc
Plc 8 raja presentation plc
 
PLC lecture by raj nayak
PLC lecture by raj nayakPLC lecture by raj nayak
PLC lecture by raj nayak
 
PLC (Programmable Logic Controller) S.M.54
PLC (Programmable Logic Controller) S.M.54PLC (Programmable Logic Controller) S.M.54
PLC (Programmable Logic Controller) S.M.54
 
Programmable logic controller (PLC)
Programmable logic controller (PLC)Programmable logic controller (PLC)
Programmable logic controller (PLC)
 
Basics of Automation, PLC and SCADA
Basics of Automation, PLC and SCADABasics of Automation, PLC and SCADA
Basics of Automation, PLC and SCADA
 
PLC programming example - Paint Spray
PLC programming example - Paint SprayPLC programming example - Paint Spray
PLC programming example - Paint Spray
 

Viewers also liked

Notre catalogue 2012-2013
Notre catalogue   2012-2013Notre catalogue   2012-2013
Notre catalogue 2012-2013Julien Voyez
 
Signo lingüistico
Signo lingüisticoSigno lingüistico
Signo lingüisticoLinda Díaz
 
Twitter un outil de communication politique et professionnelle sandrine pa...
Twitter un outil de communication politique et professionnelle    sandrine pa...Twitter un outil de communication politique et professionnelle    sandrine pa...
Twitter un outil de communication politique et professionnelle sandrine pa...Alban Jarry
 
Onopia - Etude du Business Model de Recommerce
Onopia - Etude du Business Model de RecommerceOnopia - Etude du Business Model de Recommerce
Onopia - Etude du Business Model de RecommerceOnopia
 
Enquête de satisfaction des ateliers de LACT
Enquête de satisfaction des ateliers de LACTEnquête de satisfaction des ateliers de LACT
Enquête de satisfaction des ateliers de LACTLACT
 
Web2business fintech vs banques age d or pour les clients des services finan...
Web2business fintech vs banques  age d or pour les clients des services finan...Web2business fintech vs banques  age d or pour les clients des services finan...
Web2business fintech vs banques age d or pour les clients des services finan...Alban Jarry
 
Random Decision Forests at Scale
Random Decision Forests at ScaleRandom Decision Forests at Scale
Random Decision Forests at ScaleCloudera, Inc.
 
Strategies de marques sur les reseaux sociaux miser sur la force collective
Strategies de marques sur les reseaux sociaux  miser sur la force collectiveStrategies de marques sur les reseaux sociaux  miser sur la force collective
Strategies de marques sur les reseaux sociaux miser sur la force collectiveAlban Jarry
 
Fiches pratiques Processus projet découverte
Fiches pratiques Processus projet découverteFiches pratiques Processus projet découverte
Fiches pratiques Processus projet découverteSylvain Loubradou
 
#I4emploi : 5 mois resumes en une infographie
#I4emploi :  5 mois resumes en une infographie#I4emploi :  5 mois resumes en une infographie
#I4emploi : 5 mois resumes en une infographieAlban Jarry
 
Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5
Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5
Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5Cloudera, Inc.
 
Strategies de marques et communication sur les reseaux sociaux
Strategies de marques et communication sur les reseaux sociauxStrategies de marques et communication sur les reseaux sociaux
Strategies de marques et communication sur les reseaux sociauxAlban Jarry
 

Viewers also liked (15)

Notre catalogue 2012-2013
Notre catalogue   2012-2013Notre catalogue   2012-2013
Notre catalogue 2012-2013
 
Signo lingüistico
Signo lingüisticoSigno lingüistico
Signo lingüistico
 
Twitter un outil de communication politique et professionnelle sandrine pa...
Twitter un outil de communication politique et professionnelle    sandrine pa...Twitter un outil de communication politique et professionnelle    sandrine pa...
Twitter un outil de communication politique et professionnelle sandrine pa...
 
Onopia - Etude du Business Model de Recommerce
Onopia - Etude du Business Model de RecommerceOnopia - Etude du Business Model de Recommerce
Onopia - Etude du Business Model de Recommerce
 
Enquête de satisfaction des ateliers de LACT
Enquête de satisfaction des ateliers de LACTEnquête de satisfaction des ateliers de LACT
Enquête de satisfaction des ateliers de LACT
 
Blockchain Jean-Antoine Moreau
Blockchain   Jean-Antoine MoreauBlockchain   Jean-Antoine Moreau
Blockchain Jean-Antoine Moreau
 
Web2business fintech vs banques age d or pour les clients des services finan...
Web2business fintech vs banques  age d or pour les clients des services finan...Web2business fintech vs banques  age d or pour les clients des services finan...
Web2business fintech vs banques age d or pour les clients des services finan...
 
Resume_ARIE HIDAYATI_SNR HVAC ENGINEER
Resume_ARIE HIDAYATI_SNR HVAC ENGINEERResume_ARIE HIDAYATI_SNR HVAC ENGINEER
Resume_ARIE HIDAYATI_SNR HVAC ENGINEER
 
CV_HVAC_ENGINEER
CV_HVAC_ENGINEERCV_HVAC_ENGINEER
CV_HVAC_ENGINEER
 
Random Decision Forests at Scale
Random Decision Forests at ScaleRandom Decision Forests at Scale
Random Decision Forests at Scale
 
Strategies de marques sur les reseaux sociaux miser sur la force collective
Strategies de marques sur les reseaux sociaux  miser sur la force collectiveStrategies de marques sur les reseaux sociaux  miser sur la force collective
Strategies de marques sur les reseaux sociaux miser sur la force collective
 
Fiches pratiques Processus projet découverte
Fiches pratiques Processus projet découverteFiches pratiques Processus projet découverte
Fiches pratiques Processus projet découverte
 
#I4emploi : 5 mois resumes en une infographie
#I4emploi :  5 mois resumes en une infographie#I4emploi :  5 mois resumes en une infographie
#I4emploi : 5 mois resumes en une infographie
 
Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5
Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5
Hive, Impala, and Spark, Oh My: SQL-on-Hadoop in Cloudera 5.5
 
Strategies de marques et communication sur les reseaux sociaux
Strategies de marques et communication sur les reseaux sociauxStrategies de marques et communication sur les reseaux sociaux
Strategies de marques et communication sur les reseaux sociaux
 

Similar to Automation21

Similar to Automation21 (20)

documentation (1)
documentation (1)documentation (1)
documentation (1)
 
Basic plc
Basic plcBasic plc
Basic plc
 
Ipc presentation
Ipc presentationIpc presentation
Ipc presentation
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic plc
Basic plcBasic plc
Basic plc
 
Basic PLC.ppt
Basic PLC.pptBasic PLC.ppt
Basic PLC.ppt
 
Programmable Logic Controller Training Day 1 to 3.pptx
Programmable Logic Controller  Training Day 1 to 3.pptxProgrammable Logic Controller  Training Day 1 to 3.pptx
Programmable Logic Controller Training Day 1 to 3.pptx
 
Industrial automation
Industrial automation Industrial automation
Industrial automation
 
Industrial Automation Using PLC
Industrial Automation Using PLCIndustrial Automation Using PLC
Industrial Automation Using PLC
 
Basic plc 1
Basic plc 1Basic plc 1
Basic plc 1
 
What Is a Programmable Logic Controller (PLC)
What Is a Programmable Logic Controller (PLC)What Is a Programmable Logic Controller (PLC)
What Is a Programmable Logic Controller (PLC)
 
Presentaton on Plc & Scada
Presentaton on Plc & ScadaPresentaton on Plc & Scada
Presentaton on Plc & Scada
 
Training Report on PLC & SCADA
Training Report on PLC & SCADATraining Report on PLC & SCADA
Training Report on PLC & SCADA
 
Automation.pdf
Automation.pdfAutomation.pdf
Automation.pdf
 

Recently uploaded

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 

Recently uploaded (20)

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 

Automation21

  • 1. AUTOMATION: Automation is the use of control systems such as computers to control industrial machinery and processes, replacing human operators. In the scope of industrialization, it is a step beyond mechanization. Whereas mechanization provided human operators with machinery to assist them with the physical requirements of work, automation greatly reduces the need for human sensory and mental requirements as well. ADVANTAGES OF AUTOMATION: The purpose of automation has shifted from increasing productivity and reducing costs, to broader issues, such as increasing quality and flexibility in the manufacturing process. Automation is now often applied primarily to increase quality in the manufacturing process, where automation can increase quality substantially. For example, automobile and truck pistons used to be installed into engines manually. This is rapidly being transitioned to automated machine installation, because the error rate for manual installment was around 1-1.5%, but has been reduced to 0.00001% with automation. Hazardous operations, such as oil refining, the manufacturing of industrial chemicals, and all forms of metal working, were always early contenders for automation. Application of Automation Power generation
  • 5. HARDWIRED CONTROL: Prior to PLCs, many of these control tasks were solved with contactor or relay controls. This is often referred to as hard-wired control. Circuit diagrams had to be designed, electrical components specified and installed, and wiring lists created. Electricians would then wire the components necessary to perform a specific task. If an error was made the wires had to be reconnected correctly. A change in function or system expansion required extensive component changes and rewiring. DRAWBACKS: Bulky and complex wiring. Difficult to change the logic. Unreliable. RELAY : RELAY LOGIC – AND GATE:
  • 6. ELECTRONICS CONTROL Logic gates and Electronic Circuits are used Ease of programming Ease of maintenance Drawbacks: Difficult to Troubleshoot while Change the Logic of the Process Difficult to expand Not suitable for industrial conditions PROGRAMMABLE LOGICAL CONTORL What is a Programmable Logic Controller PLC? PLC is a device, which is used to control a machine or process as per the human control sequence. A PLC monitors inputs, makes decisions based on its program, and controls outputs to automate a process or machine. Advantages • Smaller physical size than hard-wire solutions • Easier and faster to make changes • PLCs have integrated diagnostics and override functions • Diagnostics are centrally available • Applications can be immediately documented • Applications can be duplicated faster and less expensively
  • 7.
  • 8. PROCESSOR MEMORY ORGANIZATION The memory of a PLC is organized by types. The memory space can be divided into two broad categories: Program and Data Memory: Advanced ladder logic functins allow controllers to perform calculatins, make decisions and do other complex tasks. Timers and counters are examples of ladder logic functions. They are more comples than basic inputs contacts and output coils and relay heavily upon data stored in the memory of the PLC. PROGRAM FILES: The user program will account for most of the memory of a PLC system. Program files contain the logic controlling machine operation. This logic consistes of instructions that are programmed in a ladder logic format. DATA FILES: The data file protion of memory stores input and output status, processor status, the status of various bits and numerical data.
  • 9. INPUT TABLE FILE OPERATION: Processor continually reads current input status and updates input image table file. OUTPUT TABLE FILE OPERATION: Processor continually activates or deactivates ouput status according to output image table file status
  • 10. PROGRAM SCAN: During each operating cycle, the processor reads all inputs, takes these values, and energizes or de-energizes the outputs according to the user program. This process is known as a scan. Because the inputs can change at any time, the PLC must carry on this process continuously. 1. I/O scan – records status data of input devices. Energizes output devices that have their associated status bits set to ON (1) 2. Program scan – instruction are executed sequentially. SCAN PROCESS: The scan time indicates how fast the controller can react to changes in inputs. Scan times vary with computer model and program content, and length. If a controller has to react to an input signal that changes states twice during the scan time, it is possible that the PLC will never be able to detect this change.
  • 11.
  • 12. When the inputs is closed, the input module senses a voltage and an ON condition (1) is entered into the input table bit ‘0012’. During the program scan the processor sets instructins ‘0012’ and ‘506’ to ON(1). The processor turns light output ‘506’ ON during the next I/O scan.
  • 13. KEYENCE ADDRESS: INPUTS: 0000 to 0015 0100 to 0115 0200 to 0215 0300 to 0315 0400 to 0415 OUTPUTS: 0500 to 0515 0600 to 0615 0700 to 0715 0800 to 0815 0900 to 0915 INTERNAL MEMORY BIT: 1000 to 1015 Upto 1900 to 1915 TIMERS: TMR<add> space #<time> (0.1sec) TMH<add> space #<time> (0.01sec)
  • 14. TMS<add> space #<time> (0.001sec) COUNTERS: Up counter: C<add> space #<number of count>space<internal bit> Up/Dwn counter: C<add>space#<number of count> PROCEDURE FOR PROGRAMMING:
  • 15. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1. Edit command/Lable 2. Edit line command 3. Show/Hide command 4. Jump to specified line/step 5. Find 6. Replace operand 7. Usage information 8. Edit list 9. compail 10. Show compilation error 11. Transfer to PLC
  • 16. 12. Read from PLC 13. Plc monitor 14. Simulator 15. Display mode 16. Description of operation 1 2 3 4 5 6 7 8 9 10 1. N.O. contact OR input 2. NC contact OR input 3. NO contact input 4. NC contact input 5. Output coil 6. NC output coil 7. Input vertical connection line 8. Delete vertical connection line 9. Input Horizontal connection line 10. Delete Horizontal connection line BASIC PROGRAMMES: --| |-- NORMALY OPEN CONTACT --| / |-- NORMALY CLOSED CONTACT --( )-- COIL EX: 1 When the switch (SW) is ON, the LOAD should ON (Rung 0001) When the switch (SW) is OFF, the LOAD should ON (Rung 0002
  • 17. Note: The all programming sequence should complete with ‘END’ AND ‘ENDH’. LADDER LOGICS FOR DIGITAL GATES: OR : I1 I2 L 0 0 0 0 1 1 1 0 1 1 1 1 AND: I1 I2 L 0 0 0 0 1 0 1 0 0 1 1 1
  • 18. NOR: I1 I2 L 0 0 1 0 1 0 1 0 0 1 1 0 NAND: I1 I2 L 0 0 1 0 1 1 1 0 1 1 1 0 EX-OR: EX-NOR: I1 I2 L 0 0 1 0 1 1 1 0 1 1 1 0
  • 19. SWITCH CONTACTS: EX 1: SW1= 0000, SW2= 0001, LD1 = 500, LD2 = 501 SW1 SW2 LD1 LD2 1 0 1 0 1 1 0 1 EX 2: SW1 SW2 SW3 LD1 LD2 LD3 0 1 1 1 0 0 1 0 0 0 1 0 1 1 1 0 0 1 I1 I2 L 0 0 1 0 1 1 1 0 1 1 1 0