UJJAIN ENGINEERING COLLEGE, UJJAIN
(M.P.)
[Link] (Electronics and Communication Engineering)
SYNOPSIS
On
ENERGY THEFT PROTECTION
SYSTEM
Submitted By:
Dhruv Rai (0701CE221005)
Akshita Sharma (0701CE221003)
Prince Kushwaha (0701CM221017)
Guided By:
Dr. Dilip Sharma
Department of Electronics & Communication
Abstract
Electricity theft is one of the most significant challenges in distribution networks, caus-
ing financial losses, voltage instability, technical faults, and reduced efficiency of power
systems. This project, titled “Energy Theft Protection System,” proposes a practical,
low-cost, and real-time solution to detect unauthorized electricity consumption.
The system uses current transformers (CTs) installed at the source side and consumer
side to measure the current flowing through different points of the line. Under normal
conditions, the source current and load current remain nearly equal. When illegal tap-
ping or meter bypassing occurs, the difference between these two measurements increases
significantly.
The proposed system processes these readings through a signal-conditioning circuit
and an Arduino-based microcontroller. If abnormal deviation is detected, the controller
triggers alerts using an LCD display, buzzer, and relay. Additional GSM or IoT modules
may be integrated for remote alert transmission.
This solution is low-cost, hardware-friendly, and scalable for small-scale or extended
distribution monitoring. The prototype demonstrates a working model suitable for aca-
demic and practical implementation.
1
Chapter 1
Introduction
Electricity theft remains a major concern in developing countries. Illegal tapping, meter
bypassing, and line tampering create financial losses for utility providers and lead to
equipment overload, voltage fluctuations, and increased technical losses.
The objective of this project is to detect electricity theft by measuring the source
current (Is ) and consumer load current (IL ) using CT sensors. If unauthorized tapping
occurs, Is becomes significantly higher than IL , indicating energy theft.
The project integrates sensing, signal conditioning, control, and alert units to provide
a robust and real-time theft detection system. The system is cost-effective and can be
applied in both household and small distribution networks.
2
Chapter 2
Block Diagram
The Energy Theft Protection System consists of four major units:
• Power Line Monitoring Unit
• Sensing and Signal Conditioning Unit
• Control Unit
• Output and Alert Unit
Description
The incoming AC supply passes through the service line, where illegal tapping may occur.
CT sensors installed at the source and meter measure real-time current values. These sig-
nals pass through signal-conditioning circuits and feed into the Arduino microcontroller.
If the difference exceeds a predefined threshold, the system classifies it as electricity theft.
3
block_diagram.png
Figure 2.1: Block Diagram of Energy Theft Protection System
4
Chapter 3
Working
The working principle of the system is based on differential current measurement.
1. Current Measurement
• CT1 measures source-side current Is .
• CT2 measures load-side current IL .
2. Signal Conditioning
The CT outputs are AC signals of small magnitude. These are rectified, filtered, and
scaled to provide suitable inputs to the microcontroller ADC.
3. Microcontroller Processing
The Arduino reads both current values and continuously compares them.
If |Is − IL | > Threshold ⇒ Theft Detected
4. Alert Mechanism
When theft is detected:
• LCD shows “THEFT DETECTED”
• Buzzer turns ON
• Relay may trip the load
• GSM/IoT module may send a remote alert
5. Normal Condition
When Is ≈ IL , the system displays “NORMAL” on the LCD and no alerts are generated.
5
Chapter 4
Components Used
• Arduino Uno / Nano (Microcontroller)
• CT Sensors (Primary current sensors)
• Signal Conditioning Circuit (Burden resistor, diode rectification, filtering)
• 16×2 LCD Display
• Buzzer
• Relay & Relay Driver (Isolation + switching)
• GSM / Wi-Fi Module (Optional)
• Power Supply Unit (5V regulated)
6
Chapter 5
Hardware Description
Arduino Microcontroller
Arduino handles ADC reading, data comparison, decision making, relay control, and
display operation.
CT Sensors
Measures AC current proportional to the load.
Signal Conditioning
Converts CT output to stable DC voltage usable by Arduino.
Relay Mechanism
Used to disconnect the load automatically after theft detection.
7
Chapter 6
Software Description
• Arduino IDE for coding
• Embedded C for microcontroller logic
• Serial monitoring for debugging
• Optional: Proteus for simulation
8
Chapter 7
Cost Estimation
• Arduino Uno/Nano: 300–700
• CT Sensors + signal conditioning: 400–1000
• LCD + Buzzer + Relay: 300–600
• Optional IoT/GSM Module: 500–1200
• Miscellaneous items: 200–500
Total Estimated Cost: 1500 to 3000
9
Chapter 8
Applications
• Domestic distribution monitoring
• Commercial grid protection
• Smart meter integration
• Rural electrification theft detection
10
Chapter 9
Conclusion
The Energy Theft Protection System offers a practical, low-cost, and scalable method
for detecting electricity theft in real time. By using differential current measurement
and microcontroller-based processing, it improves monitoring efficiency and reduces com-
mercial losses. The system can be enhanced further with IoT integration for remote
supervision.
11
Appendix: Internal Viva Script
1. Project Introduction
“Sir, our project is Energy Theft Protection System.”
2. Problem Statement
“Illegal tapping and meter bypassing cause major financial and technical losses.”
3. Working
“Sir, hum source side aur meter side par CT sensors lagate hain. Normal condition me
dono current equal hote hain. Agar illegal tapping hoti hai toh source current badh jata
hai, meter current same rehta hai. Ye difference detect karke system alert deta hai.”
4. Components
“Arduino, CT sensors, signal conditioning, relay, LCD, buzzer, GSM/IoT.”
5. Final Line
“Sir synopsis complete hai, hardware implementation next stage me hai.”
12
Appendix: Internal Viva Script
Project Title
Sir, our project title is Energy Theft Protection System.
Problem Statement
Electricity theft such as illegal tapping and meter bypassing causes major financial losses,
voltage instability, and reduced system efficiency. Detecting theft in real time is essential
for improving distribution reliability.
Objective
The objective of this project is to compare the source-side current and the consumer-
side current using CT sensors in order to identify any abnormal deviation that indicates
unauthorized electricity usage.
Simple Working Explanation
Sir, our system uses two current transformers:
• CT1 at the source side measures the source current (Is ),
• CT2 at the consumer meter measures the load current (IL ).
In normal conditions, both currents are nearly equal. If illegal tapping occurs before
the meter, the source current increases while the meter current remains the same. This
difference is detected by the microcontroller, which then generates an alert.
Detailed Working (For follow-up questions)
1. CT sensors generate analog signals proportional to current.
2. These signals pass through a signal-conditioning circuit to make them suitable for
ADC input.
3. The microcontroller continuously compares Is and IL .
4. If the difference exceeds a threshold, theft is detected.
5. The system activates the buzzer, updates the LCD, and may trigger the relay.
13
Components to Mention in Viva
• Arduino Uno/Nano (microcontroller)
• CT sensors for current measurement
• Signal conditioning circuit (burden resistor, rectifier, filter)
• Relay and relay driver
• LCD display
• Buzzer
• GSM or IoT module (optional for remote alert)
Why This Method is Effective
This method is cost-efficient and works in real time. Since it compares source and load
current directly, it reliably detects meter bypassing and unauthorized tapping.
Applications
This system can be used in:
• Residential power distribution,
• Commercial buildings,
• Rural electrification lines,
• Smart metering systems.
Current Status for Internal
Sir, the synopsis has been completed. The implementation and simulation phase is
planned as the next step. The hardware setup will include CT sensing, Arduino-based
processing, and relay-based protection.
14