A Comparison of MLP, RNN and ESN in Determining Harmonic Contributions from Nonlinear Loads

Size: px
Start display at page:

Download "A Comparison of MLP, RNN and ESN in Determining Harmonic Contributions from Nonlinear Loads"

Transcription

1 A Comparison of MLP, RNN and ESN in Determining Harmonic Contributions from Nonlinear Loads Jing Dai, Pinjia Zhang, Joy Mazumdar, Ronald G Harley and G K Venayagamoorthy 3 School of Electrical and Computer Engineering Georgia Institute of Technology Atlanta, GA 333, USA jingdai@gatechedu {pzhang, rharley}@ecegatechedu Power Conversion Division Siemens Energy and Automation Alpharetta, GA 35, USA joymazumdar@siemenscom 3 Department of Electrical Engineering Missouri University of Science and Technology Rolla, MO 6549 USA gkumar@ieeeorg Abstract- With the wide use of power electronics devices, harmonic currents are being injected into the power system, known as harmonic pollution Although IEEE standards [][] have required the utilities and customers to limit the amount of harmonic current and voltage, the practical evaluation is complicated, as it is difficult to separate the contributions from the utilities and customers A neuralnetwork-based harmonic current prediction scheme was previously proposed by the authors to estimate the true harmonic current attributed to the nonlinearity of the load, instead of the distorted power supply To test the feasibility of different types of neural networks in this application, this paper compares the performances and computational effort of three types of neural networks: Multilayer perceptron networks (MLP), simple recurrent network (RNN) and echo state network (ESN) I INTRODUCTION With the wide use of power electronics devices, harmonic currents are being injected into the power system, known as harmonic pollution IEEE standards 59 [][] and the IEC--3 [3] limit the amount of harmonic current and voltage generated by utilities and customers If the harmonics generated by each customer, especially large industrial plant, has serious negative effects on the power quality, then this can be identified by this proposed method, and the utility can adopt appropriate methods to penalize these offending customers Since the interactions between loads and sources are complex, to identify accurate harmonics generated by an individual nonlinear load becomes a challenge Figure shows a typical network structure When the voltage at the point of common coupling (PCC) is sinusoidal, the harmonic current generated by the nonlinear load is defined as the true harmonic current contributions from this load However, there are often other loads connected to the PCC If the voltage at the PCC is distorted, these other loads will have harmonic currents to the system even if the loads are linear As a result, simply measuring the harmonic currents of each individual load is not sufficiently accurate since the harmonic current is caused by both the load itself as well as the distorted PCC voltage Researchers have proposed various tools based on conventional power system analysis methods to address this problem The harmonic active method [4] and critical impedance measurement method [5] can achieve a certain degree of accuracy; however, these methods are based on some fundamental assumptions such as prior knowledge of the source impedance The authors have previously [6] presented a novel load modeling approach based on neural networks to identify the nonlinear characteristics of a load Since neural networks are known as effective tools of function approximation, the relationship between the input voltage and output current of the load can be learnt by a neural network after proper training; and then, if fed with a sinusoidal input voltage, the output current of the network should be the true distorted current of the load Therefore, the properly trained neural network can serve as an accurate model of the nonlinear load to predict the true distorted current attributed to the load is() t = i () t + ih() t Nonlinear Load RS Supply Network LS vt () PCC Other Loads Fig A simplified power distribution system The approximation capability of different types of neural networks may vary dramatically In order to find out which type of neural network is suitable for this particular application, this paper investigates the feasibility of three types of neural network: Feed-forward Multilayer perceptron networks (MLP), simple recurrent network (RNN) and echo state network (ESN) In this paper, the neural network-based load modeling scheme is introduced briefly in section II; the structures and training algorithms of MLP, RNN and ESN are described in section III; the experimental setup and the experimental results, which are used to validate the proposed scheme for different types of neural network, are discussed in section IV The training, testing results, and harmonic current prediction results of the three types of neural networks are shown in section V The comparison of these neural networks in performances, required calculation efforts and the convergence properties is shown in section VI Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

2 II HARMONIC CURRENT ESTIMATION SCHEME The harmonic current estimation scheme [6] is shown in Fig The distorted power supply voltage v abc and the resultant distorted line current i abc are measured to identify nonlinear characteristic of the load The identification neural network (ANN) is trained to learn the nonlinear characteristics The estimation neural network (ANN), which is an exact replica of ANN with trained and fixed weights, is used to predict the true current harmonics The identification neural network (ANN) is trained with the distorted voltage v abc as input and the distorted load current i abc as output After training, a mathematically generated sine wave is supplied to the estimation neural network ANN, to predict the load current harmonics when the load is supplied by a clean sinusoidal voltage source Ideally, ANN can learn the exact nonlinear characteristics of the load, and therefore the distortion present in the output of ANN, iˆabc distorted, can be considered as the exact current harmonics attributed to the nonlinearity of the load Due to the nature of the sigmoidal transfer function, the outputs of the neurons in the hidden layer are limited to values between and Therefore, the inputs to both ANN and ANN are scaled to [- ] v s III RS LS v sine i abc iˆabc distorted iˆabc i abc v abc Fig Proposed harmonic current estimation scheme NEURAL NETWORK STRUCTURE AND TRAINING A MLP neural networks The MLP network is one of the most popular topologies in use nowadays and its structure is shown in Fig 3 This network consists of a set of input neurons, output neurons and one or more layers of hidden neurons The MLP network is one kind of a family of Feed-forward neural networks, where data flows into the network through the input layer, passes through the hidden layer and finally flows out of the network through the output layer, without any direct data-flow loop The network therefore has a simple interpretation as a form of input-output model, with network weights as free parameters [7] bias x(k) x(k-) x(k-) Input Layer Hidden Layer Output Layer W V ^ y(k) Fig 3 MLP neural network architecture The online training algorithm of an MLP consists of two main steps: ) Forward propagation At any sample step k, the input vector x is fed via the corresponding weights in the input matrix W to each neuron in the hidden layer The active vector a is determined using the following equation: a= Wx () Each of the hidden layer neuron activation in a is then passed through a sigmoidal function to determine the hidden layer decision vector d, which is d =, i {,,, m}, () i ai + e where m is the number of neurons in the hidden layer The decision vector is then fed to the corresponding weights in the output weight matrix V The output of the MLP network is computed as y = ( Vd) T (3) ) Error Back-Propagation The output error e is calculated as e = y y (4) where y is the desired value Then e is back propagated through the network to determine the errors e d and e ai, which are computed as ed = Ve, (5) eai = di ( di ) e (6) di The changes of input and output weight matrices at sample step k are computed according to the following equations: T Δ W( k) = γmδw( k ) + γ geax (7) T Δ V( k) = γmδv( k ) + γ ged (8) where γ and m γ g [,] are the momentum gain and learning gain The final step of the training is to update the input and output weight matrices W and V at sample step k as: W( k) = W( k ) +Δ W( k) (9) V( k) = V( k ) +Δ V( k) () B Simple Recurrent Neural Network A simple recurrent neural network is also known as the Elman network [8] The structure of an RNN is shown in Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

