SlideShare a Scribd company logo
1 of 12
Download to read offline
http://www.iaeme.com/ijeet.asp 1 editor@iaeme.com
International Journal of Electrical Engineering & Technology (IJEET)
Volume 6, Issue 7, July-Aug (2015), pp. 01-12, Article ID: Article ID: 40220150607001
Available online at
http://www.iaeme.com/currentissue.asp?JType=IJEET&VType=6&IType=7
ISSN Print: 0976 – 6545 and ISSN Online: 0976 – 6553
© IAEME Publication
_____________________________________________________________________
OPTIMAL NEURAL NETWORK MODELS
FOR WIND SPEED PREDICTION
V.Ranganayaki and S.N. Deepa
Anna University Regional Centre, Coimbatore, India
ABSTRACT
The accuracy of wind speed forecasting is important to control, and
optimizes wind power generation. The nonlinearity patterns of wind speed
data is the reason of inaccurate wind speed forecasting. The artificial neural
networks handle the nonlinearities and provide accurate wind speed. This
paper presents multilayer feed forward network and radial basis functions for
wind speed forecasting performance analysis of real time data collected from
Coimbatore wind farms, utilizing daily wind speed data collected over a
period of one year. Experimental results show that this model is an optimal
model which can improve the prediction precision of wind speed compared
with other approaches according to the statistical analysis involving the
coefficient of determination (R2), mean absolute error (MAE), the root mean
square error (RMSE) and the mean bias error (MBE) are conducted.
Keywords: Radial Basis Function networks, Multi-layer Perceptron networks,
wind speed, Mean square error, Mean absolute error , Mean bias error,
Coefficient of determination.
Keywords: Down Counter, Mod 6 Down Counter, Synchronous Counters.
Cite this Article: V.Ranganayaki and S.N. Deepa, Optimal Neural Network
Models For Wind Speed Prediction. International Journal of Electrical
Engineering & Technology, 6(7), 2015, pp. 01-12
http://www.iaeme.com/currentissue.asp?JType=IJEET&VType=6&IType=7
_______________________________________________________________
1. INTRODUCTION
The wind energy is a significant potential renewable energy source with lowest cost
of electricity production. The wind farm operator can predict the power output with
the accurate wind data. This is useful for power system planning, scheduling, and
storage capacity optimization. Due to the random fluctuation of wind, the prediction
results of wind power may change rapidly. The major two issues in renewable energy
are how to make wind energy cost effective and how to integrate wind energy into
electricity grids. This increases the importance of the accurate wind speed prediction
to assessment of wind energy. To obtain proper and efficient wind power utilization,
V.Ranganayaki and S.N. Deepa
http://www.iaeme.com/ijeet.asp 2 editor@iaeme.com
the wind speed prediction plays an important role in forecasting. To increase the
accuracy of wind speed prediction, researchers proposed many approaches including
physical method such as numerical weather prediction, statistical method such as
ARMA model [1], the spatial correlation model and the artificial intelligence method
and so on. Most of the wind speed prediction models have been developed from
historical data. [2] - [5]. According to the literature review to improve the accuracy,
wind speed prediction is needed. [6].
Artificial Neural Network (ANNs) exhibit the properties, such as: adaptability,
capability of learning by examples, and ability to generalize. One of the most used
ANN model is the well-known Multi-Layer Perceptron (MLP). Most of the available
training methods for ANNs only focus on the adjustment of connection weights with
in a fixed topology. Multi-layer Perceptron (MLP) is used successfully in many
applications which includes pattern classification, image processing, prediction etc.
The back propagation network (BPN) is one of the most popular methods of training
used in multilayer perceptron networks [7]. The training process of BPN for
prediction problem consists of two tasks, the first one is the selection of the
appropriate architecture for the problem, and the second is the adjustment of
connection weights of the network. The input layer is set of numerical inputs. The
inputs are then multiplied by weights and processed by individual processing units in
second layer [8] - [9]. The back propagation algorithm has two phases. In the first
phase the inputs are given and propagated through to compute output. The output is
compared with desired value, to obtain the error. The second phase involves backward
pass through network during which error signal is passed to each unit in network and
appropriate weight changes calculated. The gradient descent rule is adopted for
updating the weights of neural network [10].
ANNs have the ability to model linear and non-linear systems without the need to
make assumptions implicitly as in most traditional statistical approaches. They have
been applied in various aspects of science and engineering [11] - [12]. There are
different types of neural network are available, mainly feed forward networks and
feedback neural networks. The feed forward network has no feedback. But the
feedback neural network has a feedback. BP network and Radial Basis Function
(RBF) network plays a major role in feed forward networks. Recurrent Neural
Networks (RNN) and pulsed neural networks are examples of the feedback networks.
This paper mainly focuses on the feed forward neural network (BPA) and Radial
Basis Function (RBF).
This paper is structured as follows. Section 2 shows architecture of ANN models.
Section3 describing briefly about problem definition. Section 4 describes designing of
ANN models. Section 5 describes discussion and simulation results. Finally, Section 6
presents the conclusion of this work and suggested some improvements to this paper.
2. ANN MODELS
2.1 Multilayer Perceptron Network
MLPs are the most common type of feed-forward networks. Figure 1 shows an MLP
which has Three layers: an input layer, a hidden layer and an output layer. Neurons in
input layer only act as buffers for sending the input signals xi (i=1, 2 …n) to neurons
in the hidden layer. Each neuron j in the hidden layer adds up its input signals xi after
weighting them with the strengths of the respective connections wji from the input
layer and computes its output yj as a function f of the sum.
Optimal Neural Network Models For Wind Speed Prediction
http://www.iaeme.com/ijeet.asp 3 editor@iaeme.com






= ∑=
n
1i
ijij xwfy
(1)
f can be a simple threshold function or a sigmoidal, hyperbolic tangent or radial basis
function.
Figure 1 A three layer feed-forward neural network
The output of neurons in the output layer is computed similarly. The back propagation
algorithm, a gradient descent algorithm, is the most commonly adopted MLP training
algorithm. It gives the change Δwji the weight of a connection between neurons I and j
as follows:
(2)
where η is a parameter called the learning rate and δj is a factor depending on whether
neuron j is an input neuron or a hidden neuron. For output neurons
( )( )jjjj y)(ynetfδ −∂∂= t (3)
and for hidden neurons
( )( )∑ ∂∂∂= qjqqjj wnetfδ (4)
In Eq. (3), net j is the total weighted sum of input signals to neurons j and yj(t) is
the target output for neuron j. As there are no target outputs for hidden neurons, in
Eq. (4), the difference between the target and actual output of a hidden neurons j is
replaced by the weighted sum of the δq terms already obtained for neurons q
connected to the output of j.
The process begins with the output layer, the δ term is computed for neurons in all
layers and weight updates determined for all connections, iteratively. The weight
updating process can happen after the presentation of each training pattern (pattern-
based training) or after the presentation of the whole set of training patterns (batch
training). Training epoch is completed when all training patterns have been presented
once to the MLP.
z
Input Layer Output Layer
z
zz
Hidden Layer
Network
Inputs
Network
Output
ijij xηδΔw =
V.Ranganayaki and S.N. Deepa
http://www.iaeme.com/ijeet.asp 4 editor@iaeme.com
A commonly adopted method to speed up the training is to add a “momentum”
term to Eq.(5) which effectively lets the previous weight change influence the new
weight change:
Δwij (I + 1) = η δj xi + μ Δwij(I) (5)
where Δwij (I + 1) and Δwij (I) are weight changes in epochs (I + 1) and (I),
respectively, and μ is “momentum” coefficient.
2.2 RBF Neural Networks
The RBF neural networks are a class of feed-forward ANNs constructed based on the
function approximation theory. Figure 2 shows RBF neural networks, which contains
an input layer, a hidden layer, and an output layer.
Figure 2 The Structure of RBF Neural Network
Generally, RBF neural network input-output relationship can be described in
equation (6) as:
∑=
+=
m
i
iii w),βφ(x,cwy
1
0 (6)
where x is the input; y is the output; m is the number of RBF units in the hidden layer;
wi and w0 are the weight and bias between the ith
RBF unit and the output,
respectively; φi(·), ci and
ßi are the activation function, center, and width of the ith
RBF unit, respectively.
The Gaussian function is the most commonly used RBF function.







 −
= 2
2
exp
β
j
ii
cx
),βφ(x,c
(7)
Where
2
jcx − represents the Euclidean distance. The Gaussian function makes the
value equidistant from the center in all directions have the same values.
Constructing a RBF neural network involves determining the RBF centers, width,
and the output weights and bias. Two methods are commonly used to determine the
Optimal Neural Network Models For Wind Speed Prediction
http://www.iaeme.com/ijeet.asp 5 editor@iaeme.com
centers of RBF networks. One is to select representative input samples as the RBF
centers; the other is to determine the centers with a self-organization method, such as
the K-means clustering algorithm [13]. In this paper, the K-means clustering method
is used to locate the centers.
Once the RBF centers are located, the width can be simply determined by [13]:
ßi =k ·dmax (8)
where dmax is the maximum Euclidean distance of the centers and k is a nonnegative
scalar. After the centers and width are fixed, the weights can be determined by a least-
square method to minimize the error of the output.
3. PROBLEM DEFINITION
Building reliable wind energy system wind speed prediction problem has been
considered. In this work, the real data wind speed (m/s), wind direction (degrees) and
temperature (°C) collected from Suzlon Energy systems used as input parameters.
Data sets in twelve 5-min interval over an hour are averaged to obtain hourly data.
The 3000 samples are used for training the network and 1000 samples are used for
testing.
Various criteria are investigated in order to determine the optimal MLP
architecture (i.e. the highest coefficient of determination, the lowest root mean square
error, mean absolute error and the lowest mean bias error) for each combination of
input variables. Different training algorithms were used with changes in the number
of neurons and hidden layers. In addition, different transfer functions including the
tangent sigmoid, log sigmoid and linear functions in the hidden layer were also
investigated. Seven back-propagation training algorithms were tested in order to
obtain the most appropriate algorithm for the training process. The radius value
known as spread of the function and the number of neurons are changed to find the
best performance of the RBF network. Basically, the larger the value of spread, the
smoother the function approximation will be. However, if the spread value is too
large, many neurons may be required to fit the rapidly-changing function. On the
other hand, very small spread values will require many neurons in order to fit the
smooth function and networks cannot be generalized well [15].
In this paper, the spread will be varied between 1 and 60 whereas the number of
neurons is changed between 5 and 600 in order to come up with the most suitable
ANN prediction models.
4. DESIGN OF ANN MODELS
4.1 Design of ANN models
ANN models design involves number of steps. There are five basic steps: (1) data
collection, (2) preprocessing data, (3) constructing the neural network (4) training the
network (5) testing the network performance shown in Fig.6.
4.1.1. Data collection
The real time data is collected from Suzlon Energy LTd., India, wind farm a period
from January 2012 to December 2013. The data sets include wind speed, wind vane
direction and temperature.
V.Ranganayaki and S.N. Deepa
http://www.iaeme.com/ijeet.asp 6 editor@iaeme.com
Table 1 Input parameters
S.No Input Parameters Units Parameters range
1 Wind speed m/s 1-20
2 Wind direction degree 1-350
3 Temperature Degree Celsius 24-35
The input parameters are considered to the neural network models is given in table.1.
The samples are as shown in Table.2.
Table 2 Samples
S. No
Wind speed
(m/s)
Wind Direction
(Degree)
Temperature
(Degree Celsius)
1 6.2 270 29.2
2 5.9 267.2 29.2
3 5.3 270 29.3
4 5.2 274.2 29.2
5 4.9 270 29.2
6 5.3 274.2 29.1
7 5.8 272.8 29.0
8 6.9 274.2 28.9
9 7.1 275.6 28.8
10 7.4 278.4 28.8
4.1.2 Data pre-processing
There are three data preprocessing steps are done to train the network more
efficiently. The steps are: (1) solve missing data problem, (2) Normalization (3)
randomize data.
The missing data are corrected by the average values of neighboring data. In
general, Normalization procedure is a good practice for input data before presenting
data to the network. It scales number of data to improve the accuracy of the model.
4.1.3 Constructing the network
At this stage, the designer specifies the number of hidden neurons in the layer,
transfer function, training function, weight/bias learning function and performance
function. In this work, the ANN models used are multilayer perceptron (MLP) and
radial basis function (RBF) networks. The selection parameters of multilayer
perceptron model are as shown in Table 3
Optimal Neural Network Models For Wind Speed Prediction
http://www.iaeme.com/ijeet.asp 7 editor@iaeme.com
Figure 3 Wind speed prediction model
Table 3 Parameters of MLP Neural Network
S.no Parameters
1. Inputs = 3
2. Output= 1
3. Number of Hidden layers= 1
4. Number of Hidden neurons varied =
5-100
6. Epochs = 1000
The selection parameters of Radial basis function are as shown Table 4.
Table 4 Parameters of RBF Neural Network
S.no Parameters
1. Inputs = 3
2. Output= 1
3. Number of Hidden layers= 1
4. Number of Hidden neurons varied =
5-600
5. Spread varied = 1-60
6. Epochs = 1000
4.1.4 Train the network.
During the training process, the weights are adjusted in order to make the actual
outputs close to the target outputs of the network. In this work, 3000 samples are used
for training. Six different types of training algorithms are investigated for developing
the MLP network. In this study, the built in MATLAB transfer functions purelin,
logsig, and tansig are used.
4.1.5 Testing the network
The next step is to test the performance of the developed ANN models. At this stage
test data are exposed to the model. For this study, 1000 samples have been used for
testing the developed model.
In order to evaluate the performance of the developed ANN models quantitatively
and verify whether there is any underlying trend in performance of ANN models,
MLP or RBN
Models
Wind speed
Wind direction
Temperature
Predicted wind
Speed
V.Ranganayaki and S.N. Deepa
http://www.iaeme.com/ijeet.asp 8 editor@iaeme.com
statistical analysis involving the coefficient of determination (R2), the root mean
square error (RMSE), mean absolute error (MAE) and the mean bias error (MBE) are
conducted. RMSE provides information on the short term performance which is a
measure of the variation of predicated values around the measured data. The lower the
RMSE, the more accurate is the estimation. MBE is an indication of the average
deviation of the predicted values from the corresponding measured data and can
provide information on long term performance of the models; the lower MBE the
better is the long term model prediction. A positive MBE value indicates the amount
of overestimation in the predicated wind speed and vice versa. MAE is a most natural
measure of average error magnitude and can provide the information on short term
performance of the models. The expressions for the abovementioned statistical
parameters are:
ipii IIe ,−=
(9)
∑=
=
n
i
ie
N
MAE
1
1
(10)
∑=
=
n
i
ie
N
MBE
1
1
(11)
2
1
1
∑=
=
n
i
ie
N
RMSE
(12)
Where ei denotes predicted error, ipI ,
denotes the predicted wind speed in m/s, iI
denotes the measured wind speed in m/s, and n denotes the number of samples
(observations).
5. RESULTS AND DISCUSSION
This section presents the best achieved results for both the MLP and RBF ANN
models. Tables 5 and 6 show the computed values of R2, RMSE, MAE and MBE for
the developed ANN models (MLP and RBF) considering different network structures.
For the network structure identification used in the second column of Tables 5-6, the
first number indicates number of neurons in the input layer, the last number represents
neurons in the output layer, and in between represent neurons in the hidden layers.
Table 5 Statistical error parameters of MLP models for different structures
Model
Network
Structure
MSE RMSE MAE MBE R2
1 3-10-1 0.0149 0.1219 0.0699 0.0679 0.91
2 3-7-1 0.0176 0.1328 0.1218 0.1217 0.94
3 3-25-1 0.0432 0.2079 0.1435 0.0308 0.92
4 3-35-1 0.0033 0.0571 0.0529 -0.0520 0.89
5 3-50-1 0.0527 0.2296 0.1838 0.1829 0.88
6 3-60-1 0.2634 0.5132 0.2514 0.1858 0.85
Optimal Neural Network Models For Wind Speed Prediction
http://www.iaeme.com/ijeet.asp 9 editor@iaeme.com
From Table 5 we note that model one is the best among all the investigated MLP
models for long performance prediction as it yields the lowest values of MAE, MBE,
RMSE and a 95 % coefficient of determination (R). The input parameters used in the
selected model are the temperature, wind direction and wind speed. From Figure 4
it’s observed that actual and predicted wind speed based on MLP model.
Figure 4 Wind speed prediction using MLP model
Table 6 Statistical error parameters of RBF models for different structures
Model
Network
Structure
MSE RMSE MAE MBE R2
1 3-462-1 4.89515 2.2125 1.8818 0.6292 0.86
2 3-156-1 4.64531 2.1553 1.8225 0.1079 0.88
3 3-98-1 0.04995 0.2235 0.1153 0.0216 0.89
4 3-28-1 0.01247 0.1117 0.0676 0.0038 0.96
5 3-16-1 0.01350 0.1162 0.0683 0.0192 0.95
6 3-14-1 0.01865 0.1366 0.0644 -0.0077 0.92
Table 6 on the other hand, shows that model four is the best among all the
investigated RBF models; the input parameters for this model are again the
temperature, wind direction and wind speed. In the first and third models, the MLP
technique has better accuracy for predicting the wind speed compared to RBF. For
these models, the computed MBE values of 0.0679, 0.0308 respectively, are
promising and provide good accuracy for long term prediction. On the other hand,
some RBF models perform better in terms of low MBE values. From Figure 5 it’s
observed that actual and predicted wind speed based on RBF model.
V.Ranganayaki and S.N. Deepa
http://www.iaeme.com/ijeet.asp 10 editor@iaeme.com
Figure 5 Wind speed prediction using RBF model
Figure 6 Comparison of wind speed prediction error waveform for
MLP and RBF models
Optimal Neural Network Models For Wind Speed Prediction
http://www.iaeme.com/ijeet.asp 11 editor@iaeme.com
The suggested models of neural network can be used in wind speed prediction of
renewable energy systems. The RBF model presets best performance as compared to
MLP neural network models in terms of lower MBE values. Each neural networks
structure is trained and test with real time wind data. From Figure 6 we observed that
RBF model has almost low error rates than MLP model.
Table 7 shows that the optimal models give better value for errors in comparison
with other existing models. Value of R is a coefficient of determination which is
calculated from deterministic coefficient (R2
).
Table 7 Performance analysis of various models
S.No Various Models RMSE MAE R
1.
Li, Zhengquan et al.
Persistence Model
1 year model
2 year model
3.83
3.122
2.107
3.132
2.587
1.691
0.56
0.51
0.86
2. El-Fouly et al. 1.56 1.91 0.76
3. Optimal MLP Model 0.1219 0.0699 0.95
4. Optimal RBF model 0.1117 0.0676 0.98
6. CONCLUSION
In this work, MATLAB tools are used to predict monthly average wind speed
prediction in
Coimbatore wind farm. Real data 3000 samples are used for training the neural
network, while 1000 data are used for testing. Six models with different input
combinations are modeled with MLP and RBF ANN techniques. The obtained results
confirm the superiority (proper selection of spread or radius value) of the RBF
technique over the MLP technique in most of the cases, namely models 4, 5 and 6
with deterministic coefficients near 99 % and low MBE, MAE and RMSE values.
Moreover proposed ANN models MLP and RBF have optimum performance than
other existing models. Currently, our focus is on developing the hybrid model to
improve the wind speed prediction with better performance.
REFERENCES
[1] Chatfield, Chris. The analysis of time series: an introduction. CRC press,
2013.
[2] Fonte P M, Goncalo Xufre Silva and J.C Quadrado “Wind speed
prediction using ANN”, Proceedings of the 6th WSEAS International
Conference on Neural Networks, pp. 134-139, 2005.
[3] Goncalo Xufre Silva, P. M. Fonte and J. C. Quadrado, “Radial Basis
Function networks for wind speed prediction”, Proceedings of the
International Conference on Artificial Intelligence, Knowledge
Engineering and Databases, pp. 286-290, 2006.
[4] Bei Chen, Liang Zhao, Xin Wang, Jian Hong Lu, Guo Yao Liu, Rui Feng
Cao and Jin Bo Liu, “Wind speed prediction using OLS algorithm based
RBF Neural Network”, IEEE Asia-Pacific Power and Energy Engineering
Conference, pp. 1-4, 2009.
V.Ranganayaki and S.N. Deepa
http://www.iaeme.com/ijeet.asp 12 editor@iaeme.com
[5] Li Xingpei, Liu Yibing and Xin Weidong, “Wind speed prediction based
on genetic Neural Network”, 4th IEEE Conference on Industrial
Electronics and Applications, pp. 2448 – 2451, 2009.
[6] Umit Kemalettin Terzi, Nevzat Onat and Selcuk Atis, “New hybrid
method proposal for wind speed prediction: case study of Luleburgaz”,
Environmental Research, Engineering and Management, Vol. 55, No. 1,
pp. 23-28, 2011
[7] Haykin S., “Neural networks – a comprehensive foundation”, 2nd
edition,
Pearson Education, 2003.
[8] S.N Sivanandan and S.N Deepa, “Principles of soft computing”, Wiley
India Ltd, First Edition, 2007.
[9] Chaoju Hu and Fen Zhao, “Improved Methods of BP Neural Network
Algorithm and its Limitation”, International Forum on Information
Technology and Applications, Vol. 1, pp. 11-14, 2010.
[10] Shifan Guo, Yansong Li and Sheng Xiao, “Wind speed forecasting of
genetic Neural model based rough set theory”, IEEE International
Conference on Critical Infrastructure, pp. 1-6, 2010.
[11] Yang, J., Rivard, H. & Zmeureanu, R. (2005). Building Energy Predication
with Adaptive Artificial Neural Networks, Ninth International IBPSA
Conference Montréal, August 15-18.
[12] Chantasut, N., Charoenjit, C. & Tanprasert, C. (2004). Predictive Mining
of Rainfall Predictions Using Artificial Neural Networks for Chao Phraya
River, 4th
International Conference of The Asian Federation of
Information Technology in Agriculture and The 2nd World Congress on
Computers in Agriculture and Natural Resources,
[13] Xia, Changhao, Jian Wang, and Karen McMenemy. "Short, medium and
long term load forecasting model and virtual load forecaster based on
radial basis function neural networks." International Journal of Electrical
Power & Energy Systems 32, no. 7 (2010): 743-750.
[14] Willmott, Cort J., and Kenji Matsuura. "Advantages of the mean absolute
error (MAE) over the root mean square error (RMSE) in assessing average
model performance." Climate research 30, no. 1 (2005): 79.
[15] Beale, M., Hagan, M. & Demut, H. (2010). Neural Network Toolbox
User’s Guide, 14.03.2011,Available from http://www.mathworks.com/
help/pdf_doc/nnet/nnet.pdf
[16] Li, Zhengquan, Zhongen Yang, Yiping Yao, Shengjun Chen, Xiaowei
Zhang, and Tao Feng. "Wind farm power forecast in mid-eastern coastline
of china."IJRRAS 14, no.2 (2013): 324-332.
[17] El-Fouly, Tarek HM, Ehab F. El-Saadany, and Magdy MA Salama. "One
day ahead prediction of wind speed and direction." Energy Conversion,
IEEE Transactions on 23, no. 1 (2008): 191-201.

More Related Content

What's hot

Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...elelijjournal
 
Short Term Electrical Load Forecasting by Artificial Neural Network
Short Term Electrical Load Forecasting by Artificial Neural NetworkShort Term Electrical Load Forecasting by Artificial Neural Network
Short Term Electrical Load Forecasting by Artificial Neural NetworkIJERA Editor
 
H021203048056
H021203048056H021203048056
H021203048056theijes
 
A survey research summary on neural networks
A survey research summary on neural networksA survey research summary on neural networks
A survey research summary on neural networkseSAT Publishing House
 
Expert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnnExpert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnnijcsa
 
Adaptive modified backpropagation algorithm based on differential errors
Adaptive modified backpropagation algorithm based on differential errorsAdaptive modified backpropagation algorithm based on differential errors
Adaptive modified backpropagation algorithm based on differential errorsIJCSEA Journal
 
Modeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technologyModeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technologytheijes
 
Electricity consumption-prediction-model-using neuro-fuzzy-system
Electricity consumption-prediction-model-using neuro-fuzzy-systemElectricity consumption-prediction-model-using neuro-fuzzy-system
Electricity consumption-prediction-model-using neuro-fuzzy-systemCemal Ardil
 
1.meena tushir finalpaper-1-12
1.meena tushir finalpaper-1-121.meena tushir finalpaper-1-12
1.meena tushir finalpaper-1-12Alexander Decker
 
Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...IOSR Journals
 
Design of c slotted microstrip antenna using
Design of c slotted microstrip antenna usingDesign of c slotted microstrip antenna using
Design of c slotted microstrip antenna usingeSAT Publishing House
 
Comparison of backstepping, sliding mode and PID regulators for a voltage inv...
Comparison of backstepping, sliding mode and PID regulators for a voltage inv...Comparison of backstepping, sliding mode and PID regulators for a voltage inv...
Comparison of backstepping, sliding mode and PID regulators for a voltage inv...IJECEIAES
 
Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...
Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...
Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...IOSR Journals
 
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...ijcsit
 
A PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURON
A PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURONA PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURON
A PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURONijdpsjournal
 
Hybrid PSO-SA algorithm for training a Neural Network for Classification
Hybrid PSO-SA algorithm for training a Neural Network for ClassificationHybrid PSO-SA algorithm for training a Neural Network for Classification
Hybrid PSO-SA algorithm for training a Neural Network for ClassificationIJCSEA Journal
 
Simulation of Single and Multilayer of Artificial Neural Network using Verilog
Simulation of Single and Multilayer of Artificial Neural Network using VerilogSimulation of Single and Multilayer of Artificial Neural Network using Verilog
Simulation of Single and Multilayer of Artificial Neural Network using Verilogijsrd.com
 
Survey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique AlgorithmsSurvey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique AlgorithmsIRJET Journal
 

What's hot (19)

Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...
 
Short Term Electrical Load Forecasting by Artificial Neural Network
Short Term Electrical Load Forecasting by Artificial Neural NetworkShort Term Electrical Load Forecasting by Artificial Neural Network
Short Term Electrical Load Forecasting by Artificial Neural Network
 
H021203048056
H021203048056H021203048056
H021203048056
 
A survey research summary on neural networks
A survey research summary on neural networksA survey research summary on neural networks
A survey research summary on neural networks
 
Expert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnnExpert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnn
 
Adaptive modified backpropagation algorithm based on differential errors
Adaptive modified backpropagation algorithm based on differential errorsAdaptive modified backpropagation algorithm based on differential errors
Adaptive modified backpropagation algorithm based on differential errors
 
Modeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technologyModeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technology
 
Electricity consumption-prediction-model-using neuro-fuzzy-system
Electricity consumption-prediction-model-using neuro-fuzzy-systemElectricity consumption-prediction-model-using neuro-fuzzy-system
Electricity consumption-prediction-model-using neuro-fuzzy-system
 
1.meena tushir finalpaper-1-12
1.meena tushir finalpaper-1-121.meena tushir finalpaper-1-12
1.meena tushir finalpaper-1-12
 
Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...
 
Design of c slotted microstrip antenna using
Design of c slotted microstrip antenna usingDesign of c slotted microstrip antenna using
Design of c slotted microstrip antenna using
 
Comparison of backstepping, sliding mode and PID regulators for a voltage inv...
Comparison of backstepping, sliding mode and PID regulators for a voltage inv...Comparison of backstepping, sliding mode and PID regulators for a voltage inv...
Comparison of backstepping, sliding mode and PID regulators for a voltage inv...
 
Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...
Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...
Artificial Neural Networks for ON Line Assessment of Voltage Stability using ...
 
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
 
A PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURON
A PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURONA PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURON
A PERFORMANCE EVALUATION OF A PARALLEL BIOLOGICAL NETWORK MICROCIRCUIT IN NEURON
 
Hybrid PSO-SA algorithm for training a Neural Network for Classification
Hybrid PSO-SA algorithm for training a Neural Network for ClassificationHybrid PSO-SA algorithm for training a Neural Network for Classification
Hybrid PSO-SA algorithm for training a Neural Network for Classification
 
Dx25751756
Dx25751756Dx25751756
Dx25751756
 
Simulation of Single and Multilayer of Artificial Neural Network using Verilog
Simulation of Single and Multilayer of Artificial Neural Network using VerilogSimulation of Single and Multilayer of Artificial Neural Network using Verilog
Simulation of Single and Multilayer of Artificial Neural Network using Verilog
 
Survey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique AlgorithmsSurvey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique Algorithms
 

Similar to Optimal neural network models for wind speed prediction

Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...
Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...
Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...Waqas Tariq
 
Short term load forecasting using hybrid neuro wavelet model
Short term load forecasting using hybrid neuro  wavelet modelShort term load forecasting using hybrid neuro  wavelet model
Short term load forecasting using hybrid neuro wavelet modelIAEME Publication
 
NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...
NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...
NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...IAEME Publication
 
AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...
AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...
AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...IAEME Publication
 
Prediction of Extreme Wind Speed Using Artificial Neural Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural  Network ApproachPrediction of Extreme Wind Speed Using Artificial Neural  Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural Network ApproachScientific Review SR
 
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORijac123
 
Artificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load ForecastingArtificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load ForecastingIRJET Journal
 
Design of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network modelDesign of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network modeleSAT Journals
 
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural NetworkIRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural NetworkIRJET Journal
 
Neural wavelet based hybrid model for short-term load forecasting
Neural wavelet based hybrid model for short-term load forecastingNeural wavelet based hybrid model for short-term load forecasting
Neural wavelet based hybrid model for short-term load forecastingAlexander Decker
 
Live to learn: learning rules-based artificial neural network
Live to learn: learning rules-based artificial neural networkLive to learn: learning rules-based artificial neural network
Live to learn: learning rules-based artificial neural networknooriasukmaningtyas
 
A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...
A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...
A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...Cemal Ardil
 
Available transfer capability computations in the indian southern e.h.v power...
Available transfer capability computations in the indian southern e.h.v power...Available transfer capability computations in the indian southern e.h.v power...
Available transfer capability computations in the indian southern e.h.v power...eSAT Journals
 

Similar to Optimal neural network models for wind speed prediction (20)

Iv3515241527
Iv3515241527Iv3515241527
Iv3515241527
 
Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...
Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...
Differential Protection of Generator by Using Neural Network, Fuzzy Neural an...
 
Short term load forecasting using hybrid neuro wavelet model
Short term load forecasting using hybrid neuro  wavelet modelShort term load forecasting using hybrid neuro  wavelet model
Short term load forecasting using hybrid neuro wavelet model
 
40220140501001
4022014050100140220140501001
40220140501001
 
NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...
NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...
NEURAL NETWORK FOR THE RELIABILITY ANALYSIS OF A SERIES - PARALLEL SYSTEM SUB...
 
Y4502158163
Y4502158163Y4502158163
Y4502158163
 
AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...
AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...
AN IMPROVED METHOD FOR IDENTIFYING WELL-TEST INTERPRETATION MODEL BASED ON AG...
 
Prediction of Extreme Wind Speed Using Artificial Neural Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural  Network ApproachPrediction of Extreme Wind Speed Using Artificial Neural  Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural Network Approach
 
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
 
Artificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load ForecastingArtificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load Forecasting
 
H046014853
H046014853H046014853
H046014853
 
Design of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network modelDesign of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network model
 
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural NetworkIRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
 
40120130405012
4012013040501240120130405012
40120130405012
 
Neural wavelet based hybrid model for short-term load forecasting
Neural wavelet based hybrid model for short-term load forecastingNeural wavelet based hybrid model for short-term load forecasting
Neural wavelet based hybrid model for short-term load forecasting
 
JACT 5-3_Christakis
JACT 5-3_ChristakisJACT 5-3_Christakis
JACT 5-3_Christakis
 
Live to learn: learning rules-based artificial neural network
Live to learn: learning rules-based artificial neural networkLive to learn: learning rules-based artificial neural network
Live to learn: learning rules-based artificial neural network
 
A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...
A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...
A multi-layer-artificial-neural-network-architecture-design-for-load-forecast...
 
Springer
SpringerSpringer
Springer
 
Available transfer capability computations in the indian southern e.h.v power...
Available transfer capability computations in the indian southern e.h.v power...Available transfer capability computations in the indian southern e.h.v power...
Available transfer capability computations in the indian southern e.h.v power...
 

More from IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

More from IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Recently uploaded

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
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
 
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
 
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
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
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
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
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
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 

Recently uploaded (20)

🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
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...
 
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
 
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
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
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...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
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
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 

Optimal neural network models for wind speed prediction

  • 1. http://www.iaeme.com/ijeet.asp 1 editor@iaeme.com International Journal of Electrical Engineering & Technology (IJEET) Volume 6, Issue 7, July-Aug (2015), pp. 01-12, Article ID: Article ID: 40220150607001 Available online at http://www.iaeme.com/currentissue.asp?JType=IJEET&VType=6&IType=7 ISSN Print: 0976 – 6545 and ISSN Online: 0976 – 6553 © IAEME Publication _____________________________________________________________________ OPTIMAL NEURAL NETWORK MODELS FOR WIND SPEED PREDICTION V.Ranganayaki and S.N. Deepa Anna University Regional Centre, Coimbatore, India ABSTRACT The accuracy of wind speed forecasting is important to control, and optimizes wind power generation. The nonlinearity patterns of wind speed data is the reason of inaccurate wind speed forecasting. The artificial neural networks handle the nonlinearities and provide accurate wind speed. This paper presents multilayer feed forward network and radial basis functions for wind speed forecasting performance analysis of real time data collected from Coimbatore wind farms, utilizing daily wind speed data collected over a period of one year. Experimental results show that this model is an optimal model which can improve the prediction precision of wind speed compared with other approaches according to the statistical analysis involving the coefficient of determination (R2), mean absolute error (MAE), the root mean square error (RMSE) and the mean bias error (MBE) are conducted. Keywords: Radial Basis Function networks, Multi-layer Perceptron networks, wind speed, Mean square error, Mean absolute error , Mean bias error, Coefficient of determination. Keywords: Down Counter, Mod 6 Down Counter, Synchronous Counters. Cite this Article: V.Ranganayaki and S.N. Deepa, Optimal Neural Network Models For Wind Speed Prediction. International Journal of Electrical Engineering & Technology, 6(7), 2015, pp. 01-12 http://www.iaeme.com/currentissue.asp?JType=IJEET&VType=6&IType=7 _______________________________________________________________ 1. INTRODUCTION The wind energy is a significant potential renewable energy source with lowest cost of electricity production. The wind farm operator can predict the power output with the accurate wind data. This is useful for power system planning, scheduling, and storage capacity optimization. Due to the random fluctuation of wind, the prediction results of wind power may change rapidly. The major two issues in renewable energy are how to make wind energy cost effective and how to integrate wind energy into electricity grids. This increases the importance of the accurate wind speed prediction to assessment of wind energy. To obtain proper and efficient wind power utilization,
  • 2. V.Ranganayaki and S.N. Deepa http://www.iaeme.com/ijeet.asp 2 editor@iaeme.com the wind speed prediction plays an important role in forecasting. To increase the accuracy of wind speed prediction, researchers proposed many approaches including physical method such as numerical weather prediction, statistical method such as ARMA model [1], the spatial correlation model and the artificial intelligence method and so on. Most of the wind speed prediction models have been developed from historical data. [2] - [5]. According to the literature review to improve the accuracy, wind speed prediction is needed. [6]. Artificial Neural Network (ANNs) exhibit the properties, such as: adaptability, capability of learning by examples, and ability to generalize. One of the most used ANN model is the well-known Multi-Layer Perceptron (MLP). Most of the available training methods for ANNs only focus on the adjustment of connection weights with in a fixed topology. Multi-layer Perceptron (MLP) is used successfully in many applications which includes pattern classification, image processing, prediction etc. The back propagation network (BPN) is one of the most popular methods of training used in multilayer perceptron networks [7]. The training process of BPN for prediction problem consists of two tasks, the first one is the selection of the appropriate architecture for the problem, and the second is the adjustment of connection weights of the network. The input layer is set of numerical inputs. The inputs are then multiplied by weights and processed by individual processing units in second layer [8] - [9]. The back propagation algorithm has two phases. In the first phase the inputs are given and propagated through to compute output. The output is compared with desired value, to obtain the error. The second phase involves backward pass through network during which error signal is passed to each unit in network and appropriate weight changes calculated. The gradient descent rule is adopted for updating the weights of neural network [10]. ANNs have the ability to model linear and non-linear systems without the need to make assumptions implicitly as in most traditional statistical approaches. They have been applied in various aspects of science and engineering [11] - [12]. There are different types of neural network are available, mainly feed forward networks and feedback neural networks. The feed forward network has no feedback. But the feedback neural network has a feedback. BP network and Radial Basis Function (RBF) network plays a major role in feed forward networks. Recurrent Neural Networks (RNN) and pulsed neural networks are examples of the feedback networks. This paper mainly focuses on the feed forward neural network (BPA) and Radial Basis Function (RBF). This paper is structured as follows. Section 2 shows architecture of ANN models. Section3 describing briefly about problem definition. Section 4 describes designing of ANN models. Section 5 describes discussion and simulation results. Finally, Section 6 presents the conclusion of this work and suggested some improvements to this paper. 2. ANN MODELS 2.1 Multilayer Perceptron Network MLPs are the most common type of feed-forward networks. Figure 1 shows an MLP which has Three layers: an input layer, a hidden layer and an output layer. Neurons in input layer only act as buffers for sending the input signals xi (i=1, 2 …n) to neurons in the hidden layer. Each neuron j in the hidden layer adds up its input signals xi after weighting them with the strengths of the respective connections wji from the input layer and computes its output yj as a function f of the sum.
  • 3. Optimal Neural Network Models For Wind Speed Prediction http://www.iaeme.com/ijeet.asp 3 editor@iaeme.com       = ∑= n 1i ijij xwfy (1) f can be a simple threshold function or a sigmoidal, hyperbolic tangent or radial basis function. Figure 1 A three layer feed-forward neural network The output of neurons in the output layer is computed similarly. The back propagation algorithm, a gradient descent algorithm, is the most commonly adopted MLP training algorithm. It gives the change Δwji the weight of a connection between neurons I and j as follows: (2) where η is a parameter called the learning rate and δj is a factor depending on whether neuron j is an input neuron or a hidden neuron. For output neurons ( )( )jjjj y)(ynetfδ −∂∂= t (3) and for hidden neurons ( )( )∑ ∂∂∂= qjqqjj wnetfδ (4) In Eq. (3), net j is the total weighted sum of input signals to neurons j and yj(t) is the target output for neuron j. As there are no target outputs for hidden neurons, in Eq. (4), the difference between the target and actual output of a hidden neurons j is replaced by the weighted sum of the δq terms already obtained for neurons q connected to the output of j. The process begins with the output layer, the δ term is computed for neurons in all layers and weight updates determined for all connections, iteratively. The weight updating process can happen after the presentation of each training pattern (pattern- based training) or after the presentation of the whole set of training patterns (batch training). Training epoch is completed when all training patterns have been presented once to the MLP. z Input Layer Output Layer z zz Hidden Layer Network Inputs Network Output ijij xηδΔw =
  • 4. V.Ranganayaki and S.N. Deepa http://www.iaeme.com/ijeet.asp 4 editor@iaeme.com A commonly adopted method to speed up the training is to add a “momentum” term to Eq.(5) which effectively lets the previous weight change influence the new weight change: Δwij (I + 1) = η δj xi + μ Δwij(I) (5) where Δwij (I + 1) and Δwij (I) are weight changes in epochs (I + 1) and (I), respectively, and μ is “momentum” coefficient. 2.2 RBF Neural Networks The RBF neural networks are a class of feed-forward ANNs constructed based on the function approximation theory. Figure 2 shows RBF neural networks, which contains an input layer, a hidden layer, and an output layer. Figure 2 The Structure of RBF Neural Network Generally, RBF neural network input-output relationship can be described in equation (6) as: ∑= += m i iii w),βφ(x,cwy 1 0 (6) where x is the input; y is the output; m is the number of RBF units in the hidden layer; wi and w0 are the weight and bias between the ith RBF unit and the output, respectively; φi(·), ci and ßi are the activation function, center, and width of the ith RBF unit, respectively. The Gaussian function is the most commonly used RBF function.         − = 2 2 exp β j ii cx ),βφ(x,c (7) Where 2 jcx − represents the Euclidean distance. The Gaussian function makes the value equidistant from the center in all directions have the same values. Constructing a RBF neural network involves determining the RBF centers, width, and the output weights and bias. Two methods are commonly used to determine the
  • 5. Optimal Neural Network Models For Wind Speed Prediction http://www.iaeme.com/ijeet.asp 5 editor@iaeme.com centers of RBF networks. One is to select representative input samples as the RBF centers; the other is to determine the centers with a self-organization method, such as the K-means clustering algorithm [13]. In this paper, the K-means clustering method is used to locate the centers. Once the RBF centers are located, the width can be simply determined by [13]: ßi =k ·dmax (8) where dmax is the maximum Euclidean distance of the centers and k is a nonnegative scalar. After the centers and width are fixed, the weights can be determined by a least- square method to minimize the error of the output. 3. PROBLEM DEFINITION Building reliable wind energy system wind speed prediction problem has been considered. In this work, the real data wind speed (m/s), wind direction (degrees) and temperature (°C) collected from Suzlon Energy systems used as input parameters. Data sets in twelve 5-min interval over an hour are averaged to obtain hourly data. The 3000 samples are used for training the network and 1000 samples are used for testing. Various criteria are investigated in order to determine the optimal MLP architecture (i.e. the highest coefficient of determination, the lowest root mean square error, mean absolute error and the lowest mean bias error) for each combination of input variables. Different training algorithms were used with changes in the number of neurons and hidden layers. In addition, different transfer functions including the tangent sigmoid, log sigmoid and linear functions in the hidden layer were also investigated. Seven back-propagation training algorithms were tested in order to obtain the most appropriate algorithm for the training process. The radius value known as spread of the function and the number of neurons are changed to find the best performance of the RBF network. Basically, the larger the value of spread, the smoother the function approximation will be. However, if the spread value is too large, many neurons may be required to fit the rapidly-changing function. On the other hand, very small spread values will require many neurons in order to fit the smooth function and networks cannot be generalized well [15]. In this paper, the spread will be varied between 1 and 60 whereas the number of neurons is changed between 5 and 600 in order to come up with the most suitable ANN prediction models. 4. DESIGN OF ANN MODELS 4.1 Design of ANN models ANN models design involves number of steps. There are five basic steps: (1) data collection, (2) preprocessing data, (3) constructing the neural network (4) training the network (5) testing the network performance shown in Fig.6. 4.1.1. Data collection The real time data is collected from Suzlon Energy LTd., India, wind farm a period from January 2012 to December 2013. The data sets include wind speed, wind vane direction and temperature.
  • 6. V.Ranganayaki and S.N. Deepa http://www.iaeme.com/ijeet.asp 6 editor@iaeme.com Table 1 Input parameters S.No Input Parameters Units Parameters range 1 Wind speed m/s 1-20 2 Wind direction degree 1-350 3 Temperature Degree Celsius 24-35 The input parameters are considered to the neural network models is given in table.1. The samples are as shown in Table.2. Table 2 Samples S. No Wind speed (m/s) Wind Direction (Degree) Temperature (Degree Celsius) 1 6.2 270 29.2 2 5.9 267.2 29.2 3 5.3 270 29.3 4 5.2 274.2 29.2 5 4.9 270 29.2 6 5.3 274.2 29.1 7 5.8 272.8 29.0 8 6.9 274.2 28.9 9 7.1 275.6 28.8 10 7.4 278.4 28.8 4.1.2 Data pre-processing There are three data preprocessing steps are done to train the network more efficiently. The steps are: (1) solve missing data problem, (2) Normalization (3) randomize data. The missing data are corrected by the average values of neighboring data. In general, Normalization procedure is a good practice for input data before presenting data to the network. It scales number of data to improve the accuracy of the model. 4.1.3 Constructing the network At this stage, the designer specifies the number of hidden neurons in the layer, transfer function, training function, weight/bias learning function and performance function. In this work, the ANN models used are multilayer perceptron (MLP) and radial basis function (RBF) networks. The selection parameters of multilayer perceptron model are as shown in Table 3
  • 7. Optimal Neural Network Models For Wind Speed Prediction http://www.iaeme.com/ijeet.asp 7 editor@iaeme.com Figure 3 Wind speed prediction model Table 3 Parameters of MLP Neural Network S.no Parameters 1. Inputs = 3 2. Output= 1 3. Number of Hidden layers= 1 4. Number of Hidden neurons varied = 5-100 6. Epochs = 1000 The selection parameters of Radial basis function are as shown Table 4. Table 4 Parameters of RBF Neural Network S.no Parameters 1. Inputs = 3 2. Output= 1 3. Number of Hidden layers= 1 4. Number of Hidden neurons varied = 5-600 5. Spread varied = 1-60 6. Epochs = 1000 4.1.4 Train the network. During the training process, the weights are adjusted in order to make the actual outputs close to the target outputs of the network. In this work, 3000 samples are used for training. Six different types of training algorithms are investigated for developing the MLP network. In this study, the built in MATLAB transfer functions purelin, logsig, and tansig are used. 4.1.5 Testing the network The next step is to test the performance of the developed ANN models. At this stage test data are exposed to the model. For this study, 1000 samples have been used for testing the developed model. In order to evaluate the performance of the developed ANN models quantitatively and verify whether there is any underlying trend in performance of ANN models, MLP or RBN Models Wind speed Wind direction Temperature Predicted wind Speed
  • 8. V.Ranganayaki and S.N. Deepa http://www.iaeme.com/ijeet.asp 8 editor@iaeme.com statistical analysis involving the coefficient of determination (R2), the root mean square error (RMSE), mean absolute error (MAE) and the mean bias error (MBE) are conducted. RMSE provides information on the short term performance which is a measure of the variation of predicated values around the measured data. The lower the RMSE, the more accurate is the estimation. MBE is an indication of the average deviation of the predicted values from the corresponding measured data and can provide information on long term performance of the models; the lower MBE the better is the long term model prediction. A positive MBE value indicates the amount of overestimation in the predicated wind speed and vice versa. MAE is a most natural measure of average error magnitude and can provide the information on short term performance of the models. The expressions for the abovementioned statistical parameters are: ipii IIe ,−= (9) ∑= = n i ie N MAE 1 1 (10) ∑= = n i ie N MBE 1 1 (11) 2 1 1 ∑= = n i ie N RMSE (12) Where ei denotes predicted error, ipI , denotes the predicted wind speed in m/s, iI denotes the measured wind speed in m/s, and n denotes the number of samples (observations). 5. RESULTS AND DISCUSSION This section presents the best achieved results for both the MLP and RBF ANN models. Tables 5 and 6 show the computed values of R2, RMSE, MAE and MBE for the developed ANN models (MLP and RBF) considering different network structures. For the network structure identification used in the second column of Tables 5-6, the first number indicates number of neurons in the input layer, the last number represents neurons in the output layer, and in between represent neurons in the hidden layers. Table 5 Statistical error parameters of MLP models for different structures Model Network Structure MSE RMSE MAE MBE R2 1 3-10-1 0.0149 0.1219 0.0699 0.0679 0.91 2 3-7-1 0.0176 0.1328 0.1218 0.1217 0.94 3 3-25-1 0.0432 0.2079 0.1435 0.0308 0.92 4 3-35-1 0.0033 0.0571 0.0529 -0.0520 0.89 5 3-50-1 0.0527 0.2296 0.1838 0.1829 0.88 6 3-60-1 0.2634 0.5132 0.2514 0.1858 0.85
  • 9. Optimal Neural Network Models For Wind Speed Prediction http://www.iaeme.com/ijeet.asp 9 editor@iaeme.com From Table 5 we note that model one is the best among all the investigated MLP models for long performance prediction as it yields the lowest values of MAE, MBE, RMSE and a 95 % coefficient of determination (R). The input parameters used in the selected model are the temperature, wind direction and wind speed. From Figure 4 it’s observed that actual and predicted wind speed based on MLP model. Figure 4 Wind speed prediction using MLP model Table 6 Statistical error parameters of RBF models for different structures Model Network Structure MSE RMSE MAE MBE R2 1 3-462-1 4.89515 2.2125 1.8818 0.6292 0.86 2 3-156-1 4.64531 2.1553 1.8225 0.1079 0.88 3 3-98-1 0.04995 0.2235 0.1153 0.0216 0.89 4 3-28-1 0.01247 0.1117 0.0676 0.0038 0.96 5 3-16-1 0.01350 0.1162 0.0683 0.0192 0.95 6 3-14-1 0.01865 0.1366 0.0644 -0.0077 0.92 Table 6 on the other hand, shows that model four is the best among all the investigated RBF models; the input parameters for this model are again the temperature, wind direction and wind speed. In the first and third models, the MLP technique has better accuracy for predicting the wind speed compared to RBF. For these models, the computed MBE values of 0.0679, 0.0308 respectively, are promising and provide good accuracy for long term prediction. On the other hand, some RBF models perform better in terms of low MBE values. From Figure 5 it’s observed that actual and predicted wind speed based on RBF model.
  • 10. V.Ranganayaki and S.N. Deepa http://www.iaeme.com/ijeet.asp 10 editor@iaeme.com Figure 5 Wind speed prediction using RBF model Figure 6 Comparison of wind speed prediction error waveform for MLP and RBF models
  • 11. Optimal Neural Network Models For Wind Speed Prediction http://www.iaeme.com/ijeet.asp 11 editor@iaeme.com The suggested models of neural network can be used in wind speed prediction of renewable energy systems. The RBF model presets best performance as compared to MLP neural network models in terms of lower MBE values. Each neural networks structure is trained and test with real time wind data. From Figure 6 we observed that RBF model has almost low error rates than MLP model. Table 7 shows that the optimal models give better value for errors in comparison with other existing models. Value of R is a coefficient of determination which is calculated from deterministic coefficient (R2 ). Table 7 Performance analysis of various models S.No Various Models RMSE MAE R 1. Li, Zhengquan et al. Persistence Model 1 year model 2 year model 3.83 3.122 2.107 3.132 2.587 1.691 0.56 0.51 0.86 2. El-Fouly et al. 1.56 1.91 0.76 3. Optimal MLP Model 0.1219 0.0699 0.95 4. Optimal RBF model 0.1117 0.0676 0.98 6. CONCLUSION In this work, MATLAB tools are used to predict monthly average wind speed prediction in Coimbatore wind farm. Real data 3000 samples are used for training the neural network, while 1000 data are used for testing. Six models with different input combinations are modeled with MLP and RBF ANN techniques. The obtained results confirm the superiority (proper selection of spread or radius value) of the RBF technique over the MLP technique in most of the cases, namely models 4, 5 and 6 with deterministic coefficients near 99 % and low MBE, MAE and RMSE values. Moreover proposed ANN models MLP and RBF have optimum performance than other existing models. Currently, our focus is on developing the hybrid model to improve the wind speed prediction with better performance. REFERENCES [1] Chatfield, Chris. The analysis of time series: an introduction. CRC press, 2013. [2] Fonte P M, Goncalo Xufre Silva and J.C Quadrado “Wind speed prediction using ANN”, Proceedings of the 6th WSEAS International Conference on Neural Networks, pp. 134-139, 2005. [3] Goncalo Xufre Silva, P. M. Fonte and J. C. Quadrado, “Radial Basis Function networks for wind speed prediction”, Proceedings of the International Conference on Artificial Intelligence, Knowledge Engineering and Databases, pp. 286-290, 2006. [4] Bei Chen, Liang Zhao, Xin Wang, Jian Hong Lu, Guo Yao Liu, Rui Feng Cao and Jin Bo Liu, “Wind speed prediction using OLS algorithm based RBF Neural Network”, IEEE Asia-Pacific Power and Energy Engineering Conference, pp. 1-4, 2009.
  • 12. V.Ranganayaki and S.N. Deepa http://www.iaeme.com/ijeet.asp 12 editor@iaeme.com [5] Li Xingpei, Liu Yibing and Xin Weidong, “Wind speed prediction based on genetic Neural Network”, 4th IEEE Conference on Industrial Electronics and Applications, pp. 2448 – 2451, 2009. [6] Umit Kemalettin Terzi, Nevzat Onat and Selcuk Atis, “New hybrid method proposal for wind speed prediction: case study of Luleburgaz”, Environmental Research, Engineering and Management, Vol. 55, No. 1, pp. 23-28, 2011 [7] Haykin S., “Neural networks – a comprehensive foundation”, 2nd edition, Pearson Education, 2003. [8] S.N Sivanandan and S.N Deepa, “Principles of soft computing”, Wiley India Ltd, First Edition, 2007. [9] Chaoju Hu and Fen Zhao, “Improved Methods of BP Neural Network Algorithm and its Limitation”, International Forum on Information Technology and Applications, Vol. 1, pp. 11-14, 2010. [10] Shifan Guo, Yansong Li and Sheng Xiao, “Wind speed forecasting of genetic Neural model based rough set theory”, IEEE International Conference on Critical Infrastructure, pp. 1-6, 2010. [11] Yang, J., Rivard, H. & Zmeureanu, R. (2005). Building Energy Predication with Adaptive Artificial Neural Networks, Ninth International IBPSA Conference Montréal, August 15-18. [12] Chantasut, N., Charoenjit, C. & Tanprasert, C. (2004). Predictive Mining of Rainfall Predictions Using Artificial Neural Networks for Chao Phraya River, 4th International Conference of The Asian Federation of Information Technology in Agriculture and The 2nd World Congress on Computers in Agriculture and Natural Resources, [13] Xia, Changhao, Jian Wang, and Karen McMenemy. "Short, medium and long term load forecasting model and virtual load forecaster based on radial basis function neural networks." International Journal of Electrical Power & Energy Systems 32, no. 7 (2010): 743-750. [14] Willmott, Cort J., and Kenji Matsuura. "Advantages of the mean absolute error (MAE) over the root mean square error (RMSE) in assessing average model performance." Climate research 30, no. 1 (2005): 79. [15] Beale, M., Hagan, M. & Demut, H. (2010). Neural Network Toolbox User’s Guide, 14.03.2011,Available from http://www.mathworks.com/ help/pdf_doc/nnet/nnet.pdf [16] Li, Zhengquan, Zhongen Yang, Yiping Yao, Shengjun Chen, Xiaowei Zhang, and Tao Feng. "Wind farm power forecast in mid-eastern coastline of china."IJRRAS 14, no.2 (2013): 324-332. [17] El-Fouly, Tarek HM, Ehab F. El-Saadany, and Magdy MA Salama. "One day ahead prediction of wind speed and direction." Energy Conversion, IEEE Transactions on 23, no. 1 (2008): 191-201.