SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 966
Load Forecasting Using LSTM Model
Amal Alhammadi1, Jawaher Alshamsi2, Maryam Almajidi3, Reema Alzarooni4
1Engineer, 2Senior Engineer, 3Actg. Asst. Manager, 4Actg. Manager
Transmission Protection Department, Dubai Electricity and Water Authority (PJSC), Dubai, UAE
Key Words: LSTM Model, Load Forecasting, Generators,
Electricity, Time series, Coding, Peak load data, RNN.
1. INTRODUCTION
Load forecasting has become a necessity in the power
industry. For the energy utilities to maintain the continuity
of their services with minimum interruptions, certain
measures ought to take place such as outage planning,
energy storage management, market supply and demand,
power plants maintenance schedules, and so on.All ofwhich
are dependent on load forecasting [1]. LSTM offers the tools
that could assist the power industry to maintain effective
services by forecasting the future demand based on past
data. LSTM model is one of the types of Recurrent Neural
Networks (RNN) that has shown outstanding results in
sequence learning problems [2]. This paper aims to utilize
the LSTM model to forecast load demandwiththeuseofpast
data of 4 consecutive years. It will first discuss the gathered
data from the different generators, then their behavior due
to the varied load, and lastly the codingusedforLSTMmodel
to achieve the desired results.
1.1 The Generators
The data for the load is gathered from four types of
generators, which are Coal Old, Coal New, Gas, and Peaker
generators. The power plant Coal Old and Coal New have
similar operation systems and function as thermal power
stations that burn coal to generate electricity. A Coal-Fired
Power Station is a type of fossil fuel powerstationinwhichit
is usually crushed and then burned in a coal-fired boiler [3].
As figure 1 indicates, steam is generated from the boiled
water, which is used to spin the turbines that turn
generators. Therefore, mechanical, thermal and electrical
energies are generated due to chemical energy stored in the
coal [4]. Coal that has been ground into a fine powder is
blown into a boiler and burned. Due to the high heat, the
water runs in the pipe of the boiler will steam and cause a
high pressure which will turn the blades of theturbinethat’s
connected to the shaft.
Figure -1: Coal-fired power station [5]
As a result of that, the generator will spin and produce
electricity [3].
The Gas Power Plants generateelectricityusingnatural gas
as their fuel. All the natural gas power plants can generate
electricity with different purposes. Gas turbine can be used
in all-natural gas plants by adding natural gas and stream of
air that will expands and causes the rotationofthemagnetin
the generator which will produce electricity. The emissions
of the natural gas plants is more significant than a nuclear
power plant and it is significantly contribute to climate
change regardless the air quality improvement [6].
Peaker power plant is a mixture of load power plants to
supply energy to grid. The base load powerplantssupplythe
reliable amount of energy that is in daily bases, called the
base load. Examples of base load power plants include
hydroelectric, coal or nuclear. Also, the Peaker Power Plant
is a power plant that only turns on during times
when electricity is at its peak demand in which it operates
differently when compared to other power plants that
generates the electricity. Moreover, the cost that Peaker
Power Plant reaches its maximum and provide electricity
into the grid when energy demand is at its maximum, in
factthe power supplied by Peaker Power Plant is at higher
price per kWh because they only supplypowerforfewhours
per year with a fast rate response [7]. Finally, the energy
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - This paper represents the application of Long-
Short Term Memory (LSTM) deep network study that is
focused on load forecasting with long-shorttermmemory. The
LSTM enables generating a forecast for future loads and the
requirement for operating a combination of generators in
order to meet electrical demand. To achieve an accurate load
forecasting, the load data for each generator is separated and
used to train an LSTM model. The objective of the study is to
develop an efficient and accurate method of forecasting the
load by utilizing data for the past 4 years (i.e. from 2018 to
2021) in LSTM model to predict the future outcomes based on
the past time series. Essentially, the final forecast is estimated
using numerical code expressions of the peak load data
collected in the past 4 years.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 967
source used for Peaker Plants is fossil fuel, which is natural
gas [7].
Needless to say, each of the generators have different
constraints associated with it, such as Fuel Cost ($/MWh),
Maintenance Cost ($/h), Engine Cost ($/switch), Minimum
and Maximum Generation Level (MW), Ramp Up and Ramp
Down (MW/h), Minimum Upper and Lower Time (h) arethe
constraints and have been collected for each power plant.
The details of which are shown in table-1.
Table -1: Power Plant Properties
Constraints CoalOld CoalNew Gas Peaker
FuelCost ($/MWh) 30 25 45 60
MaintenanceCost ($/h) 20 35 50 10
EngineCost ($/switch) 900 650 200 80
MinGenerationLevel (MW) 120 90 40 3
MaxGenerationLevel (MW) 800 250 200 120
RampUp (MW/h) 30 40 80 800
RampDown (MW/h) 50 50 100 1900
MinimumUpperTime (h) 4 3 5 1
MinimumLowerTime (h) 3 1 4 1
The Power Plant properties are enteredinthe pythoncoding
program as shown in figure 2.
Figure -2: Constraints per generator in Python program
1.2 Generators Behavior
The data of each of the generators versus time in a week
(total of 168 hours) are collected, table 2, and entered in
python codes specifically performed for the past four years
(2018 to 2021). The total power generated versus time will
be implemented from the results in python coding program.
Table -2: Sample of Data Gathered from 2018 to 2021
Day Month Year Seconds Demand
1 1 2018 0 56234
1 1 2018 1600 461234
1 1 2018 3600 106345
1 1 2019 1800 52473
1 1 2019 3600 53197
1 1 2019 5400 53991
1 1 2020 0 66037
1 1 2020 1800 70021
1 1 2020 3600 73805
1 1 2021 0 68246
1 1 2021 1800 67648
1 1 2021 3600 67591
In order to visualize the behavior of each power generated
for each plant versus time (in hours), the codes in figure 3
has been inserted in Python taking in consideration the
values of the constraints for each power plant.
Figure -3: Codes for power generated for each plant
versus time
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 968
Upon running the codes, Chart 1 shows the results of the
maximum and minimum loads, which can be read and
compared with maximum and minimum generation level
that is taken from table-2 of power plant properties for each
power plant for a week (168 hours). It is shown that for all
the four power plants the demand (load) level isnearlyclose
to the generation level. In fact, during week days which can
be taken as full load condition the peak value for the
maximum load level shown in coal old power plant is about
600 MW with maximum generation level of 800 MW andthe
load is reduced over the weekend which can be considered
less load condition almost 150MW with minimum
generation level of 120MW.
Chart -1: Power generated for each plant versus time
Moreover, in case of coal new the maximum load level is
about 250MW with maximum generation level of also
250MW and this can be concluded that these maximum
peaks are due to the utilizing of electricity during day hours
more than night time and at working days condition,
however the minimum load level can be viewed from plot as
about 65MW with minimum generation level of 90MW.
Finally, in the case of Gas Power Plant, the maximum peaks
are shown with maximum load of 200MW with maximum
generation level of 200MW and the peaks are getting
reduced during less load condition which is30MWasshown
from the plot and 40MW minimum generationlevel thatisto
less usage of electricity during some parts of the day and
without working days or school days condition. Moreover,
the same scenario applies for Peaker Power Plant in which
during working hours and week days the maximum load it
reaches is about 95MW with maximum generation level of
120MW and the least load it reaches is about 7MW in which
the minimum generation level in this case is 3MW. The
maximum generation levels and the peaks of the maximum
load level for each generator are almostneareachother,also
the minimum generation level value is close the minimum
peaks of the load level. Finally, as theresultsindicate that the
generation and the load are almost near each other which
will result in having the desirable behavior as shown in
Chart 2.
Chart -2: Total Power Plant Generated vs Load Profile
2. Logic of LSTM model and Outcome
Unlike the traditional types of Neural Network models that
only rely on previous N histories, LSTM is capable oflearning
long-term dependencies and capable to capture nonlinear
patterns in time series data [8]. Hence, it is a great candidate
to predict subsequent demand every half-hour.
In this design, LSTM deep network developed according to
the following steps:
Step 1: Load Python Libraries
Step 2: Load Data and prepare Data
Step 3: Design a Network
Step 4: Train a Network
Step 5: Test a Network
The evaluation of the forecasting model accuracy can be
done by measuring Mean Absolute Error (MAE) and Mean
Absolute Percentage Error (MAPE) [9].
MAE uses the same scale as the data being measured, the
mean absolute error is a common measure of forecast
error in time series analysis, MAE is calculated as:
It is the average of the absolute errors ei, where yi is the
prediction and xi the true value. Note that alternative
formulations may include relative frequencies as weight
factors.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 969
Different from MAE, MAPE measures theerrorproportion to
the absolute value, it expresses the errorasa percentageand
can be calculated using the following equation.
Where n is the total number of forecast values, At and Ft
denote the actual and forecast value at time t, respectively.
The Mean Average Percentage Error (MAPE) is 5.325 which
represent the average deviation between the forecasted
value and actual values and the resultfoundacceptablesince
it is less than 10% of average demand, and Mean Average
Error (MAE) is 631.490 and the result is accepted since it
within the ± 5% of the average demand.
The obtained graphs in figure 6 shows the actual versus
predicted load demand next half hour (x*1800 second).
Chart -3: Actual Vs Predicted Load Demand
3. CONCLUSION
As a conclusion the objective to develop an efficient and
accurate method of forecasting the load by utilizing data for
the past 3 years using LSTM model was achieved through
developed model in Python which enabled to predict the
future outcomes based on thepasttime.Moreover,theseries
maximum generation levels and the peaks of the maximum
load level for each generator are almostneareachother,also
the minimum generation level value is close the minimum
peaks of the load level. Finally, as theresultsindicatethat the
generation and the load are almost near each other.
REFERENCES
[1] T. Ciechulski and S. Osowski, "High Precision LSTM
Model for Short-Time Load Forecasting in Power
Systems," Energies, vol. 14, no. 2983, pp. 1-15, 21
May 2021.
[9] C. Tian, J. Ma, C. Zhang and P. Zhan, "A Deep Neural
Network Model for Short- Term Load," Energies,
vol. 11, no. 12, pp. 1-13, 2018.
[8] H. Abbasimehr and R. Paki, "Improving time series
forecasting using LSTM and attention models,"
Journal of Ambient Intelligence and Humanized
Computing, vol. 13, no. 1, pp. 673-691, 2022.
[7] Edgecom Energy Inc., "What is a Peaker Plant,"
Edgecom Energy, 28 October 2021. [Online].
Available:
https://www.edgecomenergy.ca/resources1/what-
is-a-peaker-plant. [Accessed 21 September 2022].
[6] University of Calgary, "Natural Gas Power Plant,"
Energy Education, [Online]. Available:
https://energyeducation.ca/encyclopedia/Natural_
gas_power_plant. [Accessed 20 September 2022].
[5] University of Calgary, "Coal fired power plant,"
[Online]. Available:
https://energyeducation.ca/encyclopedia/Coal_fire
d_power_plant#cite_note-8. [Accessed 10
November 2022].
[4] J. P. Ciferno, T. E. Fout, A. P. Jones and J. T. Murphy,
"Capturing Carbon from Existing Coal-Fired Power
Plant," Chemical Engineering Progress, vol. 105, no.
4, pp. 33-41, April 2009.
[3] H. Bambhaniya, "What is Coal Power Plant and How
Does it Work?," 23 September 2021. [Online].
Available:
https://www.engineeringchoice.com/what-is-coal-
power-plant/. [Accessed 16 September 2022].
[2] J. M. Jiménez, L. Stokes, C. Moss, Q. Yang and V. N.
Livina, "Modelling energy demand response using
long short-term memory neural networks," Energy
Efficiency, vol. 13, pp. 1263-1280, 24 July 2020.