3 Fig 4 At each sample step k, the outputs of the hidden neurons at sample step (k-) of the network are used as the additional inputs to the network Adding feedback from previous step introduces a kind of memory to the network, which increases the capability of the network to learn the dynamic characteristics of the system The training algorithm of RNNs is known as the Backpropagation through time method [9] The RNN is unfolded through time, and then back-propagation training is used to update weights as in an MLP bias v(k) v(k-) v(k-) Input Layer Hidden Layer Output Layer W V Fig 4 RNN architecture i(k) C Echo State Neural Network (ESN) The ESN []-[4] is a special form of recurrent neural network proposed in recent years for complex dynamic systems modeling A large (eg hidden neurons) RNN is used as a dynamic reservoir, which can be excited by suitably presented input and/or feedback output The architecture of the ESN used in this paper is shown in Fig 5 u(n) x(n) y(n) Fig 5 ESN architecture The training algorithm of an ESN consists of the following steps: ) Generate a recurrent neural network randomly Three weight matrices are needed They are the input weight matrix W in, internal weight matrix W and output feedback matrix W back Once they have been generated, they will not change during the entire training process Only when a recurrent neural network has the echo state property [9] can it be used for dynamic system modeling Intuitively, the echo state property can be described as follows: if the network has been run for a very long time (from minus infinity time in the definition), the current network state is uniquely determined by the history of the input and the (teacher-forced) output The echo state property is related to the algebraic properties of the weight matrix W; however, there is no known necessary and sufficient algebraic condition which allows one to decide whether the network has the echo state property, given W in, W and W back But there are certain conditions to increase the possibility of the RNN having the echo state property Usually W is generated following the principles described as follows: Generate a sparse matrix W and make sure the mean value of all the weights in it is about zero Normalize W to a matrix W with unit spectral radius as: W W =, () λmax where λ max is the spectral radius of W Scale W to W, as W = αw, () where α < ) Feed the teacher input and teacher output data (training data) to the ESN When the training data are fed to the ESN, they will activate dynamics within the dynamic reservoir At each sample step, compute the internal dynamic reservoir states according to the following equation: in back x( n+ ) = tanh( W u( n+ ) + Wx( n) + W y( n)) (3) where u is the input vector, x is the internal units states vector and y is the output vector Since at time n=, x() and y() are not defined, the following initial conditions are used: Initialize the network state arbitrarily, eg to zero state x()=; Set y()= Then, at each sample step, collect the input u(n) and x(n) together as a new row of a matrix M In other words, the n-th row of M is the concatenated vector of u(n) and x(n) Meanwhile, collect the teacher output data into another matrix T 3) Wash out the initial memory of the dynamic reservoir Since the arbitrarily generated network states (eg zero state) contain an initial memory which is not caused by the input, the information from times n=, n, is discarded (n is different for different systems and the length of input sequence) By the time n, it is assumed that the effects of the arbitrary starting state have died out and the network states are a pure reflection of the teacher-forced input and output So only keep a part of matrix M and T, to obtain two new matrices denoted as M forget and T forget 4) Compute output weights Multiply the pseudoinverse of M forget by T forget, to obtain out T matrix ( W ) : out T forget ( W ) = pseudoinverse( M ) T (4) Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

4 Now the output yn ˆ( ) of the ESN approximates the actual system output yn ( ) by the equation, L out yˆ( n) y() n = Wi d() n (5) i= where d(n) contains the values in the dynamic reservoir More specifically, the output weights are computed such that the mean squared training error (MSE) is minimized r r L out MSE= ( yn ( ) yn ˆ( )) = ( yn ( ) Wi dn ( )) (6) r n= r n= i= where r is the length of the Input/Output sequence used for training When the training of ESN is completed, all the weight matrices are fixed, and the network is fed with new input and the estimated output is computed according to the following equations: in back x( n+ ) = tanh( W u( n+ ) + Wx( n) + W y( n)) (7) out yn ( + ) = W ( un ( + ), xn ( + )) (8) IV EXPERIMENTAL RESULTS The proposed scheme is validated by experiment using a drive-connected induction motor as the nonlinear load As shown in Fig 6 The variable speed drive (ABB ACS 5) is supplied from the utility source, which is a distorted power supply For validation purposes, a California Instruments 5 ix harmonic generator, which is capable of providing voltages with programmable distortion levels and zero internal impedance, is used as clean power pure sine wave source to measure the true current harmonics taken by the VSD Utility Supply Network v s Clean Power Supply S v pcc v pcc Data Acquisition ( LABVIEW ) v sine i a Weights ACS5 (VSD) i a error ˆa dist i iˆa Induction Motor Fig 6 Experimental setup The three-phase voltages and currents are measured using LEM LV 5-P voltage transducers and the LEM LAH 5- NP current transducers, respectively The measured data are then acquired and stored using a National Instruments data acquisition system with an Analog-to-Digital resolution of 6 bits, at a sampling frequency of 8 khz The scheme has to be applied to each phase individually The phase A is used as an example to demonstrate the proposed method The measured phase A voltage and current with distorted and clean power supplies, are shown in Fig7 (a) (b) and Fig 7 (c) (d), respectively The total harmonic distortion (THD) of the distorted utility voltage is 45%, and the THD of the CI 5 ix voltage is only % The use of the clean power source is only for validation purposes Fig 7 Measured voltage and current with distorted and clean power supplies V LOAD MODELING USING MLP, RNN AND ESN The feasibility of three different types of neural networks: MLP, RNN and ESN with different numbers of hidden neurons in this application are tested, and the performances are compared Due to page limitations, only the training, testing and prediction results of networks containing 5 neurons are shown in this section A Training, Testing and Prediction Data Construction To test the feasibility of using a MLP, RNN and ESN in this application, the measured data are separated into 3 parts: training data, testing data, and prediction data The training data are the first samples of the measured voltage and current with the distorted power supply For the ESN, the first samples are not used in training, which is called the forget period The testing data are 6 samples after the training data, with the distorted power supply, to test the training results Then 3 k samples of measured voltage and current with clean power supply are used to test the harmonic current prediction results of the three neural networks For the ESN, the learning of load characteristics does not only lie in the trained weights, but also lies in the hidden neuron values, or dynamic reservoir, which can be considered as the memory of recurrent neural networks Therefore the prediction data and the testing data are concatenated for harmonic current prediction, as shown in Fig8 Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

5 5-5 - Fig 8 Structure of training, testing and prediction data B Neural Network Training Results The training results of the MLP, RNN and ESN are shown in Fig9 (a), (b), and (c), respectively The Mean Square Errors (MSEs) of the three neural networks are shown in Fig 9 (d) The training of the ESN is only a one-step calculation of output weights by pseudo inverse, so there is no step-bystep MSE available Fig 9 shows that the MSEs of the MLP and the RNN converge to a similar value, while the MSE of the ESN is much smaller This is understandable as the training of the ESN can be considered optimal, as pseudo inverse is used C Neural Network Testing Results To test the learning capability of the three neural networks, a set of voltage and current data with distorted power supply is fed to the neural networks, as shown in Fig 8, and the neural network outputs are compared with the actual outputs in each case The testing results are shown in Fig Fig (a) (b) and (c) show the comparison of neural network outputs and the actual current for the MLP, RNN and ESN respectively This shows that the RNN performs slightly better than the MLP, while the ESN gives a much better testing result From the testing results of the MLP and RNN, it can be concluded that the training of the MLP and RNN is insufficient; while the ESN is already sufficiently trained with the same training data However, it should also be noted that the performance of the ESN is highly dependent on the randomly pre-determined weights of the hidden neurons, which reflects the dynamic feature of each hidden neuron in the dynamic reservoir If the randomly selected weights can accurately represent all the dynamic characteristics of the system, then the ESN can perform accurately as a system simulator Fig shows the testing results of sufficiently trained MLP and RNN For sufficient training, training data with 5 k samples, instead of k samples, are used This figure shows that the RNN performs better than the MLP network, which is caused by its recurrent feature: the outputs are both determined by the inputs and the previous states of the network This recurrent feature makes recurrent neural network a better tool for dynamic system modeling D Harmonic Current Prediction Results After testing the learning capability of the neural networks, a pure sinusoidal wave is supplied to each type of neural network to predict the actual distorted current attributed to the nonlinearity of the load The prediction results are shown in Fig Fig (a), (b), (c) show the predicted currents by MLP, RNN and ESN, respectively, and the actually measured current with a clean power supply The prediction results of sufficiently trained MLP and RNN are shown in Fig 3 It can be observed in MLPNN Ouput (a) MLP SRN RNN Output (b) RNN 8 6 ESN Output - MLPNN RNN ESN 4 - MSE (c) ESN Fig 9 Neural Network Training of MLP, RNN, and ESN (d) MSE Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

6 Fig and Fig 3 that, like the testing results, the performances of the RNN and ESN in harmonic current prediction are better than MLP, which is caused by their stronger capability of dynamic system modeling Again, like the testing results, the performance of the ESN is highly dependent on the randomly selected weights of the hidden neurons VI COMPARISON OF MLP, RNN AND ESN A Comparisons of Neural Network Performances The MSEs of MLP, RNN and ESN with 5 and 3 hidden neurons in training, testing and prediction are compared in Table I In this table, the MLP and RNN are both trained with sufficient training data; while a much shorter training data is used for training the ESN During training, the MSE 8 MLPNN Output 8 SRN Output 8 ESN Output Fig Neural Network Testing of MLP, RNN, and ESN 8 MLPNN Output 8 RNN Output Fig Testing results of MLP, RNN after sufficient training 8 MLPNN Output 8 SRN RNN Output 8 ESN Output (a) MLP (b) RNN (c) ESN Fig Distorted current prediction of MLP, RNN, and ESN 8 MLPNN Output 8 RNN Output Fig 3 Distorted current prediction of MLP, RNN after sufficient training Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

