Dr SN Singh, Professor Department of Electrical Engineering. Indian Institute of Technology Kanpur

Size: px
Start display at page:

Download "Dr SN Singh, Professor Department of Electrical Engineering. Indian Institute of Technology Kanpur"

Transcription

1 Short Term Load dforecasting Dr SN Singh, Professor Department of Electrical Engineering Indian Institute of Technology Kanpur

2 Basic Definition of Forecasting Forecasting is a problem of determining the future values of a timeseries from current and past values. Past measurements Forecasted values one step ahead two step ahead Multiple step ahead Time sampling can be in sec, min, hours, days, months and years Short term forecast Medium term forecast Long term forecast

3 Role of Forecasting in Electric Power System Before Deregulation of Electric Power System Only Load Demand forecasting is carried Economic operation and Unit commitment Maintenance and planning of power system After Deregulation of Electric Power System Monopolistic Deregulated Market Motivation: Creating competition among the suppliers Leaving choices to the buyers

4 Role of Forecasting in Electric Power System.Contd. Electricity Market Operation GENCO s/suppliers Energy, Ancillary Services, and Transmission Forecasting Load Day ahead Price Wind Power Hour ahead Bids Bids Bidding Bidding strategies/risk strategies/risk Management Management Schedules Real Time Markets Shdl Schedules ISO s Market Forecast Load Price Market Operation SCUC A S Auction Cong. Mgmt. Trans. Pii Pricing

5 Market Bidding Process Day ahead bidding for day 2 Hour ahead bidding for day 2 Day 1 Real Day 2 time Market clearing for day 2 Day ahead Forecast (24+6hrs)

6 Important Tools 1. Load Forecast 2. Price Forecast 3. Operating Reserve Margin Forecast 4. Wind Forecast System Operator Point of View: Planning Problems: Due to uncertainty, unlike conventional generators, wind power generation cannot be included into ELD and UC problems. Operational: Frequency control, Voltage control, Power Quality, Ancillary services provision. Wind power producer point of view: Bidding in dayahead, adjustment andsettling Electricity Markets to maximize profits/minimize their imbalance costs.

7 Factors Influencing the Forecast Variable Time Factor Hour in a day Day of the Week Holiday Load Demand Type of Customer Domestic loads Commercial loads Industrial loads Weather Parameters Temperature Humidity Sky cover Sun shine Wind Speed & Direction

8 Effect of Time Factor x Load Dem mand (MW) First Week Second Week Time sample

9 Dependency on Weather Parameter: Temperature Temp ( o C) Loa ad Demand (MW) 5 x Time sample Load Demand (MW) x Temp ( o C)

10 Factors Influencing Electricity Market Price Load Demand Network Congestion Electricity Market Clearing Price Reserve Margin Fuel Prices Available Hydro Generation

11 Price vs. Load Demand load demand (MW W) time samples (hrs) MC CP ($/MWh) ) Market Clea aring price ($/MWh time samples (hrs) MCP ($/MWh) load demand (MW) time samples (hrs)

12 Factors Influencing Wind Power Generation Wind Speed Wind Power Wind Direction Wind Turbine Layout Terrain

13 Wind Speed (m m/s) Wind Power (MW) Wind speed and wind power time series x Time sample x 1 4

14 Wind Speed vs. Wind Power scatter plot Win nd Power (MW) Wind Speed (m/s)

15 Forecasting Approaches Linear Regression Models : The forecast value is linearly dependent on the past historical values of the time series. (AR, ARMA, ARIMA, GARCH, etc.) AR(p): Autoregressive model of order p ARMA(p,q): Autoregressive Moving Average model of order (p,q). MA(q): Moving Average model of order q Generalized AutoRegressive Conditional Heteroskedasticity (GARCH)

16 The general process for a GARCH model involves three steps. The first is to estimate a best-fitting autoregressive model; secondly, compute autocorrelations of the error term and lastly, test for significance. GARCH models are used by financial professionals in several arenas including trading, investing, hedging and dealing.

17 Forecasting Approaches (Contd..) ARIMA: Autoregressive Integrated Moving Average Model ARIMA is a generalized form of ARMA model. It is applied when time series has some non stationary behavior (do not vary about a fixed mean). Fractional ARIMA: Thistypeof modelsareemployed employed when time series exhibits long memory. F ARIMA model is a special case of ARIMA(p,d,q) process. Where parameter d assumes fractionally continuous values in the range (.5,.5).

18 Correlation Analysis Finding the appropriate values of p and q can be facilitated by Partial Auto Correlation Functions (PACF) and Auto Correlation Functions (ACF). If Mean of a Time series is given : and Variance is given by : Then auto correlation at lag k is given by :

19 Example in Matlab : AR(1) 1 AR(1): x t = x t-1 +e, with =.8 8 e=randn(1,1); x=zeros(1,1); x(1)=e(1); 5 alpha=.8; for i=2:1 x(i)=alpha*x(i 1)+e(i); end subplot(3,1,1) plot(x); title('ar(1): x_{t}=\alpha{x_{t 1}+e}, with \alpha{=.8}'); subplot(3,1,2); autocorr(x,25,[],2); subplot(3,1,3); parcorr(x,25,[],2); AR( (1) ACF PACF Lag Lag

20 Example in Matlab : AR(2) 1 AR(2): x t = 1 x t x t-2 +e, with 1=1.5, 5 2 =-.75 e=randn(1,1); 5 x=zeros(1,1); x(1)=e(1); x(2)=e(2); alpha1=1.5; alpha2 =.75; -5 for i=3:1, x(i)=alpha1*x(i -1 1)+alpha2*x(i 2)+e(i); end subplot(3,1,1) plot(x); title('ar(2): x_{t}=\alpha_{1}x_{t 1}+\alpha_{2}x_{t {t 2}+e, with \alpha{1}=1.5, \alpha_{2}=.75'); subplot(3,1,2); autocorr(x,25,[],2); subplot(3,1,3); parcorr(x,25,[],2); A R(2) ACF Lag 1 PACF Lag

21 Example in Matlab : MA(1) 4 MA(1): x t = x t-1 +e, with =.8 e=randn(11,1); 2 theta=.8; x=e(2:11,1) theta*e(1:1,1); -2 subplot(3,1,1) plot(x); title('ma(1): x_{t}=\theta{x_{t 1}+e}, with \theta{=.8}'); subplot(3,1,2); autocorr(x,25,[],2); subplot(3,1,3); parcorr(x,25,[],2); MA(1) ACF Lag 1.5 PACF Lag

22 Example in Matlab : MA(2) 5 MA(2): x t =e t - 1 e t-1-2 e t-2 e=randn(12,1); theta1= 1.5; theta2=.8; x=e(3:12,1) theta1*e(2:11,1) theta2*e(1:1,1); subplot(3,1,1); plot(x); title('ma(2): x_{t}=e_{t} \theta_{1}e_{t 1} \theta_{2}e_{t 2} ); subplot(3,1,2); autocorr(x(2:end),2,[],2); subplot(3,1,3); parcorr(x(2:end),2,[],2); 2); ) MA(2 ACF PACF Lag Lag

23 Example in Matlab : ARMA(2,1) clear all; close all; e=2*randn(3,1); x=zeros(3,1); x(1)=e(1); x(2)=e(2); alpha1=.9; alpha2 =.3; 3 theta1=.5; for i=3:3 x(i)=alpha1*x(i 1)+ () ( ) alpha2*x(i 2)+ e(i) theta1*e(i 1) ; end subplot(3,1,1) 1) plot(x); subplot(3,1,2); autocorr(x(25:end),3,[],2); subplot(3,1,3); parcorr(x(25:end),3,[],2); ) ARMA(2,1 ACF PACF Lag Lag

24 ACF and PACF for casual Time series models AR(p) MA(q) ARMA(p,q) ACF Tails off Cuts off after lag q Tails off PACF Cuts off after lag p Tailsoff Tailsoff

25 Estimation of Model Parameters After choosing p and q the model can be fitted by linear least squares regression to find the model parameters which minimize the error terms.

26 Consider a univariate AR(p) process: State-Space Models This could be written in state-space form as, state equation observation equation

27 Limitations of Linear Regression Models As they are linear models, they cannot capture the non linear relation between the independent and dependent variable. The forecasting error increases rapidly with the increase in lookahead time. The model parameters have to be updated very frequently.

28 Forecasting Approaches..contd Non Linear Regression models: Artificial Neural Networks (ANN): are well established in function approximation, many variants of NNs are employed in the field of forecasting problem. Like FFNN, RNN, RBF, WNN. Network Parameters + Back Propagation Algorithm, Evolutionary based Optimization methods like GA, PSO are also applied for network training. Input variables are selected using ACF and PACF.

29 Other Methods.. Fuzzy Logic Adaptive Neuro Fuzzy Inference System (ANFIS) Dt Data Mining i techniques like clustering and Support Vector Machines (SVM) based classification and Regression models Wavelet pre filtering based ANN and Fuzzy models.

30 Benchmark Models

31 Then, Measure of Errors

32 AWNN : Architecture

33 Continuous Wavelet Transforms A wavelet is a small wave which grow and decays essentially in a limited time period. Should satisfy two basic properties and

34 Training Algorithm

35 Case study: Load Forecasting Load Dema and (MW) 3.5 x ACF Lag.5 PACF Lag

36 Cross correlation between Load and Temp. 5 x 14 Load (MW) Tem mp ( C) XCF Lag

37 Input lag hours selected for Load Forecasting Load Terms Temp. Terms Temp. time series Load time series Epochs: (input, output) pairs

38 AWNN

39 x 14 Hour ahead load forecast Load Dem mand (MW) Hour =.695

40 Loa ad Demand (MW) 24 hours ahead dforecast x 14 Sat Sun Mon Tue Wed Thu Fri Sat Sun time samples Forecast hour MAPE Average

41 Case study: Price Forecasting 3 MC CP ($/MWh) time samples (hrs) ACF Lag MCP ($/MWh) time samples (hrs)

42 3 25 MCP ($/MWh) load demand (MW) time samples (hrs) time samples (hrs) 1 Price Terms Load Terms.5 XCF Lag

43 Price Forecasting Results 2 1 hr ahead Price Forecast (MAPE = ) Forecast hour MAPE MCP ($/MWh) MCP ($/MW Wh) time samples (hrs) hr ahead Price Forecast time samples (hrs) Average

44 Wind Speed Time Series 25 2 wind sp peed time samples 2 wind spe eed time samples

45 Schematic Block Diagram for Wind Speed Forecasting

46 Multiresolution Analysis of Wind Speed Time Series S7 D7 D6 D5 D4 D3 D2 D1 wind Series time (hours)

47 ACF s of Decomposed Wind Speed Time Series 1 S7-1 1 D7-1 1 D6-1 1 D5-1 1 D4-1 1 D3-1 1 D2-1 1 D Lag

48 Network Architecture and Input Lag Hours Decomposed Input Lag hours NetworkArchitecture Signal AWNN FFNN S7 1 14, , , , D7 1 12,76 83, D6 1 1,41 44, D5 1 6,21 23, D4 1 3,11 13,23 25,48, D3 1,2,5,6,12,6, D2 3,6,9, D1 1,2,5,

49 Wind Power Forecast Wind Speed highly stochastic random non stationary. Wind Farm speed Wind rated speed Cut in speed Manufacturer curve Wind Power outp put

50 Wind Power Forecasting: Time Horizon Very Short Term Forecasting : Up to 2 3 h in steps of 1min. or 15min. Turbine control Real time participation in electricity market. Short Term Forecasting : Up to 24h in steps of 1h. Hour ahead bidding Intraday market Day ahead market Unit commitment and Economic dispatch Ancillary services management Day ahead reserve setting Medium Term Forecasting ( With NWP inputs): up to 72h in steps of 1h. In addition to the above mentioned benefits Maintenance planning of wind farms Wind farm and storage device Coordination Congestion management Maintenance planning of network lines. 5

51 Wind Power Forecasting: Approaches 1) NWP forecasts Physical Model Wind Speed at Hub height WP Forecast Manufacturer curve NWP forecasts 2) Wind speed Wind power Statistical Model WP Forecast Available historical measurements. ARX, ARMAX, NN, Fuzzy, ANIF

52 A Two stage approach for Wind Power Forecast Historical measurements of wind speed. AWNN Wind speed forecasts Wind speed Wind power FFNN WP Forecast

53 Autocorrelation Analysis of Wind Series la tio n p le A u to c o rre Sam n A utocorrelatio Sample Sample Autocorrelation Function Sample Autocorrelation Lag Function Lag Samp le A utoc orrela tion n S a m p le A utocorrelatio Sample Autocorrelation Function Sample Autocorrelation Lag Function Lag

54 Hour Ahead Forecast of Wind Speed 12 1 wind sp peed 8 AWNN 6 FFNN Actual hours

55 3 hours ahead Wind Speed Forecast actual forecast by AWNN forecast by FFNN wind spee ed (m/s) time (hours)

56 Comparative Performance 4.5 errors MAE of AWNN MAE of FFNN MAE of NR MAE of PER RMSE of AWNN RMSE of FFNN RMSE of NR RMSE of PER look-ahead time (hours)

57 Percentage Improvement per rcentage imp provement MAE over PER RMSE over PER MAE over NR RMSE over NR look-ahead time (hours)

58 Wind speed to Wind Power Transformation Wind Forecasted speed wind speed FFNN Wind power wind power Forecast FFNN Inputs: wind speed {, 1, 2} lag hours and from wind power series {1, 2, 3, 4, 5, 6} lag hours.

59 Error Distributions and Forecasting Ability Occurence e of errors(%) ce of errors(% %) Occuren Error(% of P inst ) 1 hr ahead forecast error distributions Error(% of P inst ) inst 3 th hr ahead forecast error distributions margin(%) hin the error of tim es wit % % 12.5% look-ahead time (hours)

60

Forecasting of Renewable Power Generations

Forecasting of Renewable Power Generations Forecasting of Renewable Power Generations By Dr. S.N. Singh, Professor Department of Electrical Engineering Indian Institute of Technology Kanpur-2816, INDIA. Email: snsingh@iitk.ac.in 4-12-215 Side 1

More information

Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical Load

Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical Load International Journal of Engineering Research and Development e-issn: 2278-67X, p-issn: 2278-8X, www.ijerd.com Volume 13, Issue 7 (July 217), PP.75-79 Short-Term Load Forecasting Using ARIMA Model For

More information

Prashant Pant 1, Achal Garg 2 1,2 Engineer, Keppel Offshore and Marine Engineering India Pvt. Ltd, Mumbai. IJRASET 2013: All Rights are Reserved 356

Prashant Pant 1, Achal Garg 2 1,2 Engineer, Keppel Offshore and Marine Engineering India Pvt. Ltd, Mumbai. IJRASET 2013: All Rights are Reserved 356 Forecasting Of Short Term Wind Power Using ARIMA Method Prashant Pant 1, Achal Garg 2 1,2 Engineer, Keppel Offshore and Marine Engineering India Pvt. Ltd, Mumbai Abstract- Wind power, i.e., electrical

More information

Day Ahead Hourly Load and Price Forecast in ISO New England Market using ANN

Day Ahead Hourly Load and Price Forecast in ISO New England Market using ANN 23 Annual IEEE India Conference (INDICON) Day Ahead Hourly Load and Price Forecast in ISO New England Market using ANN Kishan Bhushan Sahay Department of Electrical Engineering Delhi Technological University

More information

Current best practice of uncertainty forecast for wind energy

Current best practice of uncertainty forecast for wind energy Current best practice of uncertainty forecast for wind energy Dr. Matthias Lange Stochastic Methods for Management and Valuation of Energy Storage in the Future German Energy System 17 March 2016 Overview

More information

CHAPTER 6 CONCLUSION AND FUTURE SCOPE

CHAPTER 6 CONCLUSION AND FUTURE SCOPE CHAPTER 6 CONCLUSION AND FUTURE SCOPE 146 CHAPTER 6 CONCLUSION AND FUTURE SCOPE 6.1 SUMMARY The first chapter of the thesis highlighted the need of accurate wind forecasting models in order to transform

More information

at least 50 and preferably 100 observations should be available to build a proper model

at least 50 and preferably 100 observations should be available to build a proper model III Box-Jenkins Methods 1. Pros and Cons of ARIMA Forecasting a) need for data at least 50 and preferably 100 observations should be available to build a proper model used most frequently for hourly or

More information

Systems Operations. PRAMOD JAIN, Ph.D. Consultant, USAID Power the Future. Astana, September, /6/2018

Systems Operations. PRAMOD JAIN, Ph.D. Consultant, USAID Power the Future. Astana, September, /6/2018 Systems Operations PRAMOD JAIN, Ph.D. Consultant, USAID Power the Future Astana, September, 26 2018 7/6/2018 Economics of Grid Integration of Variable Power FOOTER GOES HERE 2 Net Load = Load Wind Production

More information

Short term wind forecasting using artificial neural networks

Short term wind forecasting using artificial neural networks Discovery Science, Volume 2, Number 6, December 2012 RESEARCH COMPUTER SCIENCE ISSN 2278 5485 EISSN 2278 5477 Science Short term wind forecasting using artificial neural networks Er.Gurpreet Singh 1, Er.Manpreet

More information

Explanatory Information Analysis for Day-Ahead Price Forecasting in the Iberian Electricity Market

Explanatory Information Analysis for Day-Ahead Price Forecasting in the Iberian Electricity Market Energies 2015, 8, 10464-10486; doi:10.3390/en80910464 Article OPEN ACCESS energies ISSN 1996-1073 www.mdpi.com/journal/energies Explanatory Information Analysis for Day-Ahead Price Forecasting in the Iberian

More information

Modelling Wind Farm Data and the Short Term Prediction of Wind Speeds

Modelling Wind Farm Data and the Short Term Prediction of Wind Speeds Modelling Wind Farm Data and the Short Term Prediction of Wind Speeds An Investigation into Wind Speed Data Sets Erin Mitchell Lancaster University 6th April 2011 Outline 1 Data Considerations Overview

More information

2. An Introduction to Moving Average Models and ARMA Models

2. An Introduction to Moving Average Models and ARMA Models . An Introduction to Moving Average Models and ARMA Models.1 White Noise. The MA(1) model.3 The MA(q) model..4 Estimation and forecasting of MA models..5 ARMA(p,q) models. The Moving Average (MA) models

More information

PowerPredict Wind Power Forecasting September 2011

PowerPredict Wind Power Forecasting September 2011 PowerPredict Wind Power Forecasting September 2011 For further information please contact: Dr Geoff Dutton, Energy Research Unit, STFC Rutherford Appleton Laboratory, Didcot, Oxon OX11 0QX E-mail: geoff.dutton@stfc.ac.uk

More information

A Hybrid Model of Wavelet and Neural Network for Short Term Load Forecasting

A Hybrid Model of Wavelet and Neural Network for Short Term Load Forecasting International Journal of Electronic and Electrical Engineering. ISSN 0974-2174, Volume 7, Number 4 (2014), pp. 387-394 International Research Publication House http://www.irphouse.com A Hybrid Model of

More information

Frequency Forecasting using Time Series ARIMA model

Frequency Forecasting using Time Series ARIMA model Frequency Forecasting using Time Series ARIMA model Manish Kumar Tikariha DGM(O) NSPCL Bhilai Abstract In view of stringent regulatory stance and recent tariff guidelines, Deviation Settlement mechanism

More information

SHORT TERM LOAD FORECASTING

SHORT TERM LOAD FORECASTING Indian Institute of Technology Kanpur (IITK) and Indian Energy Exchange (IEX) are delighted to announce Training Program on "Power Procurement Strategy and Power Exchanges" 28-30 July, 2014 SHORT TERM

More information

Short Term Load Forecasting Using Multi Layer Perceptron

Short Term Load Forecasting Using Multi Layer Perceptron International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Short Term Load Forecasting Using Multi Layer Perceptron S.Hema Chandra 1, B.Tejaswini 2, B.suneetha 3, N.chandi Priya 4, P.Prathima

More information

GL Garrad Hassan Short term power forecasts for large offshore wind turbine arrays

GL Garrad Hassan Short term power forecasts for large offshore wind turbine arrays GL Garrad Hassan Short term power forecasts for large offshore wind turbine arrays Require accurate wind (and hence power) forecasts for 4, 24 and 48 hours in the future for trading purposes. Receive 4

More information

Time Series and Forecasting

Time Series and Forecasting Time Series and Forecasting Introduction to Forecasting n What is forecasting? n Primary Function is to Predict the Future using (time series related or other) data we have in hand n Why are we interested?

More information

A Data-Driven Model for Software Reliability Prediction

A Data-Driven Model for Software Reliability Prediction A Data-Driven Model for Software Reliability Prediction Author: Jung-Hua Lo IEEE International Conference on Granular Computing (2012) Young Taek Kim KAIST SE Lab. 9/4/2013 Contents Introduction Background

More information

Solar irradiance forecasting for Chulalongkorn University location using time series models

Solar irradiance forecasting for Chulalongkorn University location using time series models Senior Project Proposal 2102490 Year 2016 Solar irradiance forecasting for Chulalongkorn University location using time series models Vichaya Layanun ID 5630550721 Advisor: Assist. Prof. Jitkomut Songsiri

More information

Short-Term Electricity Price Forecasting

Short-Term Electricity Price Forecasting 1 Short-erm Electricity Price Forecasting A. Arabali, E. Chalo, Student Members IEEE, M. Etezadi-Amoli, LSM, IEEE, M. S. Fadali, SM IEEE Abstract Price forecasting has become an important tool in the planning

More information

We will only present the general ideas on how to obtain. follow closely the AR(1) and AR(2) cases presented before.

We will only present the general ideas on how to obtain. follow closely the AR(1) and AR(2) cases presented before. ACF and PACF of an AR(p) We will only present the general ideas on how to obtain the ACF and PACF of an AR(p) model since the details follow closely the AR(1) and AR(2) cases presented before. Recall that

More information

Predicting the Electricity Demand Response via Data-driven Inverse Optimization

Predicting the Electricity Demand Response via Data-driven Inverse Optimization Predicting the Electricity Demand Response via Data-driven Inverse Optimization Workshop on Demand Response and Energy Storage Modeling Zagreb, Croatia Juan M. Morales 1 1 Department of Applied Mathematics,

More information

Time Series and Forecasting

Time Series and Forecasting Time Series and Forecasting Introduction to Forecasting n What is forecasting? n Primary Function is to Predict the Future using (time series related or other) data we have in hand n Why are we interested?

More information

FORECASTING: A REVIEW OF STATUS AND CHALLENGES. Eric Grimit and Kristin Larson 3TIER, Inc. Pacific Northwest Weather Workshop March 5-6, 2010

FORECASTING: A REVIEW OF STATUS AND CHALLENGES. Eric Grimit and Kristin Larson 3TIER, Inc. Pacific Northwest Weather Workshop March 5-6, 2010 SHORT-TERM TERM WIND POWER FORECASTING: A REVIEW OF STATUS AND CHALLENGES Eric Grimit and Kristin Larson 3TIER, Inc. Pacific Northwest Weather Workshop March 5-6, 2010 Integrating Renewable Energy» Variable

More information

Short Term Wind Power Forecasting Using Autoregressive Integrated Moving Average Modeling

Short Term Wind Power Forecasting Using Autoregressive Integrated Moving Average Modeling From the SelectedWorks of Almoataz Youssef Abdelaziz December 23, 2012 Short Term Wind Power Forecasting Using Autoregressive Integrated Moving Average Modeling Almoataz Youssef Abdelaziz Available at:

More information

Power System Seminar Presentation Wind Forecasting and Dispatch 7 th July, Wind Power Forecasting tools and methodologies

Power System Seminar Presentation Wind Forecasting and Dispatch 7 th July, Wind Power Forecasting tools and methodologies Power System Seminar Presentation Wind Forecasting and Dispatch 7 th July, 2011 Wind Power Forecasting tools and methodologies Amanda Kelly Principal Engineer Power System Operational Planning Operations

More information

FE570 Financial Markets and Trading. Stevens Institute of Technology

FE570 Financial Markets and Trading. Stevens Institute of Technology FE570 Financial Markets and Trading Lecture 5. Linear Time Series Analysis and Its Applications (Ref. Joel Hasbrouck - Empirical Market Microstructure ) Steve Yang Stevens Institute of Technology 9/25/2012

More information

ANN and Statistical Theory Based Forecasting and Analysis of Power System Variables

ANN and Statistical Theory Based Forecasting and Analysis of Power System Variables ANN and Statistical Theory Based Forecasting and Analysis of Power System Variables Sruthi V. Nair 1, Poonam Kothari 2, Kushal Lodha 3 1,2,3 Lecturer, G. H. Raisoni Institute of Engineering & Technology,

More information

Short Term Load Forecasting Based Artificial Neural Network

Short Term Load Forecasting Based Artificial Neural Network Short Term Load Forecasting Based Artificial Neural Network Dr. Adel M. Dakhil Department of Electrical Engineering Misan University Iraq- Misan Dr.adelmanaa@gmail.com Abstract Present study develops short

More information

ANN based techniques for prediction of wind speed of 67 sites of India

ANN based techniques for prediction of wind speed of 67 sites of India ANN based techniques for prediction of wind speed of 67 sites of India Paper presentation in Conference on Large Scale Grid Integration of Renewable Energy in India Authors: Parul Arora Prof. B.K Panigrahi

More information

TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA

TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA CHAPTER 6 TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA 6.1. Introduction A time series is a sequence of observations ordered in time. A basic assumption in the time series analysis

More information

WIND energy has become a mature technology and has

WIND energy has become a mature technology and has 1 Short-term wind power prediction based on models Mario J. Durán, Daniel Cros and Jesus Riquelme Electrical Engineering Department Universidad de Sevilla Abstract The wind power penetration increase and

More information

CAISO Participating Intermittent Resource Program for Wind Generation

CAISO Participating Intermittent Resource Program for Wind Generation CAISO Participating Intermittent Resource Program for Wind Generation Jim Blatchford CAISO Account Manager Agenda CAISO Market Concepts Wind Availability in California How State Supports Intermittent Resources

More information

MODELLING ENERGY DEMAND FORECASTING USING NEURAL NETWORKS WITH UNIVARIATE TIME SERIES

MODELLING ENERGY DEMAND FORECASTING USING NEURAL NETWORKS WITH UNIVARIATE TIME SERIES MODELLING ENERGY DEMAND FORECASTING USING NEURAL NETWORKS WITH UNIVARIATE TIME SERIES S. Cankurt 1, M. Yasin 2 1&2 Ishik University Erbil, Iraq 1 s.cankurt@ishik.edu.iq, 2 m.yasin@ishik.edu.iq doi:10.23918/iec2018.26

More information

Lecture 3: Autoregressive Moving Average (ARMA) Models and their Practical Applications

Lecture 3: Autoregressive Moving Average (ARMA) Models and their Practical Applications Lecture 3: Autoregressive Moving Average (ARMA) Models and their Practical Applications Prof. Massimo Guidolin 20192 Financial Econometrics Winter/Spring 2018 Overview Moving average processes Autoregressive

More information

Electric Load Forecasting: An Interval Type-II Fuzzy Inference System Based Approach

Electric Load Forecasting: An Interval Type-II Fuzzy Inference System Based Approach Electric Load Forecasting: An Interval Type-II Fuzzy Inference System Based Approach Nirmal Roy #, Prasid Mitra #2 Department of Electrical Engineering, Jadavpur University Abstract Accurate prediction

More information

MODELING INFLATION RATES IN NIGERIA: BOX-JENKINS APPROACH. I. U. Moffat and A. E. David Department of Mathematics & Statistics, University of Uyo, Uyo

MODELING INFLATION RATES IN NIGERIA: BOX-JENKINS APPROACH. I. U. Moffat and A. E. David Department of Mathematics & Statistics, University of Uyo, Uyo Vol.4, No.2, pp.2-27, April 216 MODELING INFLATION RATES IN NIGERIA: BOX-JENKINS APPROACH I. U. Moffat and A. E. David Department of Mathematics & Statistics, University of Uyo, Uyo ABSTRACT: This study

More information

Solar Nowcasting with Cluster-based Detrending

Solar Nowcasting with Cluster-based Detrending Solar Nowcasting with Cluster-based Detrending Antonio Sanfilippo, Luis Pomares, Daniel Perez-Astudillo, Nassma Mohandes, Dunia Bachour ICEM 2017 Oral Presentation 26-29June 2017, Bari, Italy Overview

More information

Bringing Renewables to the Grid. John Dumas Director Wholesale Market Operations ERCOT

Bringing Renewables to the Grid. John Dumas Director Wholesale Market Operations ERCOT Bringing Renewables to the Grid John Dumas Director Wholesale Market Operations ERCOT 2011 Summer Seminar August 2, 2011 Quick Overview of ERCOT The ERCOT Market covers ~85% of Texas overall power usage

More information

FORECASTING ISSUES IN PRESENT DAY POWER SYSTEMS

FORECASTING ISSUES IN PRESENT DAY POWER SYSTEMS FORECASTING ISSUES IN PRESENT DAY POWER SYSTEMS A synopsis submitted for partial fulfilment of the requirement for the degree of Doctorate of Philosophy In Electrical Engineering BY SUMIT (Registration

More information

Wind Power Production Estimation through Short-Term Forecasting

Wind Power Production Estimation through Short-Term Forecasting 5 th International Symposium Topical Problems in the Field of Electrical and Power Engineering, Doctoral School of Energy and Geotechnology Kuressaare, Estonia, January 14 19, 2008 Wind Power Production

More information

WEATHER DEPENENT ELECTRICITY MARKET FORECASTING WITH NEURAL NETWORKS, WAVELET AND DATA MINING TECHNIQUES. Z.Y. Dong X. Li Z. Xu K. L.

WEATHER DEPENENT ELECTRICITY MARKET FORECASTING WITH NEURAL NETWORKS, WAVELET AND DATA MINING TECHNIQUES. Z.Y. Dong X. Li Z. Xu K. L. WEATHER DEPENENT ELECTRICITY MARKET FORECASTING WITH NEURAL NETWORKS, WAVELET AND DATA MINING TECHNIQUES Abstract Z.Y. Dong X. Li Z. Xu K. L. Teo School of Information Technology and Electrical Engineering

More information

Probabilistic forecasting of solar radiation

Probabilistic forecasting of solar radiation Probabilistic forecasting of solar radiation Dr Adrian Grantham School of Information Technology and Mathematical Sciences School of Engineering 7 September 2017 Acknowledgements Funding: Collaborators:

More information

A Hybrid Method of CART and Artificial Neural Network for Short-term term Load Forecasting in Power Systems

A Hybrid Method of CART and Artificial Neural Network for Short-term term Load Forecasting in Power Systems A Hybrid Method of CART and Artificial Neural Network for Short-term term Load Forecasting in Power Systems Hiroyuki Mori Dept. of Electrical & Electronics Engineering Meiji University Tama-ku, Kawasaki

More information

Recent US Wind Integration Experience

Recent US Wind Integration Experience Wind Energy and Grid Integration Recent US Wind Integration Experience J. Charles Smith Nexgen Energy LLC Utility Wind Integration Group January 24-25, 2006 Madrid, Spain Outline of Topics Building and

More information

USE OF FUZZY LOGIC TO INVESTIGATE WEATHER PARAMETER IMPACT ON ELECTRICAL LOAD BASED ON SHORT TERM FORECASTING

USE OF FUZZY LOGIC TO INVESTIGATE WEATHER PARAMETER IMPACT ON ELECTRICAL LOAD BASED ON SHORT TERM FORECASTING Nigerian Journal of Technology (NIJOTECH) Vol. 35, No. 3, July 2016, pp. 562 567 Copyright Faculty of Engineering, University of Nigeria, Nsukka, Print ISSN: 0331-8443, Electronic ISSN: 2467-8821 www.nijotech.com

More information

Total Market Demand Wed Jan 02 Thu Jan 03 Fri Jan 04 Sat Jan 05 Sun Jan 06 Mon Jan 07 Tue Jan 08

Total Market Demand Wed Jan 02 Thu Jan 03 Fri Jan 04 Sat Jan 05 Sun Jan 06 Mon Jan 07 Tue Jan 08 MW This report provides a summary of key market data from the IESO-administered markets. It is intended to provide a quick reference for all market stakeholders. It is composed of two sections: Section

More information

Heat Load Forecasting of District Heating System Based on Numerical Weather Prediction Model

Heat Load Forecasting of District Heating System Based on Numerical Weather Prediction Model 2nd International Forum on Electrical Engineering and Automation (IFEEA 2) Heat Load Forecasting of District Heating System Based on Numerical Weather Prediction Model YANG Hongying, a, JIN Shuanglong,

More information

SMART GRID FORECASTING

SMART GRID FORECASTING SMART GRID FORECASTING AND FINANCIAL ANALYTICS Itron Forecasting Brown Bag December 11, 2012 PLEASE REMEMBER» Phones are Muted: In order to help this session run smoothly, your phones are muted.» Full

More information

th Hawaii International Conference on System Sciences

th Hawaii International Conference on System Sciences 2013 46th Hawaii International Conference on System Sciences Standardized Software for Wind Load Forecast Error Analyses and Predictions Based on Wavelet-ARIMA Models Applications at Multiple Geographically

More information

EUROPEAN EXPERIENCE: Large-scale cross-country forecasting with the help of Ensemble Forecasts

EUROPEAN EXPERIENCE: Large-scale cross-country forecasting with the help of Ensemble Forecasts WEPROG Weather & wind Energy PROGnoses EUROPEAN EXPERIENCE: Large-scale cross-country forecasting with the help of Ensemble Forecasts Session 6: Integrating forecasting into market operation, the EMS and

More information

A Bayesian Perspective on Residential Demand Response Using Smart Meter Data

A Bayesian Perspective on Residential Demand Response Using Smart Meter Data A Bayesian Perspective on Residential Demand Response Using Smart Meter Data Datong-Paul Zhou, Maximilian Balandat, and Claire Tomlin University of California, Berkeley [datong.zhou, balandat, tomlin]@eecs.berkeley.edu

More information

Comparative Study of ANFIS and ARIMA Model for Weather Forecasting in Dhaka

Comparative Study of ANFIS and ARIMA Model for Weather Forecasting in Dhaka Comparative Study of ANFIS and ARIMA Model for Weather Forecasting in Dhaka Mahmudur Rahman, A.H.M. Saiful Islam, Shah Yaser Maqnoon Nadvi, Rashedur M Rahman Department of Electrical Engineering and Computer

More information

Day-Ahead Electricity Price Forecasting Using a Hybrid Principal Component Analysis Network

Day-Ahead Electricity Price Forecasting Using a Hybrid Principal Component Analysis Network Energies 2012, 5, 4711-4725; doi:10.3390/en5114711 Article OPEN ACCESS energies ISSN 1996-1073 www.mdpi.com/journal/energies Day-Ahead Electricity Price Forecasting Using a Hybrid Principal Component Analysis

More information

Value of Forecasts in Unit Commitment Problems

Value of Forecasts in Unit Commitment Problems Tim Schulze, Andreas Grothery and School of Mathematics Agenda Motivation Unit Commitemnt Problem British Test System Forecasts and Scenarios Rolling Horizon Evaluation Comparisons Conclusion Our Motivation

More information

NEURO-FUZZY CONTROL IN LOAD FORECASTING OF POWER SECTOR

NEURO-FUZZY CONTROL IN LOAD FORECASTING OF POWER SECTOR NEURO-FUZZY CONTROL IN LOAD FORECASTING OF POWER SECTOR S.HEMA CHANDRA 1,VENDOTI MOUNIKA 2 & GUNTURU VANDANA 3 1,2,3 Department of Electronics and Control Engineering, Sree Vidyanikethan Engineering College

More information

MURDOCH RESEARCH REPOSITORY

MURDOCH RESEARCH REPOSITORY MURDOCH RESEARCH REPOSITORY http://researchrepository.murdoch.edu.au/86/ Kajornrit, J. (22) Monthly rainfall time series prediction using modular fuzzy inference system with nonlinear optimization techniques.

More information

Electric Load Forecasting Using Wavelet Transform and Extreme Learning Machine

Electric Load Forecasting Using Wavelet Transform and Extreme Learning Machine Electric Load Forecasting Using Wavelet Transform and Extreme Learning Machine Song Li 1, Peng Wang 1 and Lalit Goel 1 1 School of Electrical and Electronic Engineering Nanyang Technological University

More information

A Hybrid Wavelet Analysis and Adaptive. Neuro-Fuzzy Inference System. for Drought Forecasting

A Hybrid Wavelet Analysis and Adaptive. Neuro-Fuzzy Inference System. for Drought Forecasting Applied Mathematical Sciences, Vol. 8, 4, no. 39, 699-698 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/.988/ams.4.4863 A Hybrid Wavelet Analysis and Adaptive Neuro-Fuzzy Inference System for Drought

More information

WIND SPEED ESTIMATION IN SAUDI ARABIA USING THE PARTICLE SWARM OPTIMIZATION (PSO)

WIND SPEED ESTIMATION IN SAUDI ARABIA USING THE PARTICLE SWARM OPTIMIZATION (PSO) WIND SPEED ESTIMATION IN SAUDI ARABIA USING THE PARTICLE SWARM OPTIMIZATION (PSO) Mohamed Ahmed Mohandes Shafique Rehman King Fahd University of Petroleum & Minerals Saeed Badran Electrical Engineering

More information

Fuzzy based Day Ahead Prediction of Electric Load using Mahalanobis Distance

Fuzzy based Day Ahead Prediction of Electric Load using Mahalanobis Distance 200 International Conference on Power System Technology Fuzzy based Day Ahead Prediction of Electric Load using Mahalanobis Distance Amit Jain, Member, IEEE, E. Srinivas, and Santosh umar Kuadapu Abstract--Prediction

More information

Forecasting. Simon Shaw 2005/06 Semester II

Forecasting. Simon Shaw 2005/06 Semester II Forecasting Simon Shaw s.c.shaw@maths.bath.ac.uk 2005/06 Semester II 1 Introduction A critical aspect of managing any business is planning for the future. events is called forecasting. Predicting future

More information

Forecasting demand in the National Electricity Market. October 2017

Forecasting demand in the National Electricity Market. October 2017 Forecasting demand in the National Electricity Market October 2017 Agenda Trends in the National Electricity Market A review of AEMO s forecasting methods Long short-term memory (LSTM) neural networks

More information

1.3 STATISTICAL WIND POWER FORECASTING FOR U.S. WIND FARMS

1.3 STATISTICAL WIND POWER FORECASTING FOR U.S. WIND FARMS 1.3 STATISTICAL WIND POWER FORECASTING FOR U.S. WIND FARMS Michael Milligan, Consultant * Marc Schwartz and Yih-Huei Wan National Renewable Energy Laboratory, Golden, Colorado ABSTRACT Electricity markets

More information

Data and prognosis for renewable energy

Data and prognosis for renewable energy The Hong Kong Polytechnic University Department of Electrical Engineering Project code: FYP_27 Data and prognosis for renewable energy by Choi Man Hin 14072258D Final Report Bachelor of Engineering (Honours)

More information

FORECASTING FLUCTUATIONS OF ASPHALT CEMENT PRICE INDEX IN GEORGIA

FORECASTING FLUCTUATIONS OF ASPHALT CEMENT PRICE INDEX IN GEORGIA FORECASTING FLUCTUATIONS OF ASPHALT CEMENT PRICE INDEX IN GEORGIA Mohammad Ilbeigi, Baabak Ashuri, Ph.D., and Yang Hui Economics of the Sustainable Built Environment (ESBE) Lab, School of Building Construction

More information

A new method for short-term load forecasting based on chaotic time series and neural network

A new method for short-term load forecasting based on chaotic time series and neural network A new method for short-term load forecasting based on chaotic time series and neural network Sajjad Kouhi*, Navid Taghizadegan Electrical Engineering Department, Azarbaijan Shahid Madani University, Tabriz,

More information

CHAPTER 5 DEVELOPMENT OF WIND POWER FORECASTING MODELS

CHAPTER 5 DEVELOPMENT OF WIND POWER FORECASTING MODELS CHAPTER 5 DEVELOPMENT OF WIND POWER FORECASTING MODELS 122 CHAPTER 5 DEVELOPMENT OF WIND POWER FORECASTING MODELS The models proposed for wind farm power prediction have been dealt with in this chapter.

More information

Classic Time Series Analysis

Classic Time Series Analysis Classic Time Series Analysis Concepts and Definitions Let Y be a random number with PDF f Y t ~f,t Define t =E[Y t ] m(t) is known as the trend Define the autocovariance t, s =COV [Y t,y s ] =E[ Y t t

More information

SYSTEM BRIEF DAILY SUMMARY

SYSTEM BRIEF DAILY SUMMARY SYSTEM BRIEF DAILY SUMMARY * ANNUAL MaxTemp NEL (MWH) Hr Ending Hr Ending LOAD (PEAK HOURS 7:00 AM TO 10:00 PM MON-SAT) ENERGY (MWH) INCREMENTAL COST DAY DATE Civic TOTAL MAXIMUM @Max MINIMUM @Min FACTOR

More information

Forecasting of Nitrogen Content in the Soil by Hybrid Time Series Model

Forecasting of Nitrogen Content in the Soil by Hybrid Time Series Model International Journal of Current Microbiology and Applied Sciences ISSN: 2319-7706 Volume 7 Number 07 (2018) Journal homepage: http://www.ijcmas.com Original Research Article https://doi.org/10.20546/ijcmas.2018.707.191

More information

Forecasting using R. Rob J Hyndman. 2.4 Non-seasonal ARIMA models. Forecasting using R 1

Forecasting using R. Rob J Hyndman. 2.4 Non-seasonal ARIMA models. Forecasting using R 1 Forecasting using R Rob J Hyndman 2.4 Non-seasonal ARIMA models Forecasting using R 1 Outline 1 Autoregressive models 2 Moving average models 3 Non-seasonal ARIMA models 4 Partial autocorrelations 5 Estimation

More information

Contents Economic dispatch of thermal units

Contents Economic dispatch of thermal units Contents 2 Economic dispatch of thermal units 2 2.1 Introduction................................... 2 2.2 Economic dispatch problem (neglecting transmission losses)......... 3 2.2.1 Fuel cost characteristics........................

More information

A Comparison of the Forecast Performance of. Double Seasonal ARIMA and Double Seasonal. ARFIMA Models of Electricity Load Demand

A Comparison of the Forecast Performance of. Double Seasonal ARIMA and Double Seasonal. ARFIMA Models of Electricity Load Demand Applied Mathematical Sciences, Vol. 6, 0, no. 35, 6705-67 A Comparison of the Forecast Performance of Double Seasonal ARIMA and Double Seasonal ARFIMA Models of Electricity Load Demand Siti Normah Hassan

More information

Predicting the Wind MASTER SERIES

Predicting the Wind MASTER SERIES Predicting the Wind MASTER SERIES by Bernhard Ernst, Brett Oakleaf, Mark L. Ahlstrom, Matthias Lange, Corinna Moehrlen, Bernhard Lange, Ulrich Focken, and Kurt Rohrig 78 IEEE power & energy magazine 1540-7977/07/$25.00

More information

Stochastic Processes

Stochastic Processes Stochastic Processes Stochastic Process Non Formal Definition: Non formal: A stochastic process (random process) is the opposite of a deterministic process such as one defined by a differential equation.

More information

About Nnergix +2, More than 2,5 GW forecasted. Forecasting in 5 countries. 4 predictive technologies. More than power facilities

About Nnergix +2, More than 2,5 GW forecasted. Forecasting in 5 countries. 4 predictive technologies. More than power facilities About Nnergix +2,5 5 4 +20.000 More than 2,5 GW forecasted Forecasting in 5 countries 4 predictive technologies More than 20.000 power facilities Nnergix s Timeline 2012 First Solar Photovoltaic energy

More information

A HYBRID MODEL OF SARIMA AND ANFIS FOR MACAU AIR POLLUTION INDEX FORECASTING. Eason, Lei Kin Seng (M-A ) Supervisor: Dr.

A HYBRID MODEL OF SARIMA AND ANFIS FOR MACAU AIR POLLUTION INDEX FORECASTING. Eason, Lei Kin Seng (M-A ) Supervisor: Dr. A HYBRID MODEL OF SARIMA AND ANFIS FOR MACAU AIR POLLUTION INDEX FORECASTING THESIS DISSERATION By Eason, Lei Kin Seng (M-A7-6560-7) Supervisor: Dr. Wan Feng In Fulfillment of Requirements for the Degree

More information

Short and medium term solar irradiance and power forecasting given high penetration and a tropical environment

Short and medium term solar irradiance and power forecasting given high penetration and a tropical environment Short and medium term solar irradiance and power forecasting given high penetration and a tropical environment Wilfred WALSH, Zhao LU, Vishal SHARMA, Aloysius ARYAPUTERA 3 rd International Conference:

More information

Problem Statements in Time Series Forecasting

Problem Statements in Time Series Forecasting Problem Statements in Time Series Forecasting Vadim Strijov, Visiting Professor at IAM METU Computing Center of the Russian Academy of Sciences Institute of Applied Mathematics, Middle East Technical University

More information

Short-term management of hydro-power systems based on uncertainty model in electricity markets

Short-term management of hydro-power systems based on uncertainty model in electricity markets Open Access Journal Journal of Power Technologies 95 (4) (2015) 265 272 journal homepage:papers.itc.pw.edu.pl Short-term management of hydro-power systems based on uncertainty model in electricity markets

More information

Integrated Electricity Demand and Price Forecasting

Integrated Electricity Demand and Price Forecasting Integrated Electricity Demand and Price Forecasting Create and Evaluate Forecasting Models The many interrelated factors which influence demand for electricity cannot be directly modeled by closed-form

More information

Demand Forecasting in Deregulated Electricity Markets

Demand Forecasting in Deregulated Electricity Markets International Journal of Computer Applications (975 8887) Demand Forecasting in Deregulated Electricity Marets Anamia Electrical & Electronics Engineering Department National Institute of Technology Jamshedpur

More information

Forecasting electricity market pricing using artificial neural networks

Forecasting electricity market pricing using artificial neural networks Energy Conversion and Management 48 (2007) 907 912 www.elsevier.com/locate/enconman Forecasting electricity market pricing using artificial neural networks Hsiao-Tien Pao * Department of Management Science,

More information

Short-term wind forecasting using artificial neural networks (ANNs)

Short-term wind forecasting using artificial neural networks (ANNs) Energy and Sustainability II 197 Short-term wind forecasting using artificial neural networks (ANNs) M. G. De Giorgi, A. Ficarella & M. G. Russo Department of Engineering Innovation, Centro Ricerche Energia

More information

Application of Artificial Neural Network for Short Term Load Forecasting

Application of Artificial Neural Network for Short Term Load Forecasting aerd Scientific Journal of Impact Factor(SJIF): 3.134 e-issn(o): 2348-4470 p-issn(p): 2348-6406 International Journal of Advance Engineering and Research Development Volume 2,Issue 4, April -2015 Application

More information

Econometría 2: Análisis de series de Tiempo

Econometría 2: Análisis de series de Tiempo Econometría 2: Análisis de series de Tiempo Karoll GOMEZ kgomezp@unal.edu.co http://karollgomez.wordpress.com Segundo semestre 2016 III. Stationary models 1 Purely random process 2 Random walk (non-stationary)

More information

SYSTEM BRIEF DAILY SUMMARY

SYSTEM BRIEF DAILY SUMMARY SYSTEM BRIEF DAILY SUMMARY * ANNUAL MaxTemp NEL (MWH) Hr Ending Hr Ending LOAD (PEAK HOURS 7:00 AM TO 10:00 PM MON-SAT) ENERGY (MWH) INCREMENTAL COST DAY DATE Civic TOTAL MAXIMUM @Max MINIMUM @Min FACTOR

More information

Time Series I Time Domain Methods

Time Series I Time Domain Methods Astrostatistics Summer School Penn State University University Park, PA 16802 May 21, 2007 Overview Filtering and the Likelihood Function Time series is the study of data consisting of a sequence of DEPENDENT

More information

A Fuzzy Logic Based Short Term Load Forecast for the Holidays

A Fuzzy Logic Based Short Term Load Forecast for the Holidays A Fuzzy Logic Based Short Term Load Forecast for the Holidays Hasan H. Çevik and Mehmet Çunkaş Abstract Electric load forecasting is important for economic operation and planning. Holiday load consumptions

More information

Random Vector Functional Link Network for Short-term Electricity Load Demand Forecasting

Random Vector Functional Link Network for Short-term Electricity Load Demand Forecasting Random Vector Functional Link Network for Short-term Electricity Load Demand Forecasting Ye Ren a, P. N. Suganthan a,, N. Srikanth b, Gehan Amaratunga c a School of Electrical and Electronic Engineering

More information

Wind power and management of the electric system. EWEA Wind Power Forecasting 2015 Leuven, BELGIUM - 02/10/2015

Wind power and management of the electric system. EWEA Wind Power Forecasting 2015 Leuven, BELGIUM - 02/10/2015 Wind power and management of the electric system EWEA Wind Power Forecasting 2015 Leuven, BELGIUM - 02/10/2015 HOW WIND ENERGY IS TAKEN INTO ACCOUNT WHEN MANAGING ELECTRICITY TRANSMISSION SYSTEM IN FRANCE?

More information

Deep Learning Architecture for Univariate Time Series Forecasting

Deep Learning Architecture for Univariate Time Series Forecasting CS229,Technical Report, 2014 Deep Learning Architecture for Univariate Time Series Forecasting Dmitry Vengertsev 1 Abstract This paper studies the problem of applying machine learning with deep architecture

More information

A Two-Factor Autoregressive Moving Average Model Based on Fuzzy Fluctuation Logical Relationships

A Two-Factor Autoregressive Moving Average Model Based on Fuzzy Fluctuation Logical Relationships Article A Two-Factor Autoregressive Moving Average Model Based on Fuzzy Fluctuation Logical Relationships Shuang Guan 1 and Aiwu Zhao 2, * 1 Rensselaer Polytechnic Institute, Troy, NY 12180, USA; guans@rpi.edu

More information

Long Term Load Forecasting Using SA-ANN Model: a Comparative Analysis on Real Case Khorasan Regional Load

Long Term Load Forecasting Using SA-ANN Model: a Comparative Analysis on Real Case Khorasan Regional Load No. E-13-AAA-0000 Long Term Load Forecasting Using SA-ANN Model: a Comparative Analysis on Real Case Khorasan Regional Load Rasool Heydari Electrical Department Faculty of Engineering Sadjad Institute

More information

Peak Load Forecasting

Peak Load Forecasting Peak Load Forecasting Eugene Feinberg Stony Brook University Advanced Energy 2009 Hauppauge, New York, November 18 Importance of Peak Load Forecasting Annual peak load forecasts are important for planning

More information

LOAD FORECASTING APPLICATIONS for THE ENERGY SECTOR

LOAD FORECASTING APPLICATIONS for THE ENERGY SECTOR LOAD FORECASTING APPLICATIONS for THE ENERGY SECTOR Boris Bizjak, Univerza v Mariboru, FERI 26.2.2016 1 A) Short-term load forecasting at industrial plant Ravne: Load forecasting using linear regression,

More information

Time Series Outlier Detection

Time Series Outlier Detection Time Series Outlier Detection Tingyi Zhu July 28, 2016 Tingyi Zhu Time Series Outlier Detection July 28, 2016 1 / 42 Outline Time Series Basics Outliers Detection in Single Time Series Outlier Series Detection

More information