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

Arduino based underground cable fault detection
Arduino based underground cable fault detectionArduino based underground cable fault detection
Arduino based underground cable fault detectionIsa Rachman
 
Precise kilometer calculation by underground cable fault detector
Precise kilometer calculation by underground cable fault detectorPrecise kilometer calculation by underground cable fault detector
Precise kilometer calculation by underground cable fault detectorvivekmv716
 
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.nikhilhiware
 
IOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATOR
IOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATORIOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATOR
IOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATORIRJET Journal
 
Detection of Underground Cable Fault using Arduino
Detection of Underground Cable Fault using ArduinoDetection of Underground Cable Fault using Arduino
Detection of Underground Cable Fault using ArduinoIRJET Journal
 
Hvdc transmission seminar
Hvdc transmission seminar Hvdc transmission seminar
Hvdc transmission seminar Utkarsh Jambhule
 
seminar report on power quality monitoring
seminar report on power quality monitoring  seminar report on power quality monitoring
seminar report on power quality monitoring khemraj298
 
Power semiconductor devices
Power semiconductor devicesPower semiconductor devices
Power semiconductor devicesSamsu Deen
 
RADIAL FEEDER PROTECTION PANEL DEVELOPMENT
RADIAL FEEDER PROTECTION PANEL DEVELOPMENTRADIAL FEEDER PROTECTION PANEL DEVELOPMENT
RADIAL FEEDER PROTECTION PANEL DEVELOPMENTHimanshu Paghdal
 
Sensors and microcontroller interfacing
Sensors and microcontroller interfacingSensors and microcontroller interfacing
Sensors and microcontroller interfacingmohamed albanna
 
Web based power quality monitoring system
Web based power quality monitoring systemWeb based power quality monitoring system
Web based power quality monitoring systemVikram Purohit
 
Power Quality and Monitoring
Power Quality and MonitoringPower Quality and Monitoring
Power Quality and Monitoringash08031996
 
WATER LEVEL AUTOMATIC PUMP CONTROLLER
WATER LEVEL AUTOMATIC PUMP CONTROLLERWATER LEVEL AUTOMATIC PUMP CONTROLLER
WATER LEVEL AUTOMATIC PUMP CONTROLLERshiv kapil
 
Electricity theft control
Electricity theft controlElectricity theft control
Electricity theft controlAffable Mee
 
Broadband Over Power Lines (BPL)
Broadband Over Power Lines (BPL)Broadband Over Power Lines (BPL)
Broadband Over Power Lines (BPL)rajesharayankara
 
Power theft detection
Power theft detectionPower theft detection
Power theft detectionAravind Shaji
 

What's hot (20)

Arduino based underground cable fault detection
Arduino based underground cable fault detectionArduino based underground cable fault detection
Arduino based underground cable fault detection
 
Precise kilometer calculation by underground cable fault detector
Precise kilometer calculation by underground cable fault detectorPrecise kilometer calculation by underground cable fault detector
Precise kilometer calculation by underground cable fault detector
 
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
 
IOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATOR
IOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATORIOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATOR
IOT BASED UNDER GROUND CABLE FAULT DETECTION AND LOCATOR
 
Digital voltmeter
Digital voltmeterDigital voltmeter
Digital voltmeter
 
CircuitDebugging
CircuitDebuggingCircuitDebugging
CircuitDebugging
 
Detection of Underground Cable Fault using Arduino
Detection of Underground Cable Fault using ArduinoDetection of Underground Cable Fault using Arduino
Detection of Underground Cable Fault using Arduino
 
Hvdc transmission seminar
Hvdc transmission seminar Hvdc transmission seminar
Hvdc transmission seminar
 
seminar report on power quality monitoring
seminar report on power quality monitoring  seminar report on power quality monitoring
seminar report on power quality monitoring
 
Power semiconductor devices
Power semiconductor devicesPower semiconductor devices
Power semiconductor devices
 
RADIAL FEEDER PROTECTION PANEL DEVELOPMENT
RADIAL FEEDER PROTECTION PANEL DEVELOPMENTRADIAL FEEDER PROTECTION PANEL DEVELOPMENT
RADIAL FEEDER PROTECTION PANEL DEVELOPMENT
 