7 of the ESN is much smaller than the MSEs of the MLP and RNN, which are quite close As explained in Section VB, this is because of the fundamental difference between the training algorithms In testing and prediction, the MSE of the MLP is larger than the MSEs of the RNN and the ESN, which are still quite close This implies that the learning capabilities of the ESN and the RNN are higher than the MLP in nonlinear load modeling However, the performance of the ESN is more dependent on the randomly generated initial weights than the MLP and RNN, as some of the weights in the ESN are not updated during training For the MLP and RNN, the 5-neuron network and 3- neuron network have similar performances, which indicate that the increase of hidden neurons is not improving the learning capability with a certain length of training data The performance of the 5-neuron ESN is even better than a 3-neuron ESN It can be concluded that a 5-neuron ESN is already sufficient to learn the complexity of the system, so an increase of hidden neurons does not imply a better performance Besides, the increase of hidden neurons in the ESN may greatly change the dynamic characteristics of the dynamic reservoir, which may not enhance the learning capability B Calculation effort comparison The computational effort of each neural network is compared in Table II A PC with Pentium 4 CPU working at 34 GHz is used for testing In training, the computation time of the ESN is shorter than for the MLP and RNN, which is again the result of different training algorithms For the ESN, the training is simply some matrix computations without iteration, while for the MLP and RNN, the back-propagation algorithm requires more computational effort In contrast, during testing and prediction, the computational effort required by the ESN is larger than for the MLP and RNN, which is because the hidden neurons are sparsely connected, and more computation is required for every iteration step Because of the same reason, the increase of hidden neurons for the ESN dramatically increases the computational time C Convergence property comparison The convergence of the MLP and RNN seems much easier than for the ESN, because of the dependence of the ESN on the initial weights For the MLP and RNN, the backpropagation algorithm can provide a reliable convergence property, although more training data are needed However, for the ESN, when the initially generated weights can not represent the dynamics of the system, although the pseudoinverse calculation in training is still giving an accurate training result considering its optimal nature, during the testing, the ESN can easily become unstable, as the error is dramatically increased after iterations D Current Harmonics Components Estimation The overall current harmonic prediction results are shown in table III The errors of the estimated current total harmonic distortions (THDs) of the RNN and ESN are smaller than for the MLP; while the performances of the 5- neuron neural networks are better than the 3-neuron networks The measured THD with distorted power supply is 839%; while the measured current THD with clean power supply is 7379% This results show that the neural networks are capable of giving reliable estimation of the true current harmonics attributed to the nonlinear load VII CONCLUSIONS A neural network-based harmonic current prediction method was proposed in the authors previous work to estimate the true current harmonics attributed to the nonlinearity of the load The proposed method has been validated by experiment using a variable speed driveconnected induction motor as the nonlinear load In this paper, to test the feasibility of different kinds of TABLE I MSE COMPARISON FOR TRAINING, TESTING AND PREDICTION Number of Hidden Neurons 5 3 Types of Neural Networks MLP RNN ESN MLP RNN ESN Training MSE min e e-4 Testing MSE Prediction MSE TABLE II CALCULATION TIME COMPARISON FOR TRAINING, TESTING AND PREDICTION Number of Hidden Neurons 5 3 Types of Neural Networks MLP RNN ESN MLP RNN ESN Training Time (s) Testing Time (s) Prediction Time (s) TABLE III COMPARISON OF THE ACTUAL CURRENT HARMONICS AND THE ESTIMATED HARMONICS Harmonic 5 Hidden Neurons 3 Hidden Neurons Current with Current with Clean Power Distorted Power Components MLP RNN ESN MLP RNN ESN Supply Supply Fundamental % % % % % % % % 5-th 56% 494% 496% 587% 5% 486% 4883% 55% 7-th 447% 384% 397% 43% 48% 3773% 3847% 433% -th 85% 78% 835% 89% 36% 49% 635% 37% THD 756% 733% 74% 776% 79% 758% 7379% 839% Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

8 neural networks in this application, a performance comparison of three types of neural networks: MLP, RNN and ESN, with different numbers of hidden neurons, is shown in detail The training results, testing results and harmonic current prediction results are compared The computational effort of each neural network is also discussed It is shown that the MLP and RNN require a much larger size of training set than ESN The RNN and ESN give more accurate load modeling results than the MLP, but require more computational effort The choice between RNN and ESN is a tradeoff between convergence property and the size of necessary the training data In other words, when the training data is not sufficient, which is quite possible in practice, the ESN can give better system approximation results than the MLP and RNN The importance of this work lies in its feasible and reliable nature Only the voltages and the currents of a nonlinear load connected to the utility power supply need to be measured; the proposed method can provide an accurate and reliable nonlinear model of the load, which can estimate the true current harmonics attributed to the nonlinearity of the load This provides a reliable and convenient tool for the utilities to evaluate the harmonics attributed to each customer [] H Jaeger, The echo state approach to analyzing and training recurrent neural networks, GMD Report 48, German National Research Center for Information Technology, [3] H Jaeger, Short term memory in echo state networks, GMD Report 5, German National Research Center for Information Technology, [4] H Jaeger, Tutorial on Training Recurrent Neural Networks, Covering BPTT, RTRL, EKF and the Echo State Network approach, GMD Report 59 German National Research Center for Information Technology, ACKNOWLEDGMENT This work is financially supported by the National Science Foundation (NSF), USA, under Grant ECS 65 REFERENCES [] IEEE Standard 59-99, IEEE Recommended Practices and Requirements for Harmonic Control in Electric Power Systems [] M McGranaghan, Overview of the Guide for Applying Harmonic Limits on Power Systems IEEE 59A, in Proceedings of the IEEE International Conference on Harmonics and Quality of Power, Vol, pp , Oct 998 [3] Electromagnetic Compatibility (EMC)-Part 3: Limits-Section 6:Assessment of Emission Limits for Distorting Loads in MV and HV Power Systems, IEC -3-6,996 [4] W Xu, X Liu and Y Liu, An investigation on the validity of power-direction method for harmonic source determination, IEEE Transactions on Power Delivery, Vol 8, Issue, pp 4 9, Jan 3 [5] Chun Li, Wilsun Xu, and T Tayjasanant, A Critical Impedance Based Method for Identifying Harmonic Sources, IEEE Transactions on Power Delivery, Vol 9, Issue, pp , April 4 [6] J Mazumdar, R Harley, F Lambert and G K Venayagamoorthy, Neural Network Based Method for Predicting Nonlinear Load Harmonics, IEEE Transactions on Power Electronics, Vol, Issue 3, pp36-49, May, 7 [7] Simon Haykin, Neural Networks A comprehensive foundation, nd ed Englewood Cliffs, NJ: Prentice Hall, 998 [8] Elman, J L Finding structure in time, Cognitive Science, 4, 99, pp79- [9] Paul J Werbos, Backpropagation through time: What to do and how to do it, in Proc IEEE, Vol 78, no, pp 55-56, 99 [] H Jaeger, Reservoir Riddles: Suggestions for Echo State Network Research, in Proceedings of the IEEE International Conference on Neural Networks, IJCNN 5, Vol, pp 95 9, July/Aug 5 [] D Prokhorov, Echo State Networks: Appeal and Challenges, in Proceedings of the IEEE International Conference on Neural Networks, IJCNN 5, Vol, pp 95 9, July/Aug 5 Authorized licensed use limited to: Missouri University of Science and Technology Downloaded on March 4, at :33:4 EST from IEEE Xplore Restrictions apply

Key-Words: - NARX Neural Network; Nonlinear Loads; Shunt Active Power Filter; Instantaneous Reactive Power Algorithm

Key-Words: - NARX Neural Network; Nonlinear Loads; Shunt Active Power Filter; Instantaneous Reactive Power Algorithm Parameter control scheme for active power filter based on NARX neural network A. Y. HATATA, M. ELADAWY, K. SHEBL Department of Electric Engineering Mansoura University Mansoura, EGYPT a_hatata@yahoo.com

