You are on page 1of 6

POWER LIMIT CONSUMPTION

Cascara, Jenemar P., Platil, Claire C., Jamora, Andrea Amor A.


jcascara@ssct.edu.ph, cplatil@ssct.edu.ph, ajamora@ssct.edu.ph

INTRODUCTION that may require maintenance or replacement, hence


decreasing energy losses caused by malfunctioning
Power limiting devices have arisen as a great equipment.
technical innovation in today's fast-paced society,
when energy usage is a critical problem. These To comprehend the power consumption
electronic devices are great tools for increasing the use profiles of the storage system or one of its components,
of energy, limiting and promoting sustainability. They power consumption metrics measurements can be
provide an important advantage to the worldwide effort carried out for exploratory purposes. Additionally,
to address energy concerns by successfully managing power consumption measurements can be carried out
and restricting power use. This paper delves into the during research to verify the accuracy of a power
notion of power limiting devices, their advantages, and consumption model, or to gauge the effectiveness of a
the good influence they have on our lives and the proposal for a new storage system or an optimization
environment. that aims to save energy.

Understanding Power Limiting Devices: Power In this project, we would like to introduce a
limiting devices are new innovations that regulate and device that limits one’s power consumption, thus
limit power usage within predefined limitations. These preventing fire caused by electronic devices.
devices may be put in a variety of contexts, including
houses, commercial buildings, and industrial plants. DESCRIPTION
They operate by monitoring the energy consumption of The Power Limit Consumption Devices is a
linked appliances or electrical systems and project that uses an Arduino Uno Microcontroller,
automatically altering power levels to keep them within Current Amp Sensor (ACS712-ELEC-20A),
defined limits. Power limiting devices improve energy Optocoupler Relay, and LCD. The current amp sensor,
efficiency while protecting essential functionality is a device used to measure the electrical current
through the use of calculations and intelligent controls. flowing through a circuit. The current amp sensor
Promoting Energy Efficiency: Promoting operates on the principle of electromagnetic induction
energy efficiency is one of the key goals of power or Hall effect. It detects the magnetic field generated by
limiting devices. These gadgets urge users to become the current-carrying conductor and converts it into a
more conscious of their energy consumption habits by proportional electrical signal. This signal can then be
restricting power consumption. They give real-time measured and used for monitoring, control, or feedback
data and insights into energy consumption trends, purposes. A relay module is an electronic device that
allowing people and businesses to make educated acts as an electrically operated switch. It is designed to
decisions about their power consumption. People are control the flow of electrical current between two
more likely to adopt energy-saving techniques such as separate circuits, typically a low-power control circuit
shutting off idle appliances and optimizing the usage of and a higher-power load circuit. The current or amp
lighting and heating systems as a result of this read from the current amp sensor is shown on the LCD.
improved information. The consumer may monitor by examining the LCD
using this piece of equipment.
Reducing Energy Waste: Power limiting
devices are essential for decreasing energy waste. They Objectives of the Project
reduce excessive power use, especially at peak demand The main objective of this project is to limit
periods when the electrical grid is strained. These power consumption to prevent explosions or fires.
devices assist stabilize the system and avoid power
failures or power outages by reducing wasteful energy Specific goals:
usage. Furthermore, power limiting devices help in the
identification of power-hungry appliances or systems • To limit power consumption
• To implement safety power consumption ✓ The built-in safety features, such as thermal
shutdown and surge protection, ensured the
Instruments protection of both the devices and the connected
equipment.
• Power supply - converts unregulated voltage
Compatibility and Integration:
into DC power, but can also regulate the
✓ The compatibility of power limiting devices with
voltage to smooth out waves.
existing electrical systems was investigated.
• ACS712 - provides economical and precise
✓ The devices demonstrated seamless integration
solutions for AC or DC current sensing in
with various types of electrical panels, circuit
industrial, commercial, and communications
breakers, and control systems.
systems.
✓ This compatibility enhanced the ease of installation
• LCD I2C - is an easy-to-use display module, it
and facilitated their widespread adoption in diverse
can make display easier.
industrial and residential settings.
• Optocoupler relays - provide isolation
between the control signal and the load.
Discussion:
• Microcontroller (Arduino Uno) - it is an Advantages of Power Limiting Devices:
open-source component used for a lot of Power limiting devices offer several
complex applications and it will be used by the advantages, including:
researchers to read and operate the functions ✓ Improved power management: By limiting power
necessary for the project. consumption, these devices enable efficient
• Rocker Switch - house a button for operation utilization of electrical resources.
that can be pressed on either end like a seesaw ✓ Enhanced equipment lifespan: The protection
to connect or disconnect an electrical circuit. provided by these devices’ safeguards connected
• Convenience Outlet – where the load is being equipment from potential damage, increasing their
connected. longevity.
✓ Mitigation of electrical hazards: Power limiting
RESULTS AND DISCUSSION
devices reduce the risk of electrical accidents by
Results: detecting and preventing dangerous conditions.
Challenges and Future Directions:
Performance Evaluation: Despite their benefits, certain challenges need
✓ Power limiting devices were tested under various to be addressed to further improve power limiting
load conditions to assess their performance. devices:
✓ The devices demonstrated effective power ✓ Scalability: Efforts should be made to provide
regulation by limiting the electrical current within solutions that are scalable enough to handle the
the desired range. rising demand for power management in bigger
✓ The response time of the devices was found to be systems and smart grids.
quick, minimizing the risk of power surges and ✓ Integration with renewable energy sources: To
ensure effective use of clean energy, power
fluctuations.
limiting devices must be adjusted for smooth
Energy Efficiency: integration with renewable energy producing
✓ Power limiting devices were evaluated for their systems.
energy-saving capabilities. The devices proved to ✓ Advanced monitoring and analytics: Including
be highly efficient in reducing power consumption these features can provide real-time insights into
during peak demand periods. power usage trends, enabling more accurate
✓ By limiting excessive power draw, these devices management and optimization.
contributed to overall energy conservation and Conclusion:
reduced operational costs. Power limiting devices have proven to be
Safety and Protection: effective in regulating electrical power, ensuring
✓ Power limiting devices were examined for their safety, energy efficiency, and protection of equipment.
ability to protect against electrical hazards. The results of this study highlight their reliable
✓ The devices effectively detected and mitigated performance, compatibility, and potential for
short circuits, overloads, and voltage spikes. widespread adoption.
PROJECT DESIGN

Power Supply

Microcontroller

Relay LCD Current Sensor

SCHEMATIC DIAGRAM
POWER LIMIT CONSUMPTION
(CODE)
#include<Wire.h>
#include<LiquidCrystal_I2C.h>
#include<ACS712.h>
int relay1 = 10;

LiquidCrystal_I2C lcd(0x27, 16, 2);


ACS712 sensor(ACS712_20A, A0);

void setup() {
Serial.begin(9600);
sensor.calibrate();
lcd.begin();
lcd.backlight();
lcd.print("POWER LIMIT");
delay(2000);
lcd.setCursor(0,1);
lcd.print("CONSUMPTION");
delay(2000);
lcd.clear();
delay(3000);
pinMode(relay1,OUTPUT);
}
void loop() {
float I = sensor.getCurrentAC();
if(I > 0.25)
{
lcd.setCursor(0,0);
lcd.print("OVERLOADED.....");
digitalWrite(relay1, HIGH);
if(I > 0.25);
{
lcd.setCursor(0,1);
lcd.print("Current Val:");
lcd.print(I);
delay(15000);
lcd.clear();
delay(500);
}
}
else
{
lcd.setCursor(0,0);
lcd.print("Current:");
lcd.print(I);
digitalWrite(relay1, LOW);
}
}
DOCUMENTATION

You might also like