Sensors and microcontroller interfacing
Sensors and microcontroller interfacingSensors and microcontroller interfacing
Sensors and microcontroller interfacing
 
Web based power quality monitoring system
Web based power quality monitoring systemWeb based power quality monitoring system
Web based power quality monitoring system
 
Power Quality and Monitoring
Power Quality and MonitoringPower Quality and Monitoring
Power Quality and Monitoring
 
WATER LEVEL AUTOMATIC PUMP CONTROLLER
WATER LEVEL AUTOMATIC PUMP CONTROLLERWATER LEVEL AUTOMATIC PUMP CONTROLLER
WATER LEVEL AUTOMATIC PUMP CONTROLLER
 
Electricity theft control
Electricity theft controlElectricity theft control
Electricity theft control
 
Energy meter
Energy meterEnergy meter
Energy meter
 
Broadband Over Power Lines (BPL)
Broadband Over Power Lines (BPL)Broadband Over Power Lines (BPL)
Broadband Over Power Lines (BPL)
 
Phasor Measurement Unit (PMU)
 Phasor Measurement Unit (PMU) Phasor Measurement Unit (PMU)
Phasor Measurement Unit (PMU)
 
Power theft detection
Power theft detectionPower theft detection
Power theft detection
 

Viewers also liked

Under ground cables presention
Under ground cables presentionUnder ground cables presention
Under ground cables presentionRazu Khan
 
Digital underground cable fault locator (dufcl).
Digital underground cable fault locator (dufcl).Digital underground cable fault locator (dufcl).
Digital underground cable fault locator (dufcl).ITODO Victory
 
final year project report
final year project reportfinal year project report
final year project reportAnuj Kumar
 
hvdc transimission line
hvdc transimission linehvdc transimission line
hvdc transimission lineMohd Sohail
 
Underground cables
Underground cablesUnderground cables
Underground cablesAnu71
 
Iot report federal trade commission_150127iotrpt
Iot report federal trade commission_150127iotrptIot report federal trade commission_150127iotrpt
Iot report federal trade commission_150127iotrptMarket Engel SAS
 
Wireless Power Transmission
Wireless Power TransmissionWireless Power Transmission
Wireless Power TransmissionRubima Jindal
 
WIRELESS POWER TRANSMISSION
WIRELESS POWER TRANSMISSIONWIRELESS POWER TRANSMISSION
WIRELESS POWER TRANSMISSIONAYUSHI NAWAL
 
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.pptEr 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 OverviewParthosb
 
Wireless power transmission
Wireless power transmissionWireless power transmission
Wireless power transmissionVivek Kumar
 
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...IOSR Journals
 
Theory of HVDC transmission
Theory of HVDC transmission Theory of HVDC transmission
Theory of HVDC transmission SAURAV DAYAL SING
 
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

prepaid energy meter using smartcard
prepaid energy meter using smartcardprepaid energy meter using smartcard
prepaid energy meter using smartcardchintu9666
 
Smart LED Notice Board
Smart LED Notice BoardSmart LED Notice Board
Smart LED Notice Boardswarnimmaurya
 
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTvasav2204
 
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering projectvasav2204
 
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 control9177995519
 
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 SMSSRINIVAS REDDY
 
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 FREQUENCYGaurav Singh
 
File 1389427052
File 1389427052File 1389427052
File 1389427052Aman_preet
 
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 calculationUdayalakshmi JK
 
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 PROTOCOLGaurav Singh
 
under grund fault ppt (1).pptx
under grund fault ppt (1).pptxunder grund fault ppt (1).pptx
under grund fault ppt (1).pptxPoojaG86
 
Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Alexander Decker
 
Electronics Microcontrollers for IoT applications
Electronics Microcontrollers for IoT applicationsElectronics Microcontrollers for IoT applications
Electronics Microcontrollers for IoT applicationsLeopoldo Armesto
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerRup Chowdhury
 
REPORT texto braillefinal
REPORT texto braillefinalREPORT texto braillefinal
REPORT texto braillefinalASWATHI 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

(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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
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
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
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
 
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
 
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
 
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
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
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
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 

Recently uploaded (20)

DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(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...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
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
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
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
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
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
 
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
 
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
 
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
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
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
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 

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).