More information

Harmonic detection by using different artificial neural network topologies

Harmonic detection by using different artificial neural network topologies Harmonic detection by using different artificial neural network topologies J.L. Flores Garrido y P. Salmerón Revuelta Department of Electrical Engineering E. P. S., Huelva University Ctra de Palos de la

More information

Current Harmonic Estimation in Power Transmission Lines Using Multi-layer Perceptron Learning Strategies

Current Harmonic Estimation in Power Transmission Lines Using Multi-layer Perceptron Learning Strategies Journal of Electrical Engineering 5 (27) 29-23 doi:.7265/2328-2223/27.5. D DAVID PUBLISHING Current Harmonic Estimation in Power Transmission Lines Using Multi-layer Patrice Wira and Thien Minh Nguyen

More information

Microprocessor Implementation of Fuzzy Systems and Neural Networks Jeremy Binfet Micron Technology

Microprocessor Implementation of Fuzzy Systems and Neural Networks Jeremy Binfet Micron Technology Microprocessor Implementation of Fuy Systems and Neural Networks Jeremy Binfet Micron Technology jbinfet@micron.com Bogdan M. Wilamowski University of Idaho wilam@ieee.org Abstract Systems were implemented

More information

Performance Evaluation of Nonlinear Equalizer based on Multilayer Perceptron for OFDM Power- Line Communication

Performance Evaluation of Nonlinear Equalizer based on Multilayer Perceptron for OFDM Power- Line Communication International Journal of Electrical Engineering. ISSN 974-2158 Volume 4, Number 8 (211), pp. 929-938 International Research Publication House http://www.irphouse.com Performance Evaluation of Nonlinear

More information

Sonia Sharma ECE Department, University Institute of Engineering and Technology, MDU, Rohtak, India. Fig.1.Neuron and its connection

Sonia Sharma ECE Department, University Institute of Engineering and Technology, MDU, Rohtak, India. Fig.1.Neuron and its connection NEUROCOMPUTATION FOR MICROSTRIP ANTENNA Sonia Sharma ECE Department, University Institute of Engineering and Technology, MDU, Rohtak, India Abstract: A Neural Network is a powerful computational tool that

More information

Wireless Spectral Prediction by the Modified Echo State Network Based on Leaky Integrate and Fire Neurons

Wireless Spectral Prediction by the Modified Echo State Network Based on Leaky Integrate and Fire Neurons Wireless Spectral Prediction by the Modified Echo State Network Based on Leaky Integrate and Fire Neurons Yunsong Wang School of Railway Technology, Lanzhou Jiaotong University, Lanzhou 730000, Gansu,

More information

Application of Multi Layer Perceptron (MLP) for Shower Size Prediction

Application of Multi Layer Perceptron (MLP) for Shower Size Prediction Chapter 3 Application of Multi Layer Perceptron (MLP) for Shower Size Prediction 3.1 Basic considerations of the ANN Artificial Neural Network (ANN)s are non- parametric prediction tools that can be used

More information

Efficient Learning in Cellular Simultaneous Recurrent Neural Networks - The Case of Maze Navigation Problem

Efficient Learning in Cellular Simultaneous Recurrent Neural Networks - The Case of Maze Navigation Problem Efficient Learning in Cellular Simultaneous Recurrent Neural Networks - The Case of Maze Navigation Problem Roman Ilin Department of Mathematical Sciences The University of Memphis Memphis, TN 38117 E-mail:

More information

Enhanced MLP Input-Output Mapping for Degraded Pattern Recognition

Enhanced MLP Input-Output Mapping for Degraded Pattern Recognition Enhanced MLP Input-Output Mapping for Degraded Pattern Recognition Shigueo Nomura and José Ricardo Gonçalves Manzan Faculty of Electrical Engineering, Federal University of Uberlândia, Uberlândia, MG,

More information

1 Introduction. w k x k (1.1)

1 Introduction. w k x k (1.1) Neural Smithing 1 Introduction Artificial neural networks are nonlinear mapping systems whose structure is loosely based on principles observed in the nervous systems of humans and animals. The major

More information

Artificial Neural Networks. Artificial Intelligence Santa Clara, 2016

Artificial Neural Networks. Artificial Intelligence Santa Clara, 2016 Artificial Neural Networks Artificial Intelligence Santa Clara, 2016 Simulate the functioning of the brain Can simulate actual neurons: Computational neuroscience Can introduce simplified neurons: Neural

More information

AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE. A Thesis by. Andrew J. Zerngast

AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE. A Thesis by. Andrew J. Zerngast AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE A Thesis by Andrew J. Zerngast Bachelor of Science, Wichita State University, 2008 Submitted to the Department of Electrical

More information

A new approach to monitoring electric power quality

A new approach to monitoring electric power quality Electric Power Systems Research 46 (1998) 11 20 A new approach to monitoring electric power quality P.K. Dash a,b, *, S.K Panda a, A.C. Liew a, B. Mishra b, R.K. Jena b a Department Electrical Engineering,

More information

Equalization of the non-linear 60 GHz channel: Comparison of reservoir computing to traditional approach

Equalization of the non-linear 60 GHz channel: Comparison of reservoir computing to traditional approach Equalization of the non-linear 60 GHz channel: Comparison of reservoir computing to traditional approach M. Bauduin, T. Deleu,F. Duport,P. De Doncker, S. Massar, F. Horlin Université Libre de Bruxelles

More information

Radiated EMI Recognition and Identification from PCB Configuration Using Neural Network

Radiated EMI Recognition and Identification from PCB Configuration Using Neural Network PIERS ONLINE, VOL. 3, NO., 007 5 Radiated EMI Recognition and Identification from PCB Configuration Using Neural Network P. Sujintanarat, P. Dangkham, S. Chaichana, K. Aunchaleevarapan, and P. Teekaput

More information

A Novel Fuzzy Neural Network Based Distance Relaying Scheme

A Novel Fuzzy Neural Network Based Distance Relaying Scheme 902 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 15, NO. 3, JULY 2000 A Novel Fuzzy Neural Network Based Distance Relaying Scheme P. K. Dash, A. K. Pradhan, and G. Panda Abstract This paper presents a new

More information

A Simple Design and Implementation of Reconfigurable Neural Networks

A Simple Design and Implementation of Reconfigurable Neural Networks A Simple Design and Implementation of Reconfigurable Neural Networks Hazem M. El-Bakry, and Nikos Mastorakis Abstract There are some problems in hardware implementation of digital combinational circuits.

More information

DIAGNOSIS OF STATOR FAULT IN ASYNCHRONOUS MACHINE USING SOFT COMPUTING METHODS

DIAGNOSIS OF STATOR FAULT IN ASYNCHRONOUS MACHINE USING SOFT COMPUTING METHODS DIAGNOSIS OF STATOR FAULT IN ASYNCHRONOUS MACHINE USING SOFT COMPUTING METHODS K. Vinoth Kumar 1, S. Suresh Kumar 2, A. Immanuel Selvakumar 1 and Vicky Jose 1 1 Department of EEE, School of Electrical

More information

11/13/18. Introduction to RNNs for NLP. About Me. Overview SHANG GAO

11/13/18. Introduction to RNNs for NLP. About Me. Overview SHANG GAO Introduction to RNNs for NLP SHANG GAO About Me PhD student in the Data Science and Engineering program Took Deep Learning last year Work in the Biomedical Sciences, Engineering, and Computing group at

More information

Classification of Voltage Sag Using Multi-resolution Analysis and Support Vector Machine

Classification of Voltage Sag Using Multi-resolution Analysis and Support Vector Machine Journal of Clean Energy Technologies, Vol. 4, No. 3, May 2016 Classification of Voltage Sag Using Multi-resolution Analysis and Support Vector Machine Hanim Ismail, Zuhaina Zakaria, and Noraliza Hamzah

More information

Neural Filters: MLP VIS-A-VIS RBF Network

Neural Filters: MLP VIS-A-VIS RBF Network 6th WSEAS International Conference on CIRCUITS, SYSTEMS, ELECTRONICS,CONTROL & SIGNAL PROCESSING, Cairo, Egypt, Dec 29-31, 2007 432 Neural Filters: MLP VIS-A-VIS RBF Network V. R. MANKAR, DR. A. A. GHATOL,

More information

Current Rebuilding Concept Applied to Boost CCM for PF Correction

Current Rebuilding Concept Applied to Boost CCM for PF Correction Current Rebuilding Concept Applied to Boost CCM for PF Correction Sindhu.K.S 1, B. Devi Vighneshwari 2 1, 2 Department of Electrical & Electronics Engineering, The Oxford College of Engineering, Bangalore-560068,

More information

AN ANN BASED FAULT DETECTION ON ALTERNATOR

AN ANN BASED FAULT DETECTION ON ALTERNATOR AN ANN BASED FAULT DETECTION ON ALTERNATOR Suraj J. Dhon 1, Sarang V. Bhonde 2 1 (Electrical engineering, Amravati University, India) 2 (Electrical engineering, Amravati University, India) ABSTRACT: Synchronous

More information

Fault Diagnosis of Analog Circuit Using DC Approach and Neural Networks

Fault Diagnosis of Analog Circuit Using DC Approach and Neural Networks 294 Fault Diagnosis of Analog Circuit Using DC Approach and Neural Networks Ajeet Kumar Singh 1, Ajay Kumar Yadav 2, Mayank Kumar 3 1 M.Tech, EC Department, Mewar University Chittorgarh, Rajasthan, INDIA

More information

CHAPTER 4 PV-UPQC BASED HARMONICS REDUCTION IN POWER DISTRIBUTION SYSTEMS

CHAPTER 4 PV-UPQC BASED HARMONICS REDUCTION IN POWER DISTRIBUTION SYSTEMS 66 CHAPTER 4 PV-UPQC BASED HARMONICS REDUCTION IN POWER DISTRIBUTION SYSTEMS INTRODUCTION The use of electronic controllers in the electric power supply system has become very common. These electronic

More information

Fixed- Weight Controller for Multiple Systems

Fixed- Weight Controller for Multiple Systems Fixed Weight Controller for Multiple Systems L. A. Feldkamp and G. V. Puskorius Ford Research Laboratory, P.O. Box 253, MD 117 SRL Dearborn, Michigan 48 12 1253 IfeldkamQford. com, gpuskori @ford. com

More information

Shunt active filter algorithms for a three phase system fed to adjustable speed drive

Shunt active filter algorithms for a three phase system fed to adjustable speed drive Shunt active filter algorithms for a three phase system fed to adjustable speed drive Sujatha.CH(Assoc.prof) Department of Electrical and Electronic Engineering, Gudlavalleru Engineering College, Gudlavalleru,

More information

Replacing Fuzzy Systems with Neural Networks

Replacing Fuzzy Systems with Neural Networks Replacing Fuzzy Systems with Neural Networks Tiantian Xie, Hao Yu, and Bogdan Wilamowski Auburn University, Alabama, USA, tzx@auburn.edu, hzy@auburn.edu, wilam@ieee.org Abstract. In this paper, a neural

More information

CHAPTER 6 BACK PROPAGATED ARTIFICIAL NEURAL NETWORK TRAINED ARHF

CHAPTER 6 BACK PROPAGATED ARTIFICIAL NEURAL NETWORK TRAINED ARHF 95 CHAPTER 6 BACK PROPAGATED ARTIFICIAL NEURAL NETWORK TRAINED ARHF 6.1 INTRODUCTION An artificial neural network (ANN) is an information processing model that is inspired by biological nervous systems

More information

IMPLEMENTATION OF NEURAL NETWORK IN ENERGY SAVING OF INDUCTION MOTOR DRIVES WITH INDIRECT VECTOR CONTROL

IMPLEMENTATION OF NEURAL NETWORK IN ENERGY SAVING OF INDUCTION MOTOR DRIVES WITH INDIRECT VECTOR CONTROL IMPLEMENTATION OF NEURAL NETWORK IN ENERGY SAVING OF INDUCTION MOTOR DRIVES WITH INDIRECT VECTOR CONTROL * A. K. Sharma, ** R. A. Gupta, and *** Laxmi Srivastava * Department of Electrical Engineering,

More information

USING EMBEDDED PROCESSORS IN HARDWARE MODELS OF ARTIFICIAL NEURAL NETWORKS

USING EMBEDDED PROCESSORS IN HARDWARE MODELS OF ARTIFICIAL NEURAL NETWORKS USING EMBEDDED PROCESSORS IN HARDWARE MODELS OF ARTIFICIAL NEURAL NETWORKS DENIS F. WOLF, ROSELI A. F. ROMERO, EDUARDO MARQUES Universidade de São Paulo Instituto de Ciências Matemáticas e de Computação

More information

A Step Towards More Robust Signal Pattern Recognition with Echo State Networks

A Step Towards More Robust Signal Pattern Recognition with Echo State Networks A Step Towards More Robust Signal Pattern Recognition with Echo State Networks Lucia Ambrošová Computer Science Jacobs University Bremen College Ring 7 28759 Bremen Germany Type: Guided Research Report

More information

IDENTIFICATION OF POWER QUALITY PROBLEMS IN IEEE BUS SYSTEM BY USING NEURAL NETWORKS

IDENTIFICATION OF POWER QUALITY PROBLEMS IN IEEE BUS SYSTEM BY USING NEURAL NETWORKS Fourth International Conference on Control System and Power Electronics CSPE IDENTIFICATION OF POWER QUALITY PROBLEMS IN IEEE BUS SYSTEM BY USING NEURAL NETWORKS Mr. Devadasu * and Dr. M Sushama ** * Associate

More information

THE TREND toward implementing systems with low

THE TREND toward implementing systems with low 724 IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 30, NO. 7, JULY 1995 Design of a 100-MHz 10-mW 3-V Sample-and-Hold Amplifier in Digital Bipolar Technology Behzad Razavi, Member, IEEE Abstract This paper

More information

Direct Harmonic Analysis of the Voltage Source Converter

Direct Harmonic Analysis of the Voltage Source Converter 1034 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 18, NO. 3, JULY 2003 Direct Harmonic Analysis of the Voltage Source Converter Peter W. Lehn, Member, IEEE Abstract An analytic technique is presented for

More information

Stock Price Prediction Using Multilayer Perceptron Neural Network by Monitoring Frog Leaping Algorithm

Stock Price Prediction Using Multilayer Perceptron Neural Network by Monitoring Frog Leaping Algorithm Stock Price Prediction Using Multilayer Perceptron Neural Network by Monitoring Frog Leaping Algorithm Ahdieh Rahimi Garakani Department of Computer South Tehran Branch Islamic Azad University Tehran,

More information

MINE 432 Industrial Automation and Robotics

MINE 432 Industrial Automation and Robotics MINE 432 Industrial Automation and Robotics Part 3, Lecture 5 Overview of Artificial Neural Networks A. Farzanegan (Visiting Associate Professor) Fall 2014 Norman B. Keevil Institute of Mining Engineering

More information

Publication P IEEE. Reprinted with permission.

Publication P IEEE. Reprinted with permission. P3 Publication P3 J. Martikainen and S. J. Ovaska function approximation by neural networks in the optimization of MGP-FIR filters in Proc. of the IEEE Mountain Workshop on Adaptive and Learning Systems

More information

Comparison of MLP and RBF neural networks for Prediction of ECG Signals

Comparison of MLP and RBF neural networks for Prediction of ECG Signals 124 Comparison of MLP and RBF neural networks for Prediction of ECG Signals Ali Sadr 1, Najmeh Mohsenifar 2, Raziyeh Sadat Okhovat 3 Department Of electrical engineering Iran University of Science and

More information

COMPUTATION OF RADIATION EFFICIENCY FOR A RESONANT RECTANGULAR MICROSTRIP PATCH ANTENNA USING BACKPROPAGATION MULTILAYERED PERCEPTRONS

COMPUTATION OF RADIATION EFFICIENCY FOR A RESONANT RECTANGULAR MICROSTRIP PATCH ANTENNA USING BACKPROPAGATION MULTILAYERED PERCEPTRONS ISTANBUL UNIVERSITY- JOURNAL OF ELECTRICAL & ELECTRONICS ENGINEERING YEAR VOLUME NUMBER : 23 : 3 : (663-67) COMPUTATION OF RADIATION EFFICIENCY FOR A RESONANT RECTANGULAR MICROSTRIP PATCH ANTENNA USING

More information

Application of Artificial Neural Networks System for Synthesis of Phased Cylindrical Arc Antenna Arrays

Application of Artificial Neural Networks System for Synthesis of Phased Cylindrical Arc Antenna Arrays International Journal of Communication Engineering and Technology. ISSN 2277-3150 Volume 4, Number 1 (2014), pp. 7-15 Research India Publications http://www.ripublication.com Application of Artificial

More information

The Basic Kak Neural Network with Complex Inputs

The Basic Kak Neural Network with Complex Inputs The Basic Kak Neural Network with Complex Inputs Pritam Rajagopal The Kak family of neural networks [3-6,2] is able to learn patterns quickly, and this speed of learning can be a decisive advantage over

More information

PERFORMANCE PARAMETERS CONTROL OF WOUND ROTOR INDUCTION MOTOR USING ANN CONTROLLER

PERFORMANCE PARAMETERS CONTROL OF WOUND ROTOR INDUCTION MOTOR USING ANN CONTROLLER PERFORMANCE PARAMETERS CONTROL OF WOUND ROTOR INDUCTION MOTOR USING ANN CONTROLLER 1 A.MOHAMED IBRAHIM, 2 M.PREMKUMAR, 3 T.R.SUMITHIRA, 4 D.SATHISHKUMAR 1,2,4 Assistant professor in Department of Electrical

More information

Forecasting Exchange Rates using Neural Neworks

Forecasting Exchange Rates using Neural Neworks International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 6, Number 1 (2016), pp. 35-44 International Research Publications House http://www. irphouse.com Forecasting Exchange

More information

J. C. Brégains (Student Member, IEEE), and F. Ares (Senior Member, IEEE).

J. C. Brégains (Student Member, IEEE), and F. Ares (Senior Member, IEEE). ANALYSIS, SYNTHESIS AND DIAGNOSTICS OF ANTENNA ARRAYS THROUGH COMPLEX-VALUED NEURAL NETWORKS. J. C. Brégains (Student Member, IEEE), and F. Ares (Senior Member, IEEE). Radiating Systems Group, Department

More information

IN MANY industrial applications, ac machines are preferable

IN MANY industrial applications, ac machines are preferable IEEE TRANSACTIONS ON INDUSTRIAL ELECTRONICS, VOL. 46, NO. 1, FEBRUARY 1999 111 Automatic IM Parameter Measurement Under Sensorless Field-Oriented Control Yih-Neng Lin and Chern-Lin Chen, Member, IEEE Abstract

More information

Transient stability Assessment using Artificial Neural Network Considering Fault Location

Transient stability Assessment using Artificial Neural Network Considering Fault Location Vol.6 No., 200 مجلد 6, العدد, 200 Proc. st International Conf. Energy, Power and Control Basrah University, Basrah, Iraq 0 Nov. to 2 Dec. 200 Transient stability Assessment using Artificial Neural Network

More information

DESIGN AND IMPLEMENTATION OF ADAPTIVE ECHO CANCELLER BASED LMS & NLMS ALGORITHM

DESIGN AND IMPLEMENTATION OF ADAPTIVE ECHO CANCELLER BASED LMS & NLMS ALGORITHM DESIGN AND IMPLEMENTATION OF ADAPTIVE ECHO CANCELLER BASED LMS & NLMS ALGORITHM Sandip A. Zade 1, Prof. Sameena Zafar 2 1 Mtech student,department of EC Engg., Patel college of Science and Technology Bhopal(India)

More information

Analysis Of Feed Point Coordinates Of A Coaxial Feed Rectangular Microstrip Antenna Using Mlpffbp Artificial Neural Network

Analysis Of Feed Point Coordinates Of A Coaxial Feed Rectangular Microstrip Antenna Using Mlpffbp Artificial Neural Network Analysis Of Feed Point Coordinates Of A Coaxial Feed Rectangular Microstrip Antenna Using Mlpffbp Artificial Neural Network V. V. Thakare 1 & P. K. Singhal 2 1 Deptt. of Electronics and Instrumentation,

More information

A COMPARISON OF ARTIFICIAL NEURAL NETWORKS AND OTHER STATISTICAL METHODS FOR ROTATING MACHINE

A COMPARISON OF ARTIFICIAL NEURAL NETWORKS AND OTHER STATISTICAL METHODS FOR ROTATING MACHINE A COMPARISON OF ARTIFICIAL NEURAL NETWORKS AND OTHER STATISTICAL METHODS FOR ROTATING MACHINE CONDITION CLASSIFICATION A. C. McCormick and A. K. Nandi Abstract Statistical estimates of vibration signals

More information

Thermal Imaging, Power Quality and Harmonics

Thermal Imaging, Power Quality and Harmonics Thermal Imaging, Power Quality and Harmonics Authors: Matthew A. Taylor and Paul C. Bessey of AVO Training Institute Executive Summary Infrared (IR) thermal imaging (thermography) is an effective troubleshooting

More information

Application of ANN to Predict Reinforcement Height of Weld Bead under Magnetic Field

Application of ANN to Predict Reinforcement Height of Weld Bead under Magnetic Field Application of ANN to Predict Height of Weld Bead under Magnetic Field R.P. Singh 1, R.C. Gupta 2, S.C. Sarkar 3, K.G. Sharma 4, 5 P.K.S. Rathore 1 Mechanical Engineering Depart, I.E.T., G.L.A. University

More information

A NOVEL DEAD-BEAT CURRENT CONTROL FOR SHUNT ACTIVE POWER FILTERS

A NOVEL DEAD-BEAT CURRENT CONTROL FOR SHUNT ACTIVE POWER FILTERS A NOVEL DEAD-BEAT CURRENT CONTROL FOR SHUNT ACTIVE POWER FILTERS A. Dell'Aquila, P. Zanchetta, M. Liserre, L. Manelli, M. Marinelli Politecnico di Bari Dipartimento di Elettrotecnica ed Elettronica Via

More information

ISSN: ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 3, May 2013

ISSN: ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 3, May 2013 Power Quality Enhancement Using Hybrid Active Filter D.Jasmine Susila, R.Rajathy Department of Electrical and electronics Engineering, Pondicherry Engineering College, Pondicherry Abstract This paper presents

More information

Virtual Instrumentation Applied to Calculation of Electrical Power Quantities in Single-Phase Systems

Virtual Instrumentation Applied to Calculation of Electrical Power Quantities in Single-Phase Systems European Association for the Development of Renewable Energies, Environment and Power Quality (EA4EPQ) International Conference on Renewable Energies and Power Quality (ICREPQ 2) Santiago de Compostela

More information

PERFORMANCE ANALYSIS OF SRM DRIVE USING ANN BASED CONTROLLING OF 6/4 SWITCHED RELUCTANCE MOTOR

PERFORMANCE ANALYSIS OF SRM DRIVE USING ANN BASED CONTROLLING OF 6/4 SWITCHED RELUCTANCE MOTOR PERFORMANCE ANALYSIS OF SRM DRIVE USING ANN BASED CONTROLLING OF 6/4 SWITCHED RELUCTANCE MOTOR Vikas S. Wadnerkar * Dr. G. Tulasi Ram Das ** Dr. A.D.Rajkumar *** ABSTRACT This paper proposes and investigates

More information

CHAPTER 6 UNIT VECTOR GENERATION FOR DETECTING VOLTAGE ANGLE

CHAPTER 6 UNIT VECTOR GENERATION FOR DETECTING VOLTAGE ANGLE 98 CHAPTER 6 UNIT VECTOR GENERATION FOR DETECTING VOLTAGE ANGLE 6.1 INTRODUCTION Process industries use wide range of variable speed motor drives, air conditioning plants, uninterrupted power supply systems

More information

Multiple-Layer Networks. and. Backpropagation Algorithms

Multiple-Layer Networks. and. Backpropagation Algorithms Multiple-Layer Networks and Algorithms Multiple-Layer Networks and Algorithms is the generalization of the Widrow-Hoff learning rule to multiple-layer networks and nonlinear differentiable transfer functions.

More information

A 5 GHz LNA Design Using Neural Smith Chart

A 5 GHz LNA Design Using Neural Smith Chart Progress In Electromagnetics Research Symposium, Beijing, China, March 23 27, 2009 465 A 5 GHz LNA Design Using Neural Smith Chart M. Fatih Çaǧlar 1 and Filiz Güneş 2 1 Department of Electronics and Communication

More information

Advances in Intelligent Systems Research, volume 136 4th International Conference on Sensors, Mechatronics and Automation (ICSMA 2016)

Advances in Intelligent Systems Research, volume 136 4th International Conference on Sensors, Mechatronics and Automation (ICSMA 2016) 4th International Conference on Sensors, Mechatronics and Automation (ICSMA 2016) On Neural Network Modeling of Main Steam Temperature for Ultra supercritical Power Unit with Load Varying Xifeng Guoa,

More information

A New Least Mean Squares Adaptive Algorithm over Distributed Networks Based on Incremental Strategy

A New Least Mean Squares Adaptive Algorithm over Distributed Networks Based on Incremental Strategy International Journal of Scientific Research Engineering & echnology (IJSRE), ISSN 78 88 Volume 4, Issue 6, June 15 74 A New Least Mean Squares Adaptive Algorithm over Distributed Networks Based on Incremental

More information

PID Controller Design Based on Radial Basis Function Neural Networks for the Steam Generator Level Control

PID Controller Design Based on Radial Basis Function Neural Networks for the Steam Generator Level Control BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 6 No 5 Special Issue on Application of Advanced Computing and Simulation in Information Systems Sofia 06 Print ISSN: 3-970;

More information

A Neural Network Approach for the calculation of Resonant frequency of a circular microstrip antenna

A Neural Network Approach for the calculation of Resonant frequency of a circular microstrip antenna A Neural Network Approach for the calculation of Resonant frequency of a circular microstrip antenna K. Kumar, Senior Lecturer, Dept. of ECE, Pondicherry Engineering College, Pondicherry e-mail: kumarpec95@yahoo.co.in

More information

NEURAL NETWORK BASED LOAD FREQUENCY CONTROL FOR RESTRUCTURING POWER INDUSTRY

NEURAL NETWORK BASED LOAD FREQUENCY CONTROL FOR RESTRUCTURING POWER INDUSTRY Nigerian Journal of Technology (NIJOTECH) Vol. 31, No. 1, March, 2012, pp. 40 47. Copyright c 2012 Faculty of Engineering, University of Nigeria. ISSN 1115-8443 NEURAL NETWORK BASED LOAD FREQUENCY CONTROL

More information

TIME encoding of a band-limited function,,

TIME encoding of a band-limited function,, 672 IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS II: EXPRESS BRIEFS, VOL. 53, NO. 8, AUGUST 2006 Time Encoding Machines With Multiplicative Coupling, Feedforward, and Feedback Aurel A. Lazar, Fellow, IEEE

More information

for Single-Tone Frequency Tracking H. C. So Department of Computer Engineering & Information Technology, City University of Hong Kong,

for Single-Tone Frequency Tracking H. C. So Department of Computer Engineering & Information Technology, City University of Hong Kong, A Comparative Study of Three Recursive Least Squares Algorithms for Single-Tone Frequency Tracking H. C. So Department of Computer Engineering & Information Technology, City University of Hong Kong, Tat

More information

Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes

Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes 7th Mediterranean Conference on Control & Automation Makedonia Palace, Thessaloniki, Greece June 4-6, 009 Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes Theofanis

More information

CHAPTER 4 MONITORING OF POWER SYSTEM VOLTAGE STABILITY THROUGH ARTIFICIAL NEURAL NETWORK TECHNIQUE

CHAPTER 4 MONITORING OF POWER SYSTEM VOLTAGE STABILITY THROUGH ARTIFICIAL NEURAL NETWORK TECHNIQUE 53 CHAPTER 4 MONITORING OF POWER SYSTEM VOLTAGE STABILITY THROUGH ARTIFICIAL NEURAL NETWORK TECHNIQUE 4.1 INTRODUCTION Due to economic reasons arising out of deregulation and open market of electricity,

More information

Chapter - 7. Adaptive Channel Equalization

Chapter - 7. Adaptive Channel Equalization Chapter - 7 Adaptive Channel Equalization Chapter - 7 Adaptive Channel Equalization 7.1 Introduction The transmission o f digital information over a communication channel causes Inter Symbol Interference

More information

ALTHOUGH zero-if and low-if architectures have been

ALTHOUGH zero-if and low-if architectures have been IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 40, NO. 6, JUNE 2005 1249 A 110-MHz 84-dB CMOS Programmable Gain Amplifier With Integrated RSSI Function Chun-Pang Wu and Hen-Wai Tsao Abstract This paper describes

More information

Neural Network Based Optimal Switching Pattern Generation for Multiple Pulse Width Modulated Inverter

Neural Network Based Optimal Switching Pattern Generation for Multiple Pulse Width Modulated Inverter Vol.3, Issue.4, Jul - Aug. 2013 pp-1910-1915 ISSN: 2249-6645 Neural Network Based Optimal Switching Pattern Generation for Multiple Pulse Width Modulated Inverter K. Tamilarasi 1, C. Suganthini 2 1, 2

More information

PI-VPI Based Current Control Strategy to Improve the Performance of Shunt Active Power Filter

PI-VPI Based Current Control Strategy to Improve the Performance of Shunt Active Power Filter PI-VPI Based Current Control Strategy to Improve the Performance of Shunt Active Power Filter B.S.Nalina 1 Ms.V.J.Vijayalakshmi 2 Department Of EEE Department Of EEE 1 PG student,skcet, Coimbatore, India

More information

Acoustic echo cancellers for mobile devices

Acoustic echo cancellers for mobile devices Acoustic echo cancellers for mobile devices Mr.Shiv Kumar Yadav 1 Mr.Ravindra Kumar 2 Pratik Kumar Dubey 3, 1 Al-Falah School Of Engg. &Tech., Hayarana, India 2 Al-Falah School Of Engg. &Tech., Hayarana,

More information

EXPERIMENTAL OPEN-LOOP AND CLOSED-LOOP IDENTIFICATION OF A MULTI-MASS ELECTROMECHANICAL SERVO SYSTEM

EXPERIMENTAL OPEN-LOOP AND CLOSED-LOOP IDENTIFICATION OF A MULTI-MASS ELECTROMECHANICAL SERVO SYSTEM EXPERIMENAL OPEN-LOOP AND CLOSED-LOOP IDENIFICAION OF A MULI-MASS ELECROMECHANICAL SERVO SYSEM Usama Abou-Zayed, Mahmoud Ashry and im Breikin Control Systems Centre, he University of Manchester, PO BOX

More information

ADC Based Measurements: a Common Basis for the Uncertainty Estimation. Ciro Spataro

ADC Based Measurements: a Common Basis for the Uncertainty Estimation. Ciro Spataro ADC Based Measurements: a Common Basis for the Uncertainty Estimation Ciro Spataro Department of Electric, Electronic and Telecommunication Engineering - University of Palermo Viale delle Scienze, 90128

More information

A linear Multi-Layer Perceptron for identifying harmonic contents of biomedical signals

A linear Multi-Layer Perceptron for identifying harmonic contents of biomedical signals A linear Multi-Layer Perceptron for identifying harmonic contents of biomedical signals Thien Minh Nguyen 1 and Patrice Wira 1 Université de Haute Alsace, Laboratoire MIPS, Mulhouse, France, {thien-minh.nguyen,

More information

Design of Substrate IntegratedWaveguide Power Divider and Parameter optimization using Neural Network

Design of Substrate IntegratedWaveguide Power Divider and Parameter optimization using Neural Network IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 13, Issue 1, Ver. I (Jan.- Feb. 2018), PP 37-43 www.iosrjournals.org Design of Substrate

More information

A Comparative Study between DPC and DPC-SVM Controllers Using dspace (DS1104)

A Comparative Study between DPC and DPC-SVM Controllers Using dspace (DS1104) International Journal of Electrical and Computer Engineering (IJECE) Vol. 4, No. 3, June 2014, pp. 322 328 ISSN: 2088-8708 322 A Comparative Study between DPC and DPC-SVM Controllers Using dspace (DS1104)

More information

CHAPTER 5 POWER QUALITY IMPROVEMENT BY USING POWER ACTIVE FILTERS

CHAPTER 5 POWER QUALITY IMPROVEMENT BY USING POWER ACTIVE FILTERS 86 CHAPTER 5 POWER QUALITY IMPROVEMENT BY USING POWER ACTIVE FILTERS 5.1 POWER QUALITY IMPROVEMENT This chapter deals with the harmonic elimination in Power System by adopting various methods. Due to the

More information

Modeling the Drain Current of a PHEMT using the Artificial Neural Networks and a Taylor Series Expansion

Modeling the Drain Current of a PHEMT using the Artificial Neural Networks and a Taylor Series Expansion International Journal of Innovation and Applied Studies ISSN 2028-9324 Vol. 10 No. 1 Jan. 2015 pp. 132-137 2015 Innovative Space of Scientific Research Journals http://www.ijias.issr-journals.org/ Modeling

More information

Control of Induction Motor Drive by Artificial Neural Network

Control of Induction Motor Drive by Artificial Neural Network Control of Induction Motor Drive y Artificial Neural Network L.FARAH, N.FARAH, M.BEDDA Centre Universitaire Souk Ahras BP 553 Souk Ahras ALGERIA Astract: Recently there has een increasing interest in the

More information

Modern spectral analysis of non-stationary signals in power electronics

Modern spectral analysis of non-stationary signals in power electronics Modern spectral analysis of non-stationary signaln power electronics Zbigniew Leonowicz Wroclaw University of Technology I-7, pl. Grunwaldzki 3 5-37 Wroclaw, Poland ++48-7-36 leonowic@ipee.pwr.wroc.pl

More information

CHAPTER 4 IMPLEMENTATION OF ADALINE IN MATLAB

CHAPTER 4 IMPLEMENTATION OF ADALINE IN MATLAB 52 CHAPTER 4 IMPLEMENTATION OF ADALINE IN MATLAB 4.1 INTRODUCTION The ADALINE is implemented in MATLAB environment running on a PC. One hundred data samples are acquired from a single cycle of load current

More information

Generation of Voltage Reference Signal in Closed-Loop Control of STATCOM

Generation of Voltage Reference Signal in Closed-Loop Control of STATCOM Generation of Voltage Reference Signal in Closed-Loop Control of STATCOM M. Tavakoli Bina 1,*, N. Khodabakhshi 1 1 Faculty of Electrical Engineering, K. N. Toosi University of Technology, * Corresponding

More information

FOURIER analysis is a well-known method for nonparametric

FOURIER analysis is a well-known method for nonparametric 386 IEEE TRANSACTIONS ON INSTRUMENTATION AND MEASUREMENT, VOL. 54, NO. 1, FEBRUARY 2005 Resonator-Based Nonparametric Identification of Linear Systems László Sujbert, Member, IEEE, Gábor Péceli, Fellow,

More information

Analysis of Learning Paradigms and Prediction Accuracy using Artificial Neural Network Models

Analysis of Learning Paradigms and Prediction Accuracy using Artificial Neural Network Models Analysis of Learning Paradigms and Prediction Accuracy using Artificial Neural Network Models Poornashankar 1 and V.P. Pawar 2 Abstract: The proposed work is related to prediction of tumor growth through

More information

A SIMPLE APPROACH TO DESIGN LINEAR PHASE IIR FILTERS

A SIMPLE APPROACH TO DESIGN LINEAR PHASE IIR FILTERS International Journal of Biomedical Signal Processing, 2(), 20, pp. 49-53 A SIMPLE APPROACH TO DESIGN LINEAR PHASE IIR FILTERS Shivani Duggal and D. K. Upadhyay 2 Guru Tegh Bahadur Institute of Technology

More information

Transmit Power Allocation for BER Performance Improvement in Multicarrier Systems

Transmit Power Allocation for BER Performance Improvement in Multicarrier Systems Transmit Power Allocation for Performance Improvement in Systems Chang Soon Par O and wang Bo (Ed) Lee School of Electrical Engineering and Computer Science, Seoul National University parcs@mobile.snu.ac.r,

More information

Evaluating the Performance of MLP Neural Network and GRNN in Active Cancellation of Sound Noise

Evaluating the Performance of MLP Neural Network and GRNN in Active Cancellation of Sound Noise Evaluating the Performance of Neural Network and in Active Cancellation of Sound Noise M. Salmasi, H. Mahdavi-Nasab, and H. Pourghassem Abstract Active noise control (ANC) is based on the destructive interference

More information

Architecture design for Adaptive Noise Cancellation

Architecture design for Adaptive Noise Cancellation Architecture design for Adaptive Noise Cancellation M.RADHIKA, O.UMA MAHESHWARI, Dr.J.RAJA PAUL PERINBAM Department of Electronics and Communication Engineering Anna University College of Engineering,

More information

Learning New Articulator Trajectories for a Speech Production Model using Artificial Neural Networks

Learning New Articulator Trajectories for a Speech Production Model using Artificial Neural Networks Learning New Articulator Trajectories for a Speech Production Model using Artificial Neural Networks C. S. Blackburn and S. J. Young Cambridge University Engineering Department (CUED), England email: csb@eng.cam.ac.uk

More information

Speed Control of Multi Level Inverter Designed DC Series Motor with Neuro-Fuzzy Controllers

Speed Control of Multi Level Inverter Designed DC Series Motor with Neuro-Fuzzy Controllers 179 Speed Control of Multi Level Inverter Designed DC Series Motor with Neuro-Fuzzy Controllers G.MadhusudhanaRao 1, Dr. B.V.SankerRam 2 1 Dept. of EEE, JNTU-Hyderabad, India 2 Dept. of EEE, JNTU-Hyderabad,

More information

Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using Artificial Neural Network

Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using Artificial Neural Network Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using Artificial Neural Network Noopur Srivastava1, Vandana Vikas Thakare2 1,2Department of Electronics, Madhav Institute of Technology

More information

ARTIFICIAL NEURAL NETWORK IN THE DESIGN OF RECTANGULAR MICROSTRIP ANTENNA

ARTIFICIAL NEURAL NETWORK IN THE DESIGN OF RECTANGULAR MICROSTRIP ANTENNA ARTIFICIAL NEURAL NETWORK IN THE DESIGN OF RECTANGULAR MICROSTRIP ANTENNA Adil Bouhous Department of Electronics, University of Jijel, Algeria ABSTRACT A simple design to compute accurate resonant frequencies

More information

Keywords : Simultaneous perturbation, Neural networks, Neuro-controller, Real-time, Flexible arm. w u. (a)learning by the back-propagation.

Keywords : Simultaneous perturbation, Neural networks, Neuro-controller, Real-time, Flexible arm. w u. (a)learning by the back-propagation. Real-time control and learning using neuro-controller via simultaneous perturbation for flexible arm system. Yutaka Maeda Department of Electrical Engineering, Kansai University 3-3-35 Yamate-cho, Suita

More information

Fixed Point Lms Adaptive Filter Using Partial Product Generator

Fixed Point Lms Adaptive Filter Using Partial Product Generator Fixed Point Lms Adaptive Filter Using Partial Product Generator Vidyamol S M.Tech Vlsi And Embedded System Ma College Of Engineering, Kothamangalam,India vidyas.saji@gmail.com Abstract The area and power

More information

Generalized DC-link Voltage Balancing Control Method for Multilevel Inverters

Generalized DC-link Voltage Balancing Control Method for Multilevel Inverters MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Generalized DC-link Voltage Balancing Control Method for Multilevel Inverters Deng, Y.; Teo, K.H.; Harley, R.G. TR2013-005 March 2013 Abstract

More information

TO LIMIT degradation in power quality caused by nonlinear

TO LIMIT degradation in power quality caused by nonlinear 1152 IEEE TRANSACTIONS ON POWER ELECTRONICS, VOL. 13, NO. 6, NOVEMBER 1998 Optimal Current Programming in Three-Phase High-Power-Factor Rectifier Based on Two Boost Converters Predrag Pejović, Member,

More information

A Novel Method for Determining the Lower Bound of Antenna Efficiency

A Novel Method for Determining the Lower Bound of Antenna Efficiency A Novel Method for Determining the Lower Bound of Antenna Efficiency Jason B. Coder #1, John M. Ladbury 2, Mark Golkowski #3 # Department of Electrical Engineering, University of Colorado Denver 1201 5th

More information