More Related Content

Similar to Load Forecasting Using LSTM Model

IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...
IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...
IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...IRJET Journal
 
Numerical simulation of Hybrid Generation System: a case study
Numerical simulation of Hybrid Generation System: a case studyNumerical simulation of Hybrid Generation System: a case study
Numerical simulation of Hybrid Generation System: a case studyIRJET Journal
 
IRJET- Modeling, Simulation and Control of a Photovoltaic Energy System w...
IRJET-  	  Modeling, Simulation and Control of a Photovoltaic Energy System w...IRJET-  	  Modeling, Simulation and Control of a Photovoltaic Energy System w...
IRJET- Modeling, Simulation and Control of a Photovoltaic Energy System w...IRJET Journal
 
A flywheel energy storage system for an isolated micro-grid
A flywheel energy storage system for an isolated micro-gridA flywheel energy storage system for an isolated micro-grid
A flywheel energy storage system for an isolated micro-gridIJMER
 
A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...
A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...
A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...IJECEIAES
 
Mitigation of Voltage Dip and Swell Faults in Wind Energy Conversion Systems
Mitigation of Voltage Dip and Swell Faults in Wind Energy Conversion SystemsMitigation of Voltage Dip and Swell Faults in Wind Energy Conversion Systems
Mitigation of Voltage Dip and Swell Faults in Wind Energy Conversion SystemsIRJET Journal
 
A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...
A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...
A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...ijscmcj
 
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar EnergyIRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar EnergyIRJET Journal
 
Understanding generator set ratings
Understanding generator set ratings   Understanding generator set ratings
Understanding generator set ratings NaveedHussain106
 
Research Internship Report
Research Internship ReportResearch Internship Report
Research Internship ReportArpitSuthar7
 
STATCOM for Improved Dynamic Performance of Wind Farms in Power Grid
STATCOM for Improved Dynamic Performance of Wind Farms  in Power Grid STATCOM for Improved Dynamic Performance of Wind Farms  in Power Grid
STATCOM for Improved Dynamic Performance of Wind Farms in Power Grid IJMER
 
Implementation effects of economics and market operations based model for tra...
Implementation effects of economics and market operations based model for tra...Implementation effects of economics and market operations based model for tra...
Implementation effects of economics and market operations based model for tra...nooriasukmaningtyas
 
Economic viability and profitability assessments of WECS
Economic viability and profitability assessments of WECS Economic viability and profitability assessments of WECS
Economic viability and profitability assessments of WECS IJECEIAES
 
Comparative Analysis of Different Methods of Starting Induction Motor
Comparative Analysis of Different Methods of Starting Induction MotorComparative Analysis of Different Methods of Starting Induction Motor
Comparative Analysis of Different Methods of Starting Induction MotorIRJET Journal
 
Consideration of reactive energy in the tariff structure
Consideration of reactive energy in the tariff structureConsideration of reactive energy in the tariff structure
Consideration of reactive energy in the tariff structureIAEME Publication
 
Renewable Energy Harvesting Using SuperCapacitor
Renewable Energy Harvesting Using SuperCapacitorRenewable Energy Harvesting Using SuperCapacitor
Renewable Energy Harvesting Using SuperCapacitorIRJET Journal
 
Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...
Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...
Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...IJPEDS-IAES
 

Similar to Load Forecasting Using LSTM Model (20)

IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...
IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...
IRJET- A Grid-Control Scheme Connected to a Wind Energy System for Improving ...
 
Numerical simulation of Hybrid Generation System: a case study
Numerical simulation of Hybrid Generation System: a case studyNumerical simulation of Hybrid Generation System: a case study
Numerical simulation of Hybrid Generation System: a case study
 
IRJET- Modeling, Simulation and Control of a Photovoltaic Energy System w...
IRJET-  	  Modeling, Simulation and Control of a Photovoltaic Energy System w...IRJET-  	  Modeling, Simulation and Control of a Photovoltaic Energy System w...
IRJET- Modeling, Simulation and Control of a Photovoltaic Energy System w...
 
A flywheel energy storage system for an isolated micro-grid
A flywheel energy storage system for an isolated micro-gridA flywheel energy storage system for an isolated micro-grid
A flywheel energy storage system for an isolated micro-grid
 
A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...
A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...
A Comparison Study of Reactive Power Control Strategies in Wind Farms with SV...
 
Mitigation of Voltage Dip and Swell Faults in Wind Energy Conversion Systems
Mitigation of Voltage Dip and Swell Faults in Wind Energy Conversion SystemsMitigation of Voltage Dip and Swell Faults in Wind Energy Conversion Systems
Mitigation of Voltage Dip and Swell Faults in Wind Energy Conversion Systems
 
A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...
A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...
A NOVEL SYSTEM OPTIMIZATION OF A GRID INDEPENDENT HYBRID RENEWABLE ENERGY SYS...
 
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar EnergyIRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
 
Understanding generator set ratings
Understanding generator set ratings   Understanding generator set ratings
Understanding generator set ratings
 
Research Internship Report
Research Internship ReportResearch Internship Report
Research Internship Report
 
DDC
DDCDDC
DDC
 
STATCOM for Improved Dynamic Performance of Wind Farms in Power Grid
STATCOM for Improved Dynamic Performance of Wind Farms  in Power Grid STATCOM for Improved Dynamic Performance of Wind Farms  in Power Grid
STATCOM for Improved Dynamic Performance of Wind Farms in Power Grid
 
Implementation effects of economics and market operations based model for tra...
Implementation effects of economics and market operations based model for tra...Implementation effects of economics and market operations based model for tra...
Implementation effects of economics and market operations based model for tra...
 
Economic viability and profitability assessments of WECS
Economic viability and profitability assessments of WECS Economic viability and profitability assessments of WECS
Economic viability and profitability assessments of WECS
 
Comparative Analysis of Different Methods of Starting Induction Motor
Comparative Analysis of Different Methods of Starting Induction MotorComparative Analysis of Different Methods of Starting Induction Motor
Comparative Analysis of Different Methods of Starting Induction Motor
 
Consideration of reactive energy in the tariff structure
Consideration of reactive energy in the tariff structureConsideration of reactive energy in the tariff structure
Consideration of reactive energy in the tariff structure
 
Allen Report
Allen ReportAllen Report
Allen Report
 
Renewable Energy Harvesting Using SuperCapacitor
Renewable Energy Harvesting Using SuperCapacitorRenewable Energy Harvesting Using SuperCapacitor
Renewable Energy Harvesting Using SuperCapacitor
 
A different visions for uninterruptible load using hybrid solar-grid energy
A different visions for uninterruptible load using hybrid solar-grid energyA different visions for uninterruptible load using hybrid solar-grid energy
A different visions for uninterruptible load using hybrid solar-grid energy
 
Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...
Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...
Modeling and Control of a Doubly-Fed Induction Generator for Wind Turbine-Gen...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
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
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
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
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 

Recently uploaded (20)

Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
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
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
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🔝
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
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...
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 

Load Forecasting Using LSTM Model

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 966 Load Forecasting Using LSTM Model Amal Alhammadi1, Jawaher Alshamsi2, Maryam Almajidi3, Reema Alzarooni4 1Engineer, 2Senior Engineer, 3Actg. Asst. Manager, 4Actg. Manager Transmission Protection Department, Dubai Electricity and Water Authority (PJSC), Dubai, UAE Key Words: LSTM Model, Load Forecasting, Generators, Electricity, Time series, Coding, Peak load data, RNN. 1. INTRODUCTION Load forecasting has become a necessity in the power industry. For the energy utilities to maintain the continuity of their services with minimum interruptions, certain measures ought to take place such as outage planning, energy storage management, market supply and demand, power plants maintenance schedules, and so on.All ofwhich are dependent on load forecasting [1]. LSTM offers the tools that could assist the power industry to maintain effective services by forecasting the future demand based on past data. LSTM model is one of the types of Recurrent Neural Networks (RNN) that has shown outstanding results in sequence learning problems [2]. This paper aims to utilize the LSTM model to forecast load demandwiththeuseofpast data of 4 consecutive years. It will first discuss the gathered data from the different generators, then their behavior due to the varied load, and lastly the codingusedforLSTMmodel to achieve the desired results. 1.1 The Generators The data for the load is gathered from four types of generators, which are Coal Old, Coal New, Gas, and Peaker generators. The power plant Coal Old and Coal New have similar operation systems and function as thermal power stations that burn coal to generate electricity. A Coal-Fired Power Station is a type of fossil fuel powerstationinwhichit is usually crushed and then burned in a coal-fired boiler [3]. As figure 1 indicates, steam is generated from the boiled water, which is used to spin the turbines that turn generators. Therefore, mechanical, thermal and electrical energies are generated due to chemical energy stored in the coal [4]. Coal that has been ground into a fine powder is blown into a boiler and burned. Due to the high heat, the water runs in the pipe of the boiler will steam and cause a high pressure which will turn the blades of theturbinethat’s connected to the shaft. Figure -1: Coal-fired power station [5] As a result of that, the generator will spin and produce electricity [3]. The Gas Power Plants generateelectricityusingnatural gas as their fuel. All the natural gas power plants can generate electricity with different purposes. Gas turbine can be used in all-natural gas plants by adding natural gas and stream of air that will expands and causes the rotationofthemagnetin the generator which will produce electricity. The emissions of the natural gas plants is more significant than a nuclear power plant and it is significantly contribute to climate change regardless the air quality improvement [6]. Peaker power plant is a mixture of load power plants to supply energy to grid. The base load powerplantssupplythe reliable amount of energy that is in daily bases, called the base load. Examples of base load power plants include hydroelectric, coal or nuclear. Also, the Peaker Power Plant is a power plant that only turns on during times when electricity is at its peak demand in which it operates differently when compared to other power plants that generates the electricity. Moreover, the cost that Peaker Power Plant reaches its maximum and provide electricity into the grid when energy demand is at its maximum, in factthe power supplied by Peaker Power Plant is at higher price per kWh because they only supplypowerforfewhours per year with a fast rate response [7]. Finally, the energy ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - This paper represents the application of Long- Short Term Memory (LSTM) deep network study that is focused on load forecasting with long-shorttermmemory. The LSTM enables generating a forecast for future loads and the requirement for operating a combination of generators in order to meet electrical demand. To achieve an accurate load forecasting, the load data for each generator is separated and used to train an LSTM model. The objective of the study is to develop an efficient and accurate method of forecasting the load by utilizing data for the past 4 years (i.e. from 2018 to 2021) in LSTM model to predict the future outcomes based on the past time series. Essentially, the final forecast is estimated using numerical code expressions of the peak load data collected in the past 4 years.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 967 source used for Peaker Plants is fossil fuel, which is natural gas [7]. Needless to say, each of the generators have different constraints associated with it, such as Fuel Cost ($/MWh), Maintenance Cost ($/h), Engine Cost ($/switch), Minimum and Maximum Generation Level (MW), Ramp Up and Ramp Down (MW/h), Minimum Upper and Lower Time (h) arethe constraints and have been collected for each power plant. The details of which are shown in table-1. Table -1: Power Plant Properties Constraints CoalOld CoalNew Gas Peaker FuelCost ($/MWh) 30 25 45 60 MaintenanceCost ($/h) 20 35 50 10 EngineCost ($/switch) 900 650 200 80 MinGenerationLevel (MW) 120 90 40 3 MaxGenerationLevel (MW) 800 250 200 120 RampUp (MW/h) 30 40 80 800 RampDown (MW/h) 50 50 100 1900 MinimumUpperTime (h) 4 3 5 1 MinimumLowerTime (h) 3 1 4 1 The Power Plant properties are enteredinthe pythoncoding program as shown in figure 2. Figure -2: Constraints per generator in Python program 1.2 Generators Behavior The data of each of the generators versus time in a week (total of 168 hours) are collected, table 2, and entered in python codes specifically performed for the past four years (2018 to 2021). The total power generated versus time will be implemented from the results in python coding program. Table -2: Sample of Data Gathered from 2018 to 2021 Day Month Year Seconds Demand 1 1 2018 0 56234 1 1 2018 1600 461234 1 1 2018 3600 106345 1 1 2019 1800 52473 1 1 2019 3600 53197 1 1 2019 5400 53991 1 1 2020 0 66037 1 1 2020 1800 70021 1 1 2020 3600 73805 1 1 2021 0 68246 1 1 2021 1800 67648 1 1 2021 3600 67591 In order to visualize the behavior of each power generated for each plant versus time (in hours), the codes in figure 3 has been inserted in Python taking in consideration the values of the constraints for each power plant. Figure -3: Codes for power generated for each plant versus time
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 968 Upon running the codes, Chart 1 shows the results of the maximum and minimum loads, which can be read and compared with maximum and minimum generation level that is taken from table-2 of power plant properties for each power plant for a week (168 hours). It is shown that for all the four power plants the demand (load) level isnearlyclose to the generation level. In fact, during week days which can be taken as full load condition the peak value for the maximum load level shown in coal old power plant is about 600 MW with maximum generation level of 800 MW andthe load is reduced over the weekend which can be considered less load condition almost 150MW with minimum generation level of 120MW. Chart -1: Power generated for each plant versus time Moreover, in case of coal new the maximum load level is about 250MW with maximum generation level of also 250MW and this can be concluded that these maximum peaks are due to the utilizing of electricity during day hours more than night time and at working days condition, however the minimum load level can be viewed from plot as about 65MW with minimum generation level of 90MW. Finally, in the case of Gas Power Plant, the maximum peaks are shown with maximum load of 200MW with maximum generation level of 200MW and the peaks are getting reduced during less load condition which is30MWasshown from the plot and 40MW minimum generationlevel thatisto less usage of electricity during some parts of the day and without working days or school days condition. Moreover, the same scenario applies for Peaker Power Plant in which during working hours and week days the maximum load it reaches is about 95MW with maximum generation level of 120MW and the least load it reaches is about 7MW in which the minimum generation level in this case is 3MW. The maximum generation levels and the peaks of the maximum load level for each generator are almostneareachother,also the minimum generation level value is close the minimum peaks of the load level. Finally, as theresultsindicate that the generation and the load are almost near each other which will result in having the desirable behavior as shown in Chart 2. Chart -2: Total Power Plant Generated vs Load Profile 2. Logic of LSTM model and Outcome Unlike the traditional types of Neural Network models that only rely on previous N histories, LSTM is capable oflearning long-term dependencies and capable to capture nonlinear patterns in time series data [8]. Hence, it is a great candidate to predict subsequent demand every half-hour. In this design, LSTM deep network developed according to the following steps: Step 1: Load Python Libraries Step 2: Load Data and prepare Data Step 3: Design a Network Step 4: Train a Network Step 5: Test a Network The evaluation of the forecasting model accuracy can be done by measuring Mean Absolute Error (MAE) and Mean Absolute Percentage Error (MAPE) [9]. MAE uses the same scale as the data being measured, the mean absolute error is a common measure of forecast error in time series analysis, MAE is calculated as: It is the average of the absolute errors ei, where yi is the prediction and xi the true value. Note that alternative formulations may include relative frequencies as weight factors.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 01 | Jan 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 969 Different from MAE, MAPE measures theerrorproportion to the absolute value, it expresses the errorasa percentageand can be calculated using the following equation. Where n is the total number of forecast values, At and Ft denote the actual and forecast value at time t, respectively. The Mean Average Percentage Error (MAPE) is 5.325 which represent the average deviation between the forecasted value and actual values and the resultfoundacceptablesince it is less than 10% of average demand, and Mean Average Error (MAE) is 631.490 and the result is accepted since it within the ± 5% of the average demand. The obtained graphs in figure 6 shows the actual versus predicted load demand next half hour (x*1800 second). Chart -3: Actual Vs Predicted Load Demand 3. CONCLUSION As a conclusion the objective to develop an efficient and accurate method of forecasting the load by utilizing data for the past 3 years using LSTM model was achieved through developed model in Python which enabled to predict the future outcomes based on thepasttime.Moreover,theseries maximum generation levels and the peaks of the maximum load level for each generator are almostneareachother,also the minimum generation level value is close the minimum peaks of the load level. Finally, as theresultsindicatethat the generation and the load are almost near each other. REFERENCES [1] T. Ciechulski and S. Osowski, "High Precision LSTM Model for Short-Time Load Forecasting in Power Systems," Energies, vol. 14, no. 2983, pp. 1-15, 21 May 2021. [9] C. Tian, J. Ma, C. Zhang and P. Zhan, "A Deep Neural Network Model for Short- Term Load," Energies, vol. 11, no. 12, pp. 1-13, 2018. [8] H. Abbasimehr and R. Paki, "Improving time series forecasting using LSTM and attention models," Journal of Ambient Intelligence and Humanized Computing, vol. 13, no. 1, pp. 673-691, 2022. [7] Edgecom Energy Inc., "What is a Peaker Plant," Edgecom Energy, 28 October 2021. [Online]. Available: https://www.edgecomenergy.ca/resources1/what- is-a-peaker-plant. [Accessed 21 September 2022]. [6] University of Calgary, "Natural Gas Power Plant," Energy Education, [Online]. Available: https://energyeducation.ca/encyclopedia/Natural_ gas_power_plant. [Accessed 20 September 2022]. [5] University of Calgary, "Coal fired power plant," [Online]. Available: https://energyeducation.ca/encyclopedia/Coal_fire d_power_plant#cite_note-8. [Accessed 10 November 2022]. [4] J. P. Ciferno, T. E. Fout, A. P. Jones and J. T. Murphy, "Capturing Carbon from Existing Coal-Fired Power Plant," Chemical Engineering Progress, vol. 105, no. 4, pp. 33-41, April 2009. [3] H. Bambhaniya, "What is Coal Power Plant and How Does it Work?," 23 September 2021. [Online]. Available: https://www.engineeringchoice.com/what-is-coal- power-plant/. [Accessed 16 September 2022]. [2] J. M. Jiménez, L. Stokes, C. Moss, Q. Yang and V. N. Livina, "Modelling energy demand response using long short-term memory neural networks," Energy Efficiency, vol. 13, pp. 1263-1280, 24 July 2020.