Arduino Based Overvoltage And Undervoltage Protection System

The main target of this project is to design and develop an Arduino Based Smart Overvoltage and Undervoltage Protection System to protect the appliance from damage. Nowadays fluctuation in AC mains voltage is frequent in domestic houses and industries. The abnormal over and under voltages may be caused due to some reasons such as sudden interruption of heavy load, thunder lightning, switching impulses etc. It can easily damage sensitive electronic parts in these conditions. It is so preferable to have a tripping system such as MCB, or MCCB to protect the appliances. But we build here an advanced system that can smartly control your whole house’s electric supply using the user’s choice. Yes, we can set our desired maximum and minimum voltage for our needs.

In today’s market, various types of smart Overvoltage and Undervoltage protection systems have come out. But these are a little bit costly. Our project aims at protecting the electrical equipment from over and under voltages using just an Arduino and voltage sensor at a low cost. Here we use the ZMPT101B voltage sensor which is more accurate than others also it is cost-effective. It detects any voltage greater than 230V AC and below 190V AC (predefined value). If the voltage is across the limits than the predefined values, it sends a signal to the Arduino. Then it immediately trips the circuit breaker (here the relay module). Then the circuit breaker isolates the load from the main source.

In today’s power system, voltage quality is an important factor with the growth in power electronics and the high sensitivity of electronic components. Voltage quality covers a wide range of voltage disturbances and fluctuations in voltage magnitude or waveform from the maximum values. Daily operation of the power grid may result in disruption of voltage quality. Also, voltage irregularities are the major issues in the industries and domestic users are facing and often damage sensitive electronic equipment.

Must Read IoT Based Smart Energy Monitoring System

What is Overvoltage?

The word “Overvoltage” is in use since 1907. According to the IEEE standards, Overvoltage is defined as “Voltage between one phase and ground or between two phases, having a crest value exceeding the corresponding crest of maximum system voltage.” We can also define it as the voltage in a circuit being raised above its upper design limit which will be leading to damage or short circuits. Also, say when the supply voltage rises above the rated voltage of the equipment. Overvoltage can be caused by poor regulation of a power source from a utility company, oversized transformers, uneven or varying circuit loading, wiring errors, and electrical insulation or isolation failures. We can separate it in three basic ways that are:

  • Internal Overvoltage
  • External Overvoltage
  • Temporary Overvoltage

What is Undervoltage?

Undervoltage is defined as when the applied voltage drops upto 90% of the rated voltage or less. Undervoltage conditions are caused by the undersized or overloaded utility and facility transformers. During peak demand periods, the demanded power exceeds the capability of the transformer and as a result, the voltage drops.

Project

Smart Overvoltage And Undervoltage Protection System

Circuit Diagrams

Overvoltage And Undervoltage Protection System Circuit Diagram

Components Required

  • Arduino Nano
  • ZMPT101B Voltage Sensor
  • 16×2 LCD Display
  • I2C Module
  • 5V Relay Module
  • Hi-Link 5V AC-DC Converter
  • Veroboard
  • Wires

About Parts of Overvoltage And Undervoltage Protection System

Arduino

arduino-nano
Arduino Nano

For the compact build, I choose Arduino Nano despite Arduino UNO. Arduino Nano is a small, flexible microcontroller board using an Atmega328p chip. It can also use as a substitute for UNO. All the functions are the same in these two boards. The size of its PCB is 18×45 mm. The clock speed is 16Mhz. Its input voltage is 5-12V. There are 30 pins including power, data, analogue, and serial pins on this board.

ZMPT101B Voltage Sensor

ZMPT101B-One-Phase-Voltage-Sensor
ZMPT101B Voltage Sensor

The 9V AC step-down transformer has been used here as a voltage sensor. But we could use ZMPT101B One-Phase Voltage Sensor for accurate sensing. It removes messy wire connections. But for reducing cost we use this method. The transformer provides insulation between high AC voltage and low AC voltage. The 9V transformer output terminal has been connected to the voltage divider circuit to bring this voltage to 0-5V. Thus voltage measurement can be made without requiring any high-voltage operation. This sensor can measure upto 270V AC supply voltage.

16×2 I2C Module for LCD Display

i2c-module
I2C Module

16×2 LCD I2C module has an inbuilt PCF8574 I2C chip that converts I2C serial data to parallel data for the LCD display. These modules are currently supplied with a default I2C address of either 0x27 or 0x3F. Also, it has an inbuilt contrast adjustment potentiometer.

Block Diagram Overvoltage And Undervoltage Protection System

Overvoltage And Undervoltage Protection System Block Diagram
Block Diagram

Operation of Overvoltage And Undervoltage Protection System

The usual AC supply voltage at our home is 230V. Due to the voltage fluctuations according to the appliance load, it may vary. But it should be +2% tolerance. In case of an increase of above 2% or vice versa, the attached load may get damaged. In order to avoid this problem, we developed an over and under voltage protector. When the supply voltage exceeds the specified limit, the relay operates and isolates the load from the electrical circuit. After detecting the fluctuated voltage, an Analog signal of the output voltage is fed to the Arduino. This voltage is unregulated and therefore it varies as the input voltage varies.

Arduino Nano has five Analog input pins and thirteen digital pins. It has an inbuilt Analog-Digital converter. So, five different loads can be connected at the same time. The 13th pin contains an indication LED. Arduino takes an input voltage of 5 to 12 volts and gives an output upto 5V. A preset value with tolerance is given to the Arduino. The Arduino compares the preset value with the Analog read value at A0. If it lies within the limit the relay does not operate. If it doesn’t lie within the limits, the Arduino checks if it falls into inverse characteristics or definite characteristics. The operating time for definite characteristics is given as 5 seconds, i.e. the relay operates after 5 seconds of fault occurrence. If it falls into inverse characteristics, the tripping time is to be calculated using the formula:

T= t/((V/Vs)-1)

Where T = Trip Time
t = Time Multiplier
V = Voltage at A0
Vs = Source Voltage

When the trip time will be set to zero, the relay will work and the circuit will be instantly tripped. When operating in the inverse characteristics or in the definite characteristics, if the voltage comes back to the rated voltage, then the relay will go again in reset mode.

Applications of Overvoltage And Undervoltage Protection System

  • This system is effective in motor loads. It protects the motor from overvoltage.
  • It protects home appliances from sudden voltage damage.
  • In some areas where power fluctuations are too much, there it is useful for protection.

Calibration Method for Voltage

First, we need to upload the below code to the Arduino. Then we need to open the Serial Plotter from the tools menu in Arduino IDE.

Calibration Code

Overvoltage And Undervoltage Protection System distorted signal

When you upload that code and after opening the serial plotter, you will see this type of signal where the upper part is plain.

sinusoidal signal

By using the potentiometer of the ZMPT101B voltage sensor, you need to calibrate this signal into that sinusoidal signal. After adding some delay to the code to see the actual sinusoidal signal.

actual sinusoidal signal

I know there are some distortions that still exist on this waveform. But our voltage sensor is now ready for sensing the voltage.

Arduino Code

To compile the Arduino code, we need some libraries.

Fliters.h” library, and LiquidCrystal_I2C library.

Please only use Filter.h (version 0.1.1) library to avoid “runningStatistics was not declared in this scope” error.

27 thoughts on “Arduino Based Overvoltage And Undervoltage Protection System”

  1. You need to install “Liquidcrystal_i2c.h” from the link I mentioned in the article or you can download and install it from Arduino IDE library.

Leave a Comment