SlideShare a Scribd company logo
1 of 24
Presentation of Main Project on
UNDERGROUND CABLE FAULT
LOCATION USING ARDUINO,GSM & GPS
1
CONTENT
Project overview
Circuit Diagram
Hardware Requirement:
Arduino UNO.
Power supply.
GSM & GPS
LCD.
Serial communication.
Relay.
Software requirements:
Source Code .
Schematic & Working of the project.
Advantages & Applications.
Conclusion & Acknowledgement.
Project Overview
The project uses the simple concept of OHMs law where a low DC
voltage is applied at the feeder end through a series resistor.
The current would vary depending upon the length of fault of the
cable in case there is a short circuit of LL or 3L or LG etc.
The series resistor voltage drop changes accordingly which is then
fed to analog input of programmed microcontroller would display
the same in Kilo meters.
The project is assembled with a set of resistors representing cable
length in KMs and fault creation is made by a set of switches at
every known KM to cross check the accuracy of the same.
Respectively detect the fault & send sms to mobile with GPS
Location.
HARDWARE REQUIREMENTS:
8051 series Microcontroller, LCD,
Crystal, ADC, Relays, Relay Driver
IC, Transformer, Diodes, Voltage
Regulator, Resistors, Capacitors, LEDs,
slide switches.
SOFTWARE REQUIREMENTS:
Keil Compiler
Language: Embedded C or
Assembly.
 It is a microcontroller board based on the ATmega328P (datasheet).
 It has 14 digital input/output pins (of which 6 can be used as PWM
outputs), 6 analog inputs, a 16 MHz quartz crystal, a USB connection, a
power jack, an ICSP header and a reset button.
It contains everything needed to support the microcontroller;connect
it to a computer with a USB cable or power it with a AC-to-DC battery to
get started..
Image of development board
Contd…..
The Arduino programming language is a simplified version
of C/C++. If you know C, programming the Arduino will be
familiar.
If you do not know C, no need to worry as only a few
commands are needed to perform useful functions.
ATMEGA328P
High Performance, Low Power Atmel®AVR® 8-Bit Microcontroller
Family
• Advanced RISC Architecture – 131 Powerful Instructions – Most
Single Clock Cycle Execution – 32 x 8 General Purpose Working
Registers – Fully Static Operation – Up to 20 MIPS Throughput at
20MHz – On-chip 2-cycle Multiplier
• High Endurance Non-volatile Memory Segments – 32KBytes of In-
System Self-Programmable Flash program Memory – 1KBytes EEPROM
– 2KBytes Internal SRAM – Write/Erase Cycles: 10,000 Flash/100,000
EEPROM – Data Retention: 20 years at 85°C/100 years at 25°C(1) –
Optional Boot Code Section with Independent Lock Bits
• In-System Programming by On-chip Boot Program
• True Read-While-Write Operation – Programming Lock for Software
Security
Memory
The ATmega328 has 32 KB (with 0.5 KB occupied by the
bootloader).
It also has 2 KB of SRAM and 1 KB of EEPROM (which can be read and
written withthe EEPROM library)
ULN2003
ULN is mainly suited for interfacing between low-level circuits and
multiple peripheral power loads.
The series ULN20XX high voltage, high current darlington arrays
feature continuous load current rating.
A Darlington pair is two transistors that act as a single transistor but
with a much higher current gain.
Power supply
All digital circuits require regulated power supply
The 230V AC supply is first stepped down to 12V AC using a
step down transformer.
This is then converted to DC using bridge rectifier.
The AC ripples is filtered out by using a capacitor and given
to the input pin of voltage regulator 7805.
At output pin of this regulator we get a constant 5V DC
which is used for MC and other ICs in this project.
A relay is an electrically operated switch.
Current flowing through the coil of the relay creates a
magnetic field which attracts a lever and changes the switch
contacts.
The coil current can be on or off so relays have two switch
positions and have double throw (changeover) switch
contacts as shown in the diagram.
Relay
Liquid crystal display (LCD)
 Most common LCDs connected to the microcontrollers are 16x2 and 20x2
displays.
 This means 16 characters per line by 2 lines and 20 characters per line by 2
lines, respectively.
 The standard is referred to as HD44780U, which refers to the controller chip
which receives data from an external source (and communicates directly with
the LCD.
Pin Symbol Function
1 Vss Ground
2 Vdd Supply Voltage
3 Vo Contrast Setting
4 RS Register Select
5 R/W Read/Write Select
6 En
Chip Enable
Signal
7-14 DB0-DB7 Data Lines
15 A/Vee
Gnd for the
backlight
16 K Vcc for backlight
Contd..
 If an 8-bit data bus is used the LCD will require 11
data lines(3 control lines plus the 8 lines for the
data bus)
 The three control lines are referred to as EN, RS,
and RW
 EN=Enable (used to tell the LCD that you are
sending it data)
 RS=Register Select. When RS=0; data is treated as a
command & When RS=1; data being sent is text
data.
 R/W=Read/Write . When RW=0; the data written
to the LCD & When RW=0; the data reading to the
LCD.
GSM (Global System for Mobile communication) is a digital mobile
telephone system that is widely used in many parts of the world.
 GSM uses a variation of Time Division Multiple Access (TDMA) and
is the most widely used of the three digital wireless telephone
technologies (TDMA, GSM, and CDMA).
 GSM operates in the 900MHz, 1800MHz, or 1900 MHz frequency
bands.
GSM has been the backbone of the phenomenal success in mobile
telecoms over the last decade.
GSM
LS2302L is a GPS receiver (also known as GPS mouse) with 8-
megabyte flash memory for GPS data logger.
 It can record up to 260,096 data points in a circular or FIFO format.
 At the same time, it also outputs real time GPS NMEA data for
navigation.
NMEA record Description
GGA Global positioning system fixed data
GLL Geographic position - latitude/longitude
GSA GNSS DOP and active satellites
GSV GNSS satellites in view
RMC Recommended minimum specific GNSS data
VTG Course over ground and ground speed
GPS MODULE
The Global Positioning System (GPS) is a satellite-based navigation
system made up of a network of 24 satellites placed into orbit by the
U.S. Department of Defense.
Serial Communication
 When a processor communicates with the outside world, it provides data in
byte sized chunks. Computers transfer data in two ways: parallel and serial.
 In parallel data transfers, often more lines are used to transfer data to a device and 8
bit data path is expensive.
 The serial communication transfer uses only a single data line instead of the 8 bit
data line of parallel communication which makes the data transfer not only cheaper but
also makes it possible for two computers located in two different cities to communicate
over telephone.
 Serial data communication uses two methods, asynchronous and synchronous.
Software Required
Keil an ARM Company makes C compilers, macro assemblers,
debuggers, simulators, integrated environments, and emulators for
ARM7/ARM9/Cortex-M3, and 8051 MCU families.
Compilers are programs used to convert a High Level Language to
object code.
Desktop compilers produce an output object code for the underlying
microprocessor, but not for other microprocessors.
http://arduino.cc/en/Guide/HomePage.
Contd..
 i.e., the programs written in one of the HLL like ‘C’ will compile
the code to run on the system for a particular processor like x86
(underlying microprocessor in the computer).
 For example compilers for Dos platform is different from the
Compilers for Unix platform So if one wants to define a compiler
then compiler is a program that translates source code into
object code.
Working of project
The project uses a set of resistances in series i.e. R1
,R2,&R3 as shown in the circuit diagram, one set for
each phase.
Each series resistors represents the resistance of the
underground cable for a specific distance thus 4
such resistances in series represent 1-3kms.
3 relays are used to common point of their contacts
are grounded.
Indicate the fault location on LCD screen& send the
messege to the mobile with GPS
ADVANTAGES:
1.THE MAIN USE THIS PROJECT IS CABLE FAULT DETCTING
UNDER GROUNDS.
2.LOW COST.
3.LESS COMPLEXITY.
4.LONG DISTANCE APPLICATIONS.
APPLICATIONS:
1.INDUSTRIAL APPLICATIONS
2.GROUND CABLE FAULT DETECTION APPLCIATIONS
3.ELECTRICAL CABLE FAULT DETCTION APPLICATIONS
CONCLUSION
The project “UNDERGROUND CABLE FAULT
DETECTION USING GSM AND GPS ” has been
successfully designed and tested. Integrating
features of all the hardware components used have
developed it. Presence of every module has been
reasoned out and placed carefully thus contributing
to the best working of the unit. Secondly, using
highly advanced IC’s and with the help of growing
technology the project has been successfully
implemented.
Acknowlegement
MOHAMMED ABDUL SOHAIL
{EEE}(160713734005).
SYED AMER {EEE}(160713734021).
MOHAMMED AMER KHAN
{EEE}(160713734015).
ANY ………….?

More Related Content

What's hot

New project report
New project reportNew project report
New project report
Sai Printers
 
Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...
Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...
Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...
ijtsrd
 
Transformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technologyTransformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technology
Kartik Patel
 
automatic street light
automatic street lightautomatic street light
automatic street light
Anish Anand
 
Report On Industrial Tour At Khulshi Grid Sub-Station
Report On Industrial Tour At Khulshi Grid Sub-StationReport On Industrial Tour At Khulshi Grid Sub-Station
Report On Industrial Tour At Khulshi Grid Sub-Station
Ekram Bin Mamun
 

What's hot (20)

Thesis power theft detection ch 1
Thesis power theft detection ch 1Thesis power theft detection ch 1
Thesis power theft detection ch 1
 
Multilevel inverter technology
Multilevel inverter technologyMultilevel inverter technology
Multilevel inverter technology
 
Hvdc transmission seminar
Hvdc transmission seminar Hvdc transmission seminar
Hvdc transmission seminar
 
Latest Electrical Mini Projects For EEE Students
Latest Electrical Mini Projects For EEE StudentsLatest Electrical Mini Projects For EEE Students
Latest Electrical Mini Projects For EEE Students
 
presentation on POWER THEFT IDENTIFICATION SYSTEM
presentation on POWER THEFT IDENTIFICATION SYSTEMpresentation on POWER THEFT IDENTIFICATION SYSTEM
presentation on POWER THEFT IDENTIFICATION SYSTEM
 
Wk102 ppt 1-
Wk102 ppt  1-Wk102 ppt  1-
Wk102 ppt 1-
 
New project report
New project reportNew project report
New project report
 
Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...
Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...
Design and Detection of Underground Cable Fault Using Raspberry Pi and IoT Sy...
 
Automatic meter reading
Automatic meter readingAutomatic meter reading
Automatic meter reading
 
Electrical Projects
Electrical ProjectsElectrical Projects
Electrical Projects
 
Transformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technologyTransformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technology
 
Relays
RelaysRelays
Relays
 
Training report on substation presentation
Training report on substation presentationTraining report on substation presentation
Training report on substation presentation
 
3 phase Transmission Line fault detector edit 1-3.pptx
3 phase Transmission Line fault detector edit 1-3.pptx3 phase Transmission Line fault detector edit 1-3.pptx
3 phase Transmission Line fault detector edit 1-3.pptx
 
INDUSTRIAL TRAINING PRESENTATION OF 132/33Kv, 130MVA WANPOH GRID ANANTNAG
INDUSTRIAL TRAINING PRESENTATION OF 132/33Kv, 130MVA WANPOH GRID ANANTNAG  INDUSTRIAL TRAINING PRESENTATION OF 132/33Kv, 130MVA WANPOH GRID ANANTNAG
INDUSTRIAL TRAINING PRESENTATION OF 132/33Kv, 130MVA WANPOH GRID ANANTNAG
 
automatic street light
automatic street lightautomatic street light
automatic street light
 
132 33kv substation
132 33kv substation132 33kv substation
132 33kv substation
 
Gsm based transformer fault detection system
Gsm based transformer fault detection systemGsm based transformer fault detection system
Gsm based transformer fault detection system
 
Power Theft Detection
Power Theft DetectionPower Theft Detection
Power Theft Detection
 
Report On Industrial Tour At Khulshi Grid Sub-Station
Report On Industrial Tour At Khulshi Grid Sub-StationReport On Industrial Tour At Khulshi Grid Sub-Station
Report On Industrial Tour At Khulshi Grid Sub-Station
 

Viewers also liked

final year project report
final year project reportfinal year project report
final year project report
Anuj Kumar
 
Iot report federal trade commission_150127iotrpt
Iot report federal trade commission_150127iotrptIot report federal trade commission_150127iotrpt
Iot report federal trade commission_150127iotrpt
Market Engel SAS
 
Wireless Power Transmission
Wireless Power TransmissionWireless Power Transmission
Wireless Power Transmission
Rubima Jindal
 
Wireless Solar Vehicle With Robotic Arm.ppt
Wireless Solar Vehicle With Robotic Arm.pptWireless Solar Vehicle With Robotic Arm.ppt
Wireless Solar Vehicle With Robotic Arm.ppt
Er Sachin Bhati
 
Arduino 2 Final Report (final)
Arduino 2 Final Report (final)Arduino 2 Final Report (final)
Arduino 2 Final Report (final)
Mohammad Molani
 
Electricity Overview
Electricity OverviewElectricity Overview
Electricity Overview
Parthosb
 
Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...
Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...
Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...
Lewis Larsen
 

Viewers also liked (20)

Cable Fault Location
Cable Fault LocationCable Fault Location
Cable Fault Location
 
Under ground cables presention
Under ground cables presentionUnder ground cables presention
Under ground cables presention
 
Digital underground cable fault locator (dufcl).
Digital underground cable fault locator (dufcl).Digital underground cable fault locator (dufcl).
Digital underground cable fault locator (dufcl).
 
final year project report
final year project reportfinal year project report
final year project report
 
hvdc transimission line
hvdc transimission linehvdc transimission line
hvdc transimission line
 
Underground cables
Underground cablesUnderground cables
Underground cables
 
Underground cables
Underground cablesUnderground cables
Underground cables
 
Substation overview
Substation overviewSubstation overview
Substation overview
 
Iot report federal trade commission_150127iotrpt
Iot report federal trade commission_150127iotrptIot report federal trade commission_150127iotrpt
Iot report federal trade commission_150127iotrpt
 
Nuclearbattery
NuclearbatteryNuclearbattery
Nuclearbattery
 
Wireless Power Transmission
Wireless Power TransmissionWireless Power Transmission
Wireless Power Transmission
 
WIRELESS POWER TRANSMISSION
WIRELESS POWER TRANSMISSIONWIRELESS POWER TRANSMISSION
WIRELESS POWER TRANSMISSION
 
Wireless Solar Vehicle With Robotic Arm.ppt
Wireless Solar Vehicle With Robotic Arm.pptWireless Solar Vehicle With Robotic Arm.ppt
Wireless Solar Vehicle With Robotic Arm.ppt
 
Arduino 2 Final Report (final)
Arduino 2 Final Report (final)Arduino 2 Final Report (final)
Arduino 2 Final Report (final)
 
Electricity Overview
Electricity OverviewElectricity Overview
Electricity Overview
 
Wireless power transmission
Wireless power transmissionWireless power transmission
Wireless power transmission
 
Detection and Location of Faults in 11KV Underground Cable by using Continuou...
Detection and Location of Faults in 11KV Underground Cable by using Continuou...Detection and Location of Faults in 11KV Underground Cable by using Continuou...
Detection and Location of Faults in 11KV Underground Cable by using Continuou...
 
Underground cables
Underground cablesUnderground cables
Underground cables
 
Theory of HVDC transmission
Theory of HVDC transmission Theory of HVDC transmission
Theory of HVDC transmission
 
Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...
Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...
Lattice Energy LLC- Electronic Cigarette Explodes- Burns Child Sitting in Car...
 

Similar to underground cable fault location using aruino,gsm&gps

Smart LED Notice Board
Smart LED Notice BoardSmart LED Notice Board
Smart LED Notice Board
swarnimmaurya
 
REPORT texto braillefinal
REPORT texto braillefinalREPORT texto braillefinal
REPORT texto braillefinal
ASWATHI K
 

Similar to underground cable fault location using aruino,gsm&gps (20)

prepaid energy meter using smartcard
prepaid energy meter using smartcardprepaid energy meter using smartcard
prepaid energy meter using smartcard
 
Smart LED Notice Board
Smart LED Notice BoardSmart LED Notice Board
Smart LED Notice Board
 
Assignment
AssignmentAssignment
Assignment
 
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECT
 
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering project
 
Gsm based energy meter reading system and load control
Gsm based energy meter reading system and load controlGsm based energy meter reading system and load control
Gsm based energy meter reading system and load control
 
Ppt
PptPpt
Ppt
 
GSM BASED PREPAID ENERGY METER BILLING VIA SMS
GSM BASED PREPAID ENERGY METER BILLING VIA SMSGSM BASED PREPAID ENERGY METER BILLING VIA SMS
GSM BASED PREPAID ENERGY METER BILLING VIA SMS
 
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCYAUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
 
File 1389427052
File 1389427052File 1389427052
File 1389427052
 
Dp31778783
Dp31778783Dp31778783
Dp31778783
 
Wireless energy meter monitoring with automated tariff calculation
Wireless energy meter monitoring with automated tariff calculationWireless energy meter monitoring with automated tariff calculation
Wireless energy meter monitoring with automated tariff calculation
 
EMBEDDED PASSWORD BASED ACESS CONTROL SYSTEM USING I2C PROTOCOL
EMBEDDED PASSWORD BASED ACESS CONTROL  SYSTEM USING I2C PROTOCOLEMBEDDED PASSWORD BASED ACESS CONTROL  SYSTEM USING I2C PROTOCOL
EMBEDDED PASSWORD BASED ACESS CONTROL SYSTEM USING I2C PROTOCOL
 
under grund fault ppt (1).pptx
under grund fault ppt (1).pptxunder grund fault ppt (1).pptx
under grund fault ppt (1).pptx
 
23.pptx
23.pptx23.pptx
23.pptx
 
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...
 
Electronics Microcontrollers for IoT applications
Electronics Microcontrollers for IoT applicationsElectronics Microcontrollers for IoT applications
Electronics Microcontrollers for IoT applications
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontroller
 
REPORT texto braillefinal
REPORT texto braillefinalREPORT texto braillefinal
REPORT texto braillefinal
 
Divya
DivyaDivya
Divya
 

Recently uploaded

result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
Tonystark477637
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 

Recently uploaded (20)

result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
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
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 

underground cable fault location using aruino,gsm&gps

  • 1. Presentation of Main Project on UNDERGROUND CABLE FAULT LOCATION USING ARDUINO,GSM & GPS 1
  • 2. CONTENT Project overview Circuit Diagram Hardware Requirement: Arduino UNO. Power supply. GSM & GPS LCD. Serial communication. Relay. Software requirements: Source Code . Schematic & Working of the project. Advantages & Applications. Conclusion & Acknowledgement.
  • 3. Project Overview The project uses the simple concept of OHMs law where a low DC voltage is applied at the feeder end through a series resistor. The current would vary depending upon the length of fault of the cable in case there is a short circuit of LL or 3L or LG etc. The series resistor voltage drop changes accordingly which is then fed to analog input of programmed microcontroller would display the same in Kilo meters. The project is assembled with a set of resistors representing cable length in KMs and fault creation is made by a set of switches at every known KM to cross check the accuracy of the same. Respectively detect the fault & send sms to mobile with GPS Location.
  • 4. HARDWARE REQUIREMENTS: 8051 series Microcontroller, LCD, Crystal, ADC, Relays, Relay Driver IC, Transformer, Diodes, Voltage Regulator, Resistors, Capacitors, LEDs, slide switches. SOFTWARE REQUIREMENTS: Keil Compiler Language: Embedded C or Assembly.
  • 5.  It is a microcontroller board based on the ATmega328P (datasheet).  It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz quartz crystal, a USB connection, a power jack, an ICSP header and a reset button. It contains everything needed to support the microcontroller;connect it to a computer with a USB cable or power it with a AC-to-DC battery to get started.. Image of development board
  • 6. Contd….. The Arduino programming language is a simplified version of C/C++. If you know C, programming the Arduino will be familiar. If you do not know C, no need to worry as only a few commands are needed to perform useful functions.
  • 7. ATMEGA328P High Performance, Low Power Atmel®AVR® 8-Bit Microcontroller Family • Advanced RISC Architecture – 131 Powerful Instructions – Most Single Clock Cycle Execution – 32 x 8 General Purpose Working Registers – Fully Static Operation – Up to 20 MIPS Throughput at 20MHz – On-chip 2-cycle Multiplier • High Endurance Non-volatile Memory Segments – 32KBytes of In- System Self-Programmable Flash program Memory – 1KBytes EEPROM – 2KBytes Internal SRAM – Write/Erase Cycles: 10,000 Flash/100,000 EEPROM – Data Retention: 20 years at 85°C/100 years at 25°C(1) – Optional Boot Code Section with Independent Lock Bits • In-System Programming by On-chip Boot Program • True Read-While-Write Operation – Programming Lock for Software Security
  • 8. Memory The ATmega328 has 32 KB (with 0.5 KB occupied by the bootloader). It also has 2 KB of SRAM and 1 KB of EEPROM (which can be read and written withthe EEPROM library)
  • 9. ULN2003 ULN is mainly suited for interfacing between low-level circuits and multiple peripheral power loads. The series ULN20XX high voltage, high current darlington arrays feature continuous load current rating. A Darlington pair is two transistors that act as a single transistor but with a much higher current gain.
  • 10. Power supply All digital circuits require regulated power supply
  • 11. The 230V AC supply is first stepped down to 12V AC using a step down transformer. This is then converted to DC using bridge rectifier. The AC ripples is filtered out by using a capacitor and given to the input pin of voltage regulator 7805. At output pin of this regulator we get a constant 5V DC which is used for MC and other ICs in this project.
  • 12. A relay is an electrically operated switch. Current flowing through the coil of the relay creates a magnetic field which attracts a lever and changes the switch contacts. The coil current can be on or off so relays have two switch positions and have double throw (changeover) switch contacts as shown in the diagram. Relay
  • 13. Liquid crystal display (LCD)  Most common LCDs connected to the microcontrollers are 16x2 and 20x2 displays.  This means 16 characters per line by 2 lines and 20 characters per line by 2 lines, respectively.  The standard is referred to as HD44780U, which refers to the controller chip which receives data from an external source (and communicates directly with the LCD. Pin Symbol Function 1 Vss Ground 2 Vdd Supply Voltage 3 Vo Contrast Setting 4 RS Register Select 5 R/W Read/Write Select 6 En Chip Enable Signal 7-14 DB0-DB7 Data Lines 15 A/Vee Gnd for the backlight 16 K Vcc for backlight
  • 14. Contd..  If an 8-bit data bus is used the LCD will require 11 data lines(3 control lines plus the 8 lines for the data bus)  The three control lines are referred to as EN, RS, and RW  EN=Enable (used to tell the LCD that you are sending it data)  RS=Register Select. When RS=0; data is treated as a command & When RS=1; data being sent is text data.  R/W=Read/Write . When RW=0; the data written to the LCD & When RW=0; the data reading to the LCD.
  • 15. GSM (Global System for Mobile communication) is a digital mobile telephone system that is widely used in many parts of the world.  GSM uses a variation of Time Division Multiple Access (TDMA) and is the most widely used of the three digital wireless telephone technologies (TDMA, GSM, and CDMA).  GSM operates in the 900MHz, 1800MHz, or 1900 MHz frequency bands. GSM has been the backbone of the phenomenal success in mobile telecoms over the last decade. GSM
  • 16. LS2302L is a GPS receiver (also known as GPS mouse) with 8- megabyte flash memory for GPS data logger.  It can record up to 260,096 data points in a circular or FIFO format.  At the same time, it also outputs real time GPS NMEA data for navigation. NMEA record Description GGA Global positioning system fixed data GLL Geographic position - latitude/longitude GSA GNSS DOP and active satellites GSV GNSS satellites in view RMC Recommended minimum specific GNSS data VTG Course over ground and ground speed GPS MODULE The Global Positioning System (GPS) is a satellite-based navigation system made up of a network of 24 satellites placed into orbit by the U.S. Department of Defense.
  • 17. Serial Communication  When a processor communicates with the outside world, it provides data in byte sized chunks. Computers transfer data in two ways: parallel and serial.  In parallel data transfers, often more lines are used to transfer data to a device and 8 bit data path is expensive.  The serial communication transfer uses only a single data line instead of the 8 bit data line of parallel communication which makes the data transfer not only cheaper but also makes it possible for two computers located in two different cities to communicate over telephone.  Serial data communication uses two methods, asynchronous and synchronous.
  • 18. Software Required Keil an ARM Company makes C compilers, macro assemblers, debuggers, simulators, integrated environments, and emulators for ARM7/ARM9/Cortex-M3, and 8051 MCU families. Compilers are programs used to convert a High Level Language to object code. Desktop compilers produce an output object code for the underlying microprocessor, but not for other microprocessors. http://arduino.cc/en/Guide/HomePage.
  • 19. Contd..  i.e., the programs written in one of the HLL like ‘C’ will compile the code to run on the system for a particular processor like x86 (underlying microprocessor in the computer).  For example compilers for Dos platform is different from the Compilers for Unix platform So if one wants to define a compiler then compiler is a program that translates source code into object code.
  • 20. Working of project The project uses a set of resistances in series i.e. R1 ,R2,&R3 as shown in the circuit diagram, one set for each phase. Each series resistors represents the resistance of the underground cable for a specific distance thus 4 such resistances in series represent 1-3kms. 3 relays are used to common point of their contacts are grounded. Indicate the fault location on LCD screen& send the messege to the mobile with GPS
  • 21. ADVANTAGES: 1.THE MAIN USE THIS PROJECT IS CABLE FAULT DETCTING UNDER GROUNDS. 2.LOW COST. 3.LESS COMPLEXITY. 4.LONG DISTANCE APPLICATIONS. APPLICATIONS: 1.INDUSTRIAL APPLICATIONS 2.GROUND CABLE FAULT DETECTION APPLCIATIONS 3.ELECTRICAL CABLE FAULT DETCTION APPLICATIONS
  • 22. CONCLUSION The project “UNDERGROUND CABLE FAULT DETECTION USING GSM AND GPS ” has been successfully designed and tested. Integrating features of all the hardware components used have developed it. Presence of every module has been reasoned out and placed carefully thus contributing to the best working of the unit. Secondly, using highly advanced IC’s and with the help of growing technology the project has been successfully implemented.
  • 23. Acknowlegement MOHAMMED ABDUL SOHAIL {EEE}(160713734005). SYED AMER {EEE}(160713734021). MOHAMMED AMER KHAN {EEE}(160713734015).