CALIFORNIA STATE UNIVERSITY, NORTHRIDGE POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK

Size: px
Start display at page:

Download "CALIFORNIA STATE UNIVERSITY, NORTHRIDGE POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK"

Transcription

1 CALIFORNIA STATE UNIVERSITY, NORTHRIDGE POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK A graduate project submitted in partial fulfillment of the requirements For the degree of Master of Science in Electrical Engineering By Rohan Shetty December 2014

2 The graduate project of Rohan Shetty is approved: Dr. Ali Amini Date Prof. Benjamin Mallard Date Prof. Bruno Osorno, Chair Date California State University, Northridge ii

3 ACKNOWLEDGEMENT I express my deepest gratitude and special thanks to Prof. Bruno Osorno for being extremely patient and supportive all the while I was working on such a complex and interesting topic like Neural Networks. I am very glad to present Power System Voltage Stability Analysis and Assessment using Artificial Neural Networks towards the partial fulfillment of the requirements for the degree of Master of Science in Electrical Engineering. Also, I would like to thank Dr. Ali Amini and Prof. Benjamin Mallard for supporting me in completing this project and acknowledging my efforts. Lastly, I am extremely happy and fortunate to find constant support and motivation from my family and friends during the entire course of my Master s degree. iii

4 TABLE OF CONTENTS Signature Page Acknowledgement List of Figures List of Tables Abstract ii iii v vi vii 1. INTRODUCTION Introduction to Voltage Instability Introduction to Artificial Neural Network ANN Design and Architecture Neural Network Algorithm 4 2. ANALYTICAL METHODOLOGY Modal Analysis Method Derivation of Voltage Stability Index 6 3. ANN BASED APPROACH ANN Architecture Learning Algorithm Training and Testing 9 4. APPLICATION AND TEST PARAMETERS IEEE 14-Bus System CONCLUSION 14 BIBLIOGRAPHY 15 APPENDIX A 16 iv

5 LIST OF FIGURES Figure 1.1 A Biological Neuron 2 Figure 1.2 Basic layers of ANN 3 Figure 1.3 Basic three-layer architecture of feed forward ANN 4 Figure 3.1 Neural Network Architecture 8 Figure 3.2 IEEE 14-Bus System 9 Figure 4.1 Simulink Model 10 Figure 4.2 Neural Network Sub-system 11 Figure 4.3 Neural Network Transfer Function 11 Figure 4.4 L-Index Plots 12 Figure 4.5 Performance Comparison 12 Figure 4.6 Three-phase MVA at Bus 1 13 Figure 4.7 Three-phase MVA at Bus Figure A.1 Neural Network Training Toolbox 17 Figure A.2 Regression plot 18 Figure A.3 Performance plot 18 v

6 LIST OF TABLES Table 1.1 List of ANN algorithms 5 vi

7 ABSTRACT POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK By Rohan Shetty Master of Science in Electrical Engineering Electrical power systems in any part of the world are expected to deliver continuous, uninterrupted and reliable power to the consumers irrespective of the geographical and weather conditions throughout the year. But they are affected by various factors causing problems such as power loss, voltage fluctuation, blackouts, etc. Many modern power systems are regularly facing problems due to voltage instability which is a threat for a reliable and secure operation. The protection of power systems is hugely dependent on the use of the wide range of distance relays based on electromechanical, solid-state and digital electronics technologies. In my study, an Artificial Neural Network (ANN) model is used along with Continuation Power Flow methods to assess the voltage stability of a power system. The Modal Analysis Method is first implemented to identify the most vulnerable load buses of the power system. Hundreds of loading patterns are generated by varying the real and reactive power. With the help of the input patterns and the target outputs, an appropriate ANN is trained and thereafter it is tested with a new set of loading patterns. The proposed method is applied to the IEEE 14 bus test system and the trained ANN provides results for all the vulnerable load buses of the power system. vii

8 1.1 Introduction to Voltage Instability 1. INTRODUCTION The phenomenon of voltage instability has been a persistent problem for the past few decades in modern power systems all over the world. It is considered as one of the major concern in the planning, reliable operation and security of electrical power systems. The ability of a power system to maintain operational voltages at all the buses under nominal operating conditions even when subjected to disturbances is termed as Voltage Stability. A system exhibits voltage instability and results in voltage collapse when there is a change in system operating condition, abrupt fluctuation in load demand and external disturbances. Voltage instability is widely seen in heavily loaded power systems that are invariably required to operate at the optimum reactive power limits of the transmission network. A good power system needs to provide adequate reactive support in case of system instability due to heavy reactive power flowing through the transmission lines. The current scenario of the restructured power systems requires the use of FACT devices and compensators to extract the maximum capacity of the network. This hampers the anticipation of voltage instability by observing the system voltage profile. The system operator fails to receive well-timed indications from the SCADA systems and the automatic protective systems trips the network before any action is taken. Therefore, it is necessary to have a fast method to evaluate static voltage stability comprehensively by examining and quantifying the production, transmission and consumption of the reactive power on a system wide basis and relate this to the voltage stability margins at the vulnerable load buses [3]. The voltage stability analysis and assessment is performed by various techniques but the most widely used method is the Modal Analysis Method. The key advantage of using this method is that we can identify the most vulnerable load buses of a given power system. But the drawback of this method is that the computation required is very expensive and it fails to account the effects of high reactive power sources in the system. As mentioned above, the problem of voltage instability occurs when the reactive power sources of the system fails to meet the reactive power demands. Thus, the QV and PV curves of a system are used for the voltage stability analysis. Using suitable parameters like the reactive power loading margins, nose point from the QV curves and the operating points for selected load buses of the system, the Voltage Collapse Proximity Indicator (VCPI) is obtained [6]. Since an extensive amount of computation is required for the above analytical methods, they are used in conjunction with Artificial Neural Network (ANN). Using ANN helps to overcome the computational difficulties and also gives extremely close matching results compared to the analytical methods. An ANN can be designed and trained with the input and output loading patterns of the selected system so as to obtain reactive power margins at the output for all the identified vulnerable load buses before the voltage collapses [2]. 1

9 1.2 Introduction to Artificial Neural Network The phenomenon of Artificial Neural Networks (ANN) is associated with various fields of science like mathematics, neurosciences, statistics, physics, computer science and engineering. Neural networks find applications in such diverse fields as modeling, time series analysis, pattern recognition, signal processing and control by virtue of an important property: the ability to learn from input data with or without a teacher [8]. The human brain is a good example of an intelligent and complex system with a dense network of neurons that work in tandem making decisions in nanoseconds. The biological structure of the brain, left-hand side and right-hand side, are capable of performing deductive reasoning of if-then rules and inductive reasoning of intuitions or pattern recognition respectively. Today s intelligent systems are modeled on this capability of the human brain to solve nonlinear complex problems in various engineering fields. ANN is one such intelligent system. Figure 1.1: A Biological Neuron [10] The development of ANN was motivated by looking at the functioning of the human brain. The human brain works as a complex system which learns every minute with electrochemical processes occurring continuously due to external stimuli. So, in a way, our brain gets trained by absorbing the various and recurrent experiences and reacts to a testing condition. The methodology of using ANN in power systems is developed in reference to the extensive and dense network of neurons present in the human brain. There are millions of neurons and trillion connections in the human brain. Due to the presence of neurons, the human brain performs functions at a very high speed and processes information and decision making effectively [8]. It is a set of elementary neurons that are usually connected in biologically inspired architectures and organized in several layers [7]. An ANN consists of a collection of arithmetic computing units connected together in a network of interconnected layers. The most basic model of ANN is shown in the Figure 1.2 below. 2

10 Figure 1.2: Basic layers of ANN [11] There are a number of connections at the input side each having a specific weight that specifies the influence between two neurons. The weights determine the behavior of the network similar to a computer program. In the hidden layer, all the inputs are first summed up and then passed through different types of logic functions to produce the output of the neuron. The multilayer perceptron (MLP) model is extensively used out of the wide range of ANN architectures available. The input layer, hidden layer and the output layer are stacked in a feed-forward pattern. The input layer acquires the input through its nodes and feeds into the hidden layer which has the non-linear transfer functions. The nature of the problem that is to be processed defines the number of neurons or nodes in the output and hidden layer. Usually the MLP network requires one output and hidden layer. As seen in figure 1.3 for the feed-forward ANN, the neurons in each of the input layer are interconnected and they are subjected with the excitation signals. Multiple weights and biases are attached to each neuron and the ANN is trained by adjusting these weights according to the specific training set. The learning curve of the ANN depends on the repetitive adjustments in the node weights for an input and hence we require training data set for its training. 3

11 Figure 1.3: Basic three-layer architecture of feed forward ANN [9] The input set to the ANN is x 1, x 2, x 3... x j and the transfer functions in the hidden layer computes the data and provides result to the output layer. The different types of ANN used are: 1. Supervised artificial neural networks, e.g.; the multilayer perceptron (MLP) and the finite impulse response artificial neural network (FIRANN) 2. Massively parallel interconnected artificial neural networks, e.g.; the Hopfield net (HN) 3. Unsupervised artificial neural networks, e.g.; the Kohonen net (KN) 1.3 ANN Design and Architecture The basic segments of the ANN architecture are the input layer, hidden layer and the output layer. The dotprod function available in the ANN toolbox is used to tune the weights and biases of the neurons, whereas, the adaptation which changes both the weights and biases is implemented using the adaptwb function. The toolbox functions required are: Neural network architecture and types Training functions Activation functions Learning functions Initialization functions Performance functions 1.4 Neural Network Algorithm In order to utilize neural networks, it is critical to train them for the specific application. The weights and biases can be finely tuned by using the training and learning functions 4

12 which are nothing but basic mathematical algorithms. These algorithms are not problem specific and they vary depending on various factors like the complexity of the problem, accuracy required, strength of the training data set and the number of weights and biases. Different algorithms are used for pattern recognition and function approximation. The following table lists the algorithms that are tested and the acronyms used to identify them: [16] Acronym Algorithm Description LM trainlm Levenberg-Marquardt BFG trainbfg BFGS Quasi-Newton RP trainrp Resilient Backpropagation SCG trainscg Scaled Conjugate Gradient CGB traincgb Conjugate Gradient with Powell/Beale Restarts CGF traincgf Fletcher-Powell Conjugate Gradient CGP traincgp Polak-Ribiére Conjugate Gradient OSS trainoss One Step Secant GDX traingdx Variable Learning Rate Backpropagation Table 1.1: List of ANN algorithms 5

13 2.1 Modal Analysis Method 2. ANALYTICAL METHODOLOGY The foremost step in voltage stability assessment is to identify the most vulnerable bus in the power system and this can be done by implementing the Modal Analysis method. A large number of loading patterns are generated by varying the real and reactive power loadings of the system and the program is run to identify all the vulnerable load buses. The bus with the recurring high value is termed as the most vulnerable load bus. The modal analysis method also provides the target input and output patterns which are required to train the neural network. 2.2 Derivation of Voltage Stability Index By using the improved distribution load flow technique [15], the voltage stability index can be mathematically formulated from the voltage equation. Consider a line connecting the bus i to i+1, P Li, Q Li P Li+1, Q Li+1 The voltage equation is given as:- V i V i+1 2 [2(P i+1 r i + Q i+1 x i ) V i 2 ]+P i Q i+1 2 r i 2 + x i 2 = 0 (1) Where, P i,q i = Real and reactive power injection at bus i V i = Voltage at bus i r i, x i = resistance and reactance of line connecting bus i and i+1 By simplifying the above quadratic equation we get, 8P i+1 Q i+1 r i x i 4V i 2 (P i+1 r i + Q i+1 x i ) + V i 4 4(P i+1 2 x i 2 + Q i+1 2 x i 2 ) 0 (2) Equation (2) is further simplified to, 4[V i 2 (P i+1 r i +Q i+1 x i )+(P i+1 x i Q i+1 r i ) 2 ] V i 4 1 (3) 6

14 Thus, the voltage stability index can be given as, From the power flow equations, L = 4[V i 2 (P i+1 r i +Q i+1 x i )+(P i+1 x i Q i+1 r i ) 2 ] V i 4 (4) V i V i+1 cos(θ i θ i+1 ) V i+1 2 = (P i+1 r i + Q i+1 x i ) (5) V i V i+1 sin(θ i θ i+1 ) = (P i+1 x i Q i+1 r i ) (6) By substituting equations (5) and (6) in equation (4) we get, L = 4[V iv i+1 cos(θ i θ i+1 ) V i+1 2 cos(θ i θ i+1 ) 2 ] V i 2 (7) Further, we make use of the Thevenin s equivalent circuit at the load bus to derive the voltage stability index. The Thevenin s equivalent circuit comprises of the open circuit voltage at the bus called as the Thevenin voltage, the equivalent impedance of the connected load and the Thevenin impedance across the load bus [15]. Now by applying equation (7) to the Thevenin s equivalent circuit we get, L = 4[V ov L cos(θ o θ L ) V L 2 cos(θ o θ L ) 2 ] V o 2 (8) The voltage stability index needs to be less than unity so as to maintain voltage stability. If this value goes above 1.0, then the bus voltage becomes imaginary as per equation (3) indicating a voltage collapse in the power system. The simplified voltage stability index is thus given as, Where, L = Voltage Stability Index, V o = No load voltage, V L = Load voltage. L = 4(V ov L V L 2 ) V o 2 (9) For any power system network to remain sustained in a stable voltage condition, the index value L should always be less than 1.0 for any load bus. If this value reaches 1.0 for any load bus, then the network approaches a state of voltage collapse. [15] 7

15 3. ANN BASED APPROACH The next step for the voltage stability assessment is implementing the Artificial Neural Network (ANN). A suitable type of network along with multiple learning and training algorithm is used for the application. The ANN is developed according to the following three vital steps:- 1. ANN Architecture 2. Learning Algorithm 3. Training and testing 3.1 ANN Architecture The selection of the ANN architecture depends on the type of neural network that is to be used. We use a multilayer feed-forward type of neural network which consists of one input layer, one hidden layer and one output layer. Each layer requires the sigmoid activation function. Within each layer, there are multiple training functions for each of the neuron which process as per the set biases and weights. For a specific system, a suitable ANN architecture can be obtained by trying various combinations of training functions in the three layers and the number of neurons in each of the layers. The architecture of the developed ANN is shown below in figure Learning Algorithm Figure 3.1: Neural Network Architecture [15] The ANN is developed using the MATLAB Neural Network toolbox. This toolbox has a wide range of training and learning algorithms that can be used according to the required application. For the multilayer feed-forward network, we use the error back propagation algorithm to train and process the network with a set of input and target outputs. In this algorithm, if the weights in each neuron is adjusted (increased or decreased), then the 8

16 error between the target output and the actual output is reduced effectively. The neural network computes the error derivative and calculates the error changes as and when the weights are adjusted. 3.3 Training and Testing The neural network is successfully trained by subjecting it with a problem or a process repetitively resulting in very low errors after each iteration. Selecting crucial training parameters affects the learning ability and the accuracy of the network. A total of 300 input and output patterns are generated wherein, 250 patterns are used for training the network and the rest are used for the testing. The network is repeatedly subjected with these patterns until a very small Mean Squared Error (MSE) is achieved. The transfer functions that are used for the neurons in the network are TANSIG and PURELIN, the training function is TRAINLM and the error function is MSE. The test system uses an IEEE 14 bus system which comprises of 2 generators, 3 synchronous compensators and 20 lines. The single-line diagram for the modified 14-bus system is shown below in figure 3.2. Figure 3.2: IEEE 14-Bus System [15] 9

17 4.1 IEEE 14-Bus System 4. APPLICATION AND TEST PARAMETERS The IEEE 14 bus system was implemented using the MATLAB Simulink tool. Two swing type generators are connected to bus 1 and bus 2 through three-phase transformers. Three synchronous compensators are connected to bus 3, bus 6 and bus 8. They help in regulating the voltage and improving the power factor. Three-phase RLC load is connected to all the buses except the buses 1 and 8. Figure 4.1: Simulink Model As seen from the Simulink model, two Power System Stabilizers are connected at bus 6 and 14. The neural networks are embedded in the stabilizers as a sub-system. Each neural 10

18 network consists of three nodes in the hidden layer. The transfer functions TANSIG and PURELIN are applied in these nodes. Figure 4.2: Neural Network Subsystem Figure 4.3: Neural Network Transfer Function Two different neural network architectures were trained to determine the most closest to the actual voltage stability index. Back-propagation Neural Network (BPNN) and Genetic Algorithm Neural Network (GANN) were trained and plotted along with the actual values of voltage stability index for all the 14 buses as shown below in figure 4.4 and

19 Figure 4.4: L-Index plots Figure 4.5: Performance Comparison 12

20 Figure 4.6: Three-phase MVA at Bus 1 Figure 4.7: Three-phase MVA at Bus 14 13

21 5. CONCLUSION The voltage stability analysis and assessment using ANN was documented. The neural network with the back propagation error architecture was developed using the MATLAB neural network toolbox and it was applied to the IEEE 14-bus test system. It was observed that the selected neural network was efficient enough in calculating the voltage stability L-index for the vulnerable load buses. Additionally, the L-index value from the ANN was very close to the actual L-index from the analytical method, thus giving low error values. The use of neural networks proves to be very beneficial in computing complex power system processes in comparison to the expensive and extensive analytical methods. The ANN can also be applied to real-time voltage monitoring and voltage stability margin prediction and also in various other aspects of power system protection. 14

22 BIBLIOGRAPHY 1. V. R. Dinavahi, S. C. Srivastava, ANN based voltage stability margin prediction, Power Engineering Society Summer Meeting, 2001, Vol. 2, pages , July R. Balasubramanium, Rhythm Singh, Power system voltage stability analysis using ANN and continuation power flow methods, Intelligent System Application to Power system, 2011, pages 1-7, September R. Balasubramanium, BhavikSuthar, Application of an ANN based voltage stability assessment tool to restructured power systems, Bulk power systems dynamics and control, 2007, pages 1-8, August R. Balasubramanium, BhavikSuthar, A novel ANN based method for online voltage stability assessment, Intelligent System Application to Power system, 2011, pages 1-6, November R. A. Schlueter, A voltage stability security assessment method, IEEE Trans. Power System, Vol. 13, pages , Nov C. W. Taylor, Power system voltage stability, New York, Mc-Graw-Hill, Cichoki A, Unbehauen R., Neural networks for Optimizing and signal processing, John Wiley & sons, Inc., New York, Haykin S. Neural networks: A comprehensive foundation, Macmillan Collage Publishing Company, Inc., New York, Rajveer Singh, Fault detection of electric power transmission line by using neural network, IJETAE, Vol 2, Issue 12, Dec Retrieved on April 11, 2014www.neuralpower.com/technology 11. Retrieved on April 11, 2014http://en.wikipedia.org/wiki/User:Mariam_Hovhannisyan 12. Hiroyuki Mori, Fuzzy Neural Network Application for Power Systems, Power engineering society winter meeting, 2000, IEEE, Vol 2, pages Jen Hao-Teng, Power Flow and Loss Allocation for deregulated transmission systems, Electrical Power and Energy Systems, vol 27, no.4, pages , Jan Hadi Saadat, Power System Analysis, McGraw Hill, O.P.Rahi, Amit Yadav, Hasmat Malik, Abdul Azeem, Bhupesh K, Power System Voltage Stability Assessment through Artificial Neural Network, International Conference on Communication Technology and System Design, MATLAB Neural Network toolbox, User s guide, Math Work, Inc. 17. Retrieved on November 12,

23 APPENDIX A The Neural Network Toolbox that is present in all versions of MATLAB has an extensive collection of functions, systems, functional blocks and applications that can be used to train, assess, model and evaluate complex nonlinear systems in areas of power systems, control systems, computer science, mathematics and statistics and physics. This tool works in conjunction with the analytical approach and provides very fast and accurate results. Using this tool we can develop, train, process and simulate a neural network for any given system. The toolbox consists of various networks that can be selected according to the system under execution. These networks are part of the Neural Network Architecture and form the basis of the simulation. The different networks are: feed-forward, radial basis, dynamic and learning vector quantization. There are multiple algorithms within these networks that comprises of training and learning functions which can be used to adjust the weights and biases of the network. The network can be trained with the input values and getting the desired output closest to the target values. A sample MATLAB code is implemented to illustrate the working of the Neural Network Toolbox. MATLAB Code:- a = rand(1,1000); b = rand(1,1000); c = rand(1,1000); n = rand(1,1000); y = a*5+b.*c+7*c+n; I = [a;b;c]; T = y; R = [0 1;0 1;0 1]; S = [5 1]; net = newff([0 1;0 1;0 1],[4 1],{'tansig','purelin'}); nte = train(net,i,t); T1 = sim(net,i); plot(1:1000,t,1:1000,t1); scatter(t,t1); 16

24 The training function in the algorithm is TRAINLM and the transfer functions are TANSIG and PURELIN. When the nte = train(net,i,t) function is run, the Neural Network Training (nntraintool) dialog box appears which shows the algorithm that is used and also the training parameters. Figure A.1: Neural Network Training Toolbox As seen from the above figure, we can make changes in the weights and biases in the hidden layers of the network, control the training and get different plots regarding the performance, training state and regression of the network. The code is executed as soon as the function is called and the network starts getting trained until it is stopped by the user. Here, the network training was stopped after it reached 166 iterations and the plots for performance and regression were plotted as shown below. 17

25 Figure A.2: Regression plot Figure A.3: Performance plot 18

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

Voltage Stability Assessment in Power Network Using Artificial Neural Network

Voltage Stability Assessment in Power Network Using Artificial Neural Network Voltage Stability Assessment in Power Network Using Artificial Neural Network Swetha G C 1, H.R.Sudarshana Reddy 2 PG Scholar, Dept. of E & E Engineering, University BDT College of Engineering, Davangere,

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

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

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

A Fuzzy Logic Voltage Collapse Alarm System for Dynamic Loads. Zhang Xi. Master of Science in Electrical and Electronics Engineering

A Fuzzy Logic Voltage Collapse Alarm System for Dynamic Loads. Zhang Xi. Master of Science in Electrical and Electronics Engineering A Fuzzy Logic Voltage Collapse Alarm System for Dynamic Loads by Zhang Xi Master of Science in Electrical and Electronics Engineering 2012 Faculty of Science and Technology University of Macau A Fuzzy

More information

A Compact DGS Low Pass Filter using Artificial Neural Network

A Compact DGS Low Pass Filter using Artificial Neural Network A Compact DGS Low Pass Filter using Artificial Neural Network Vitthal Chaudhary Department of Electronics, Madhav Institute of Technology and Science Gwalior, India Gwalior, India Vandana Vikas Thakare

More information

A Comparison Study of Learning Algorithms for Estimating Fault Location

A Comparison Study of Learning Algorithms for Estimating Fault Location Indonesian Journal of Electrical Engineering and Computer Science Vol. 6, No. 2, May 2017, pp. 464 ~ 472 DOI: 10.11591/ijeecs.v6.i2.pp464-472 464 A Comparison Study of Learning Algorithms for Estimating

More information

Fast Prediction of Voltage Stability Index Based on Radial Basis Function Neural Network: Iraqi Super Grid Network, 400-kV

Fast Prediction of Voltage Stability Index Based on Radial Basis Function Neural Network: Iraqi Super Grid Network, 400-kV Fast Prediction of Voltage Stability Index Based on Radial Basis Function Neural Network: Iraqi Super Grid Network, 400-kV Omer H. Mehdi & Noor Izzri Department of Electrical and Electronic Engineering,

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

PV CURVE APPROACH FOR VOLTAGE STABILITY ANALYSIS

PV CURVE APPROACH FOR VOLTAGE STABILITY ANALYSIS 373 PV CURVE APPROACH FOR VOLTAGE STABILITY ANALYSIS 1 Neha Parsai, 2 Prof. Alka Thakur 1 M. Tech. Student, 2 Assist. Professor, Department of Electrical Engineering SSSIST Shore, M.P. India ABSTRACT Voltage

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

Comparison of Various Neural Network Algorithms Used for Location Estimation in Wireless Communication

Comparison of Various Neural Network Algorithms Used for Location Estimation in Wireless Communication Comparison of Various Neural Network Algorithms Used for Location Estimation in Wireless Communication * Shashank Mishra 1, G.S. Tripathi M.Tech. Student, Dept. of Electronics and Communication Engineering,

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

MATLAB/GUI Simulation Tool for Power System Fault Analysis with Neural Network Fault Classifier

MATLAB/GUI Simulation Tool for Power System Fault Analysis with Neural Network Fault Classifier MATLAB/GUI Simulation Tool for Power System Fault Analysis with Neural Network Fault Classifier Ph Chitaranjan Sharma, Ishaan Pandiya, Dipak Swargari, Kusum Dangi * Department of Electrical Engineering,

More information

Application Of Artificial Neural Network In Fault Detection Of Hvdc Converter

Application Of Artificial Neural Network In Fault Detection Of Hvdc Converter Application Of Artificial Neural Network In Fault Detection Of Hvdc Converter Madhuri S Shastrakar Department of Electrical Engineering, Shree Ramdeobaba College of Engineering and Management, Nagpur,

More information

Fuzzy Approach to Critical Bus Ranking under Normal and Line Outage Contingencies

Fuzzy Approach to Critical Bus Ranking under Normal and Line Outage Contingencies Fuzzy Approach to Critical Bus Ranking under Normal and Line Outage Shobha Shankar *, Dr. T. Ananthapadmanabha ** * Research Scholar and Assistant Professor, Department of Electrical and Electronics Engineering,

More information

Decriminition between Magnetising Inrush from Interturn Fault Current in Transformer: Hilbert Transform Approach

Decriminition between Magnetising Inrush from Interturn Fault Current in Transformer: Hilbert Transform Approach SSRG International Journal of Electrical and Electronics Engineering (SSRG-IJEEE) volume 1 Issue 10 Dec 014 Decriminition between Magnetising Inrush from Interturn Fault Current in Transformer: Hilbert

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

Prediction of Influence of Doping of NaNO 3 on the Solid Phase Thermal Decomposition of Bitumen using neural networks

Prediction of Influence of Doping of NaNO 3 on the Solid Phase Thermal Decomposition of Bitumen using neural networks Prediction of Influence of Doping of NaNO 3 on the Solid Phase Thermal Decomposition of Bitumen using neural networks Foad Qassemi Department of Civil and Survey Engineering Kerman Graduate University

More information

Neural Network Classifier and Filtering for EEG Detection in Brain-Computer Interface Device

Neural Network Classifier and Filtering for EEG Detection in Brain-Computer Interface Device Neural Network Classifier and Filtering for EEG Detection in Brain-Computer Interface Device Mr. CHOI NANG SO Email: cnso@excite.com Prof. J GODFREY LUCAS Email: jglucas@optusnet.com.au SCHOOL OF MECHATRONICS,

More information

Keywords : Simulated Neural Networks, Shelf Life, ANN, Elman, Self - Organizing. GJCST Classification : I.2

Keywords : Simulated Neural Networks, Shelf Life, ANN, Elman, Self - Organizing. GJCST Classification : I.2 Global Journal of Computer Science and Technology Volume 11 Issue 14 Version 1.0 August 011 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Inc. (USA) Online

More information

ISSN: [Jha* et al., 5(12): December, 2016] Impact Factor: 4.116

ISSN: [Jha* et al., 5(12): December, 2016] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY ANALYSIS OF DIRECTIVITY AND BANDWIDTH OF COAXIAL FEED SQUARE MICROSTRIP PATCH ANTENNA USING ARTIFICIAL NEURAL NETWORK Rohit Jha*,

More information

ECE 692 Advanced Topics on Power System Stability 5 - Voltage Stability

ECE 692 Advanced Topics on Power System Stability 5 - Voltage Stability ECE 692 Advanced Topics on Power System Stability 5 - Voltage Stability Spring 2016 Instructor: Kai Sun 1 Content Basic concepts Voltage collapse and Saddle-node bifurcation P-V curve and V-Q curve Causes

More information

Transient Stability Improvement of Multi Machine Power Systems using Matrix Converter Based UPFC with ANN

Transient Stability Improvement of Multi Machine Power Systems using Matrix Converter Based UPFC with ANN IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 04, 2015 ISSN (online): 2321-0613 Transient Stability Improvement of Multi Machine Power Systems using Matrix Converter

More information

Arvind Pahade and Nitin Saxena Department of Electrical Engineering, Jabalpur Engineering College, Jabalpur, (MP), India

Arvind Pahade and Nitin Saxena Department of Electrical Engineering, Jabalpur Engineering College, Jabalpur, (MP), India e t International Journal on Emerging Technologies 4(1): 10-16(2013) ISSN No. (Print) : 0975-8364 ISSN No. (Online) : 2249-3255 Control of Synchronous Generator Excitation and Rotor Angle Stability by

More information

Increasing Dynamic Stability of the Network Using Unified Power Flow Controller (UPFC)

Increasing Dynamic Stability of the Network Using Unified Power Flow Controller (UPFC) Increasing Dynamic Stability of the Network Using Unified Power Flow Controller (UPFC) K. Manoz Kumar Reddy (Associate professor, Electrical and Electronics Department, Sriaditya Engineering College, India)

More information

Improving the Transient and Dynamic stability of the Network by Unified Power Flow Controller (UPFC)

Improving the Transient and Dynamic stability of the Network by Unified Power Flow Controller (UPFC) International Journal of Scientific and Research Publications, Volume 2, Issue 5, May 2012 1 Improving the Transient and Dynamic stability of the Network by Unified Power Flow Controller (UPFC) K. Manoz

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

Impact of Thyristor Controlled Series Capacitor on Voltage Profile of Transmission Lines using PSAT

Impact of Thyristor Controlled Series Capacitor on Voltage Profile of Transmission Lines using PSAT Impact of Thyristor Controlled Series Capacitor on Voltage Profile of Transmission Lines using PSAT Babar Noor 1, Muhammad Aamir Aman 1, Murad Ali 1, Sanaullah Ahmad 1, Fazal Wahab Karam. 2 Electrical

More information

Computation of Different Parameters of Triangular Patch Microstrip Antennas using a Common Neural Model

Computation of Different Parameters of Triangular Patch Microstrip Antennas using a Common Neural Model 219 Computation of Different Parameters of Triangular Patch Microstrip Antennas using a Common Neural Model *Taimoor Khan and Asok De Department of Electronics and Communication Engineering Delhi Technological

More information

A Novel Approach for Reducing Proximity to Voltage Instability of Multibus Power System with Line Outage Using Shunt Compensation and Modal Analysis

A Novel Approach for Reducing Proximity to Voltage Instability of Multibus Power System with Line Outage Using Shunt Compensation and Modal Analysis A Novel Approach for Reducing Proximity to Voltage Instability of Multibus Power System with Line Outage Using Shunt Compensation and Modal Analysis S.D.Naik Department of Electrical Engineering Shri Ramdeobaba

More information

Estimation of Effective Dielectric Constant of a Rectangular Microstrip Antenna using ANN

Estimation of Effective Dielectric Constant of a Rectangular Microstrip Antenna using ANN International Journal of Electronic and Electrical Engineering. ISSN 0974-2174 Volume 3, Number 1 (2010), pp. 67--73 International Research Publication House http://www.irphouse.com Estimation of Effective

More information

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER CHAPTER FOUR TOTAL TRANSFER CAPABILITY R structuring of power system aims at involving the private power producers in the system to supply power. The restructured electric power industry is characterized

More information

NEURAL NETWORK BASED MAXIMUM POWER POINT TRACKING

NEURAL NETWORK BASED MAXIMUM POWER POINT TRACKING NEURAL NETWORK BASED MAXIMUM POWER POINT TRACKING 3.1 Introduction This chapter introduces concept of neural networks, it also deals with a novel approach to track the maximum power continuously from PV

More information

Indirect Vector Control of Induction Motor Using Pi Speed Controller and Neural Networks

Indirect Vector Control of Induction Motor Using Pi Speed Controller and Neural Networks Vol.3, Issue.4, Jul - Aug. 2013 pp-1980-1987 ISSN: 2249-6645 Indirect Vector Control of Induction Motor Using Pi Speed Controller and Neural Networks C. Mohan Krishna M. Tech 1, G. Meerimatha M.Tech 2,

More information

POWER TRANSFORMER PROTECTION USING ANN, FUZZY SYSTEM AND CLARKE S TRANSFORM

POWER TRANSFORMER PROTECTION USING ANN, FUZZY SYSTEM AND CLARKE S TRANSFORM POWER TRANSFORMER PROTECTION USING ANN, FUZZY SYSTEM AND CLARKE S TRANSFORM 1 VIJAY KUMAR SAHU, 2 ANIL P. VAIDYA 1,2 Pg Student, Professor E-mail: 1 vijay25051991@gmail.com, 2 anil.vaidya@walchandsangli.ac.in

More information

Use of PQV Surface as a Tool for Comparing the Effects of FACTS Devices on Static Voltage Stability Ali Zare, Ahad Kazemi

Use of PQV Surface as a Tool for Comparing the Effects of FACTS Devices on Static Voltage Stability Ali Zare, Ahad Kazemi Use of PQV Surface as a Tool for Comparing the Effects of FACTS Devices on Static Voltage Stability Ali Zare, Ahad Kazemi Abstract PV or QV curves are commonly used to determine static voltage stability

More information

Prediction of Missing PMU Measurement using Artificial Neural Network

Prediction of Missing PMU Measurement using Artificial Neural Network Prediction of Missing PMU Measurement using Artificial Neural Network Gaurav Khare, SN Singh, Abheejeet Mohapatra Department of Electrical Engineering Indian Institute of Technology Kanpur Kanpur-208016,

More information

Neural Network Based Loading Margin Approximation for Static Voltage Stability in Power Systems

Neural Network Based Loading Margin Approximation for Static Voltage Stability in Power Systems Neural Network Based Loading Margin Approximation for Static Voltage Stability in Power Systems Arthit Sode-Yome, Member, IEEE, and Kwang Y. Lee, Fellow, IEEE Abstract Approximate loading margin methods

More information

COURSE PLANNER Subject: POWER SYSTEM OPERATION AND CONTROL [ ]

COURSE PLANNER Subject: POWER SYSTEM OPERATION AND CONTROL [ ] COURSE PLANNER Subject: POWER SYSTEM OPERATION AND CONTROL [2180909] B.E. Forth Year Branch /Class Electrical 2013 Term: 16/2 (DEC-16 to APR-17) Faculty: PROF. J. I. JARIWALA PROF. T. M. PANCHAL PROF.

More information

LARGE-SCALE WIND POWER INTEGRATION, VOLTAGE STABILITY LIMITS AND MODAL ANALYSIS

LARGE-SCALE WIND POWER INTEGRATION, VOLTAGE STABILITY LIMITS AND MODAL ANALYSIS LARGE-SCALE WIND POWER INTEGRATION, VOLTAGE STABILITY LIMITS AND MODAL ANALYSIS Giuseppe Di Marzio NTNU giuseppe.di.marzio@elkraft.ntnu.no Olav B. Fosso NTNU olav.fosso@elkraft.ntnu.no Kjetil Uhlen SINTEF

More information

Using of Artificial Neural Networks to Recognize the Noisy Accidents Patterns of Nuclear Research Reactors

Using of Artificial Neural Networks to Recognize the Noisy Accidents Patterns of Nuclear Research Reactors Int. J. Advanced Networking and Applications 1053 Using of Artificial Neural Networks to Recognize the Noisy Accidents Patterns of Nuclear Research Reactors Eng. Abdelfattah A. Ahmed Atomic Energy Authority,

More information

Voltage Stability Calculations in Power Transmission Lines: Indications and Allocations (IEEE 30 BUS SYSTEM)

Voltage Stability Calculations in Power Transmission Lines: Indications and Allocations (IEEE 30 BUS SYSTEM) Voltage Stability Calculations in Power Transmission Lines: Indications and Allocations (IEEE 30 BUS SYSTEM) 1 Bikram Singh Pal, 2 Dr. A. K. Sharma 1, 2 Dept. of Electrical Engineering, Jabalpur Engineering

More information

Transient stability improvement by using shunt FACT device (STATCOM) with Reference Voltage Compensation (RVC) control scheme

Transient stability improvement by using shunt FACT device (STATCOM) with Reference Voltage Compensation (RVC) control scheme I J E E E C International Journal of Electrical, Electronics ISSN No. (Online) : 2277-2626 and Computer Engineering 2(1): 7-12(2013) Transient stability improvement by using shunt FACT device (STATCOM)

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

Fault Detection in Double Circuit Transmission Lines Using ANN

Fault Detection in Double Circuit Transmission Lines Using ANN International Journal of Research in Advent Technology, Vol.3, No.8, August 25 E-ISSN: 232-9637 Fault Detection in Double Circuit Transmission Lines Using ANN Chhavi Gupta, Chetan Bhardwaj 2 U.T.U Dehradun,

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

Analysis of Distance Protection for EHV Transmission Lines Using Artificial Neural Network

Analysis of Distance Protection for EHV Transmission Lines Using Artificial Neural Network Analysis of Distance Protection for EHV Transmission Lines Using Artificial Neural Network Ezema C.N 1, Iloh J.P.I 2, Obi P.I. 3 1, 2 Department of Electrical /Electronic Engineering, Chukwuemeka Odumegwu

More information

A Two Bus Equivalent Method for Determination of Steady State Voltage Stability Limit of a Power System

A Two Bus Equivalent Method for Determination of Steady State Voltage Stability Limit of a Power System A Two Bus Equivalent Method for Determination of Steady State Voltage Stability Limit of a Power System B. Venkata Ramana, K. V. S. R. Murthy, P.Upendra Kumar, V.Raja Kumar. Associate Professor, LIET,

More information

ARTIFICIAL INTELLIGENCE BASED TUNING OF SVC CONTROLLER FOR CO-GENERATED POWER SYSTEM

ARTIFICIAL INTELLIGENCE BASED TUNING OF SVC CONTROLLER FOR CO-GENERATED POWER SYSTEM ARTIFICIAL INTELLIGENCE BASED TUNING OF SVC CONTROLLER FOR CO-GENERATED POWER SYSTEM 1 Vinod Kumar, 2 R.R.Joshi 1 Asstt Prof., Department of Electrical Engineering, CTAE, Udaipur, India-313001 2 Assoc.

More information

MAGNT Research Report (ISSN ) Vol.6(1). PP , Controlling Cost and Time of Construction Projects Using Neural Network

MAGNT Research Report (ISSN ) Vol.6(1). PP , Controlling Cost and Time of Construction Projects Using Neural Network Controlling Cost and Time of Construction Projects Using Neural Network Li Ping Lo Faculty of Computer Science and Engineering Beijing University China Abstract In order to achieve optimized management,

More information

CHAPTER 4 LINK ADAPTATION USING NEURAL NETWORK

CHAPTER 4 LINK ADAPTATION USING NEURAL NETWORK CHAPTER 4 LINK ADAPTATION USING NEURAL NETWORK 4.1 INTRODUCTION For accurate system level simulator performance, link level modeling and prediction [103] must be reliable and fast so as to improve the

More information

Detection and classification of faults on 220 KV transmission line using wavelet transform and neural network

Detection and classification of faults on 220 KV transmission line using wavelet transform and neural network International Journal of Smart Grid and Clean Energy Detection and classification of faults on 220 KV transmission line using wavelet transform and neural network R P Hasabe *, A P Vaidya Electrical Engineering

More information

A Novel PSS Design for Single Machine Infinite Bus System Based on Artificial Bee Colony

A Novel PSS Design for Single Machine Infinite Bus System Based on Artificial Bee Colony A Novel PSS Design for Single Machine Infinite Bus System Based on Artificial Bee Colony Prof. MS Jhamad*, Surbhi Shrivastava** *Department of EEE, Chhattisgarh Swami Vivekananda Technical University,

More information

Using Artificial Neural Networks to Estimate Rotor Angles and Speeds from Phasor Measurements

Using Artificial Neural Networks to Estimate Rotor Angles and Speeds from Phasor Measurements Using Artificial Neural Networks to Estimate Rotor Angles and Speeds from Phasor Measurements Alberto Del Angel, Student Member, IEEE, Mevludin Glavic, and Louis Wehenkel, Member, IEEE Abstract This paper

More information

Automatic Generation Control of Three Area Power Systems Using Ann Controllers

Automatic Generation Control of Three Area Power Systems Using Ann Controllers International Journal of Computational Engineering Research Vol, 03 Issue, 6 Automatic Generation Control of Three Area Power Systems Using Ann Controllers Nehal Patel 1, Prof.Bharat Bhusan Jain 2 1&2

More information

Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique

Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique Vivek Kumar Bhatt 1, Dr. Sandeep Bhongade 2 1,2 Department of Electrical Engineering, S. G. S. Institute of Technology

More information

Neural Network Predictive Controller for Pressure Control

Neural Network Predictive Controller for Pressure Control Neural Network Predictive Controller for Pressure Control ZAZILAH MAY 1, MUHAMMAD HANIF AMARAN 2 Department of Electrical and Electronics Engineering Universiti Teknologi PETRONAS Bandar Seri Iskandar,

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

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

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

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

IEEE & /07/$ IEEE

IEEE & /07/$ IEEE I TODA S COMPETITIVE MARKET EVIROMET, THERE IS A URGET EED for the transformer manufacturing industry to improve transformer efficiency and to reduce costs, since high-quality, low-cost products and processes

More information

Performance Improvement of Contactless Distance Sensors using Neural Network

Performance Improvement of Contactless Distance Sensors using Neural Network Performance Improvement of Contactless Distance Sensors using Neural Network R. ABDUBRANI and S. S. N. ALHADY School of Electrical and Electronic Engineering Universiti Sains Malaysia Engineering Campus,

More information

DC Motor Speed Control using Artificial Neural Network

DC Motor Speed Control using Artificial Neural Network International Journal of Modern Communication Technologies & Research (IJMCTR) ISSN: 2321-0850, Volume-2, Issue-2, February 2014 DC Motor Speed Control using Artificial Neural Network Yogesh, Swati Gupta,

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

Voltage Stability Analysis with Equal Load and Proportional Load Increment in a Multibus Power System

Voltage Stability Analysis with Equal Load and Proportional Load Increment in a Multibus Power System 2012 2nd International Conference on Power and Energy Systems (ICPES 2012) IPCSIT vol. 56 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V56.9 Voltage Stability Analysis with Equal Load

More information

IMPACT OF EMBEDDED GENERATION ON POWER DISTRIBUTION SYSTEM VOLTAGE COLLAPSE

IMPACT OF EMBEDDED GENERATION ON POWER DISTRIBUTION SYSTEM VOLTAGE COLLAPSE IMPACT OF EMBEDDED GENERATION ON POWER DISTRIBUTION SYSTEM VOLTAGE COLLAPSE Ganiyu Adedayo. Ajenikoko 1, Adebayo Wasiu Eboda 2 1 Department of Electronic & Electrical Engineering, Ladoke Akintola University

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

ARTIFICIAL NEURAL NETWORK BASED FAULT LOCATION FOR TRANSMISSION LINES

ARTIFICIAL NEURAL NETWORK BASED FAULT LOCATION FOR TRANSMISSION LINES University of Kentucky UKnowledge University of Kentucky Master's Theses Graduate School 2011 ARTIFICIAL NEURAL NETWORK BASED FAULT LOCATION FOR TRANSMISSION LINES Suhaas Bhargava Ayyagari University of

More information

DESIGNING POWER SYSTEM STABILIZER FOR MULTIMACHINE POWER SYSTEM USING NEURO-FUZZY ALGORITHM

DESIGNING POWER SYSTEM STABILIZER FOR MULTIMACHINE POWER SYSTEM USING NEURO-FUZZY ALGORITHM DESIGNING POWER SYSTEM STABILIZER FOR MULTIMACHINE POWER SYSTEM 55 Jurnal Teknologi, 35(D) Dis. 2001: 55 64 Universiti Teknologi Malaysia DESIGNING POWER SYSTEM STABILIZER FOR MULTIMACHINE POWER SYSTEM

More information

Prediction of airblast loads in complex environments using artificial neural networks

Prediction of airblast loads in complex environments using artificial neural networks Structures Under Shock and Impact IX 269 Prediction of airblast loads in complex environments using artificial neural networks A. M. Remennikov 1 & P. A. Mendis 2 1 School of Civil, Mining and Environmental

More information

Eur Ing Dr. Lei Zhang Faculty of Engineering and Applied Science University of Regina Canada

Eur Ing Dr. Lei Zhang Faculty of Engineering and Applied Science University of Regina Canada Eur Ing Dr. Lei Zhang Faculty of Engineering and Applied Science University of Regina Canada The Second International Conference on Neuroscience and Cognitive Brain Information BRAININFO 2017, July 22,

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

Design Neural Network Controller for Mechatronic System

Design Neural Network Controller for Mechatronic System Design Neural Network Controller for Mechatronic System Ismail Algelli Sassi Ehtiwesh, and Mohamed Ali Elhaj Abstract The main goal of the study is to analyze all relevant properties of the electro hydraulic

More information

DRILLING RATE OF PENETRATION PREDICTION USING ARTIFICIAL NEURAL NETWORK: A CASE STUDY OF ONE OF IRANIAN SOUTHERN OIL FIELDS

DRILLING RATE OF PENETRATION PREDICTION USING ARTIFICIAL NEURAL NETWORK: A CASE STUDY OF ONE OF IRANIAN SOUTHERN OIL FIELDS 21 UDC 622.244.6.05:681.3.06. DRILLING RATE OF PENETRATION PREDICTION USING ARTIFICIAL NEURAL NETWORK: A CASE STUDY OF ONE OF IRANIAN SOUTHERN OIL FIELDS Mehran Monazami MSc Student, Ahwaz Faculty of Petroleum,

More information

Identification of weak buses using Voltage Stability Indicator and its voltage profile improvement by using DSTATCOM in radial distribution systems

Identification of weak buses using Voltage Stability Indicator and its voltage profile improvement by using DSTATCOM in radial distribution systems IOSR Journal of Electrical And Electronics Engineering (IOSRJEEE) ISSN : 2278-1676 Volume 2, Issue 4 (Sep.-Oct. 2012), PP 17-23 Identification of weak buses using Voltage Stability Indicator and its voltage

More information

Transient Stability Improvement Of Power System With Phase Shifting Transformer

Transient Stability Improvement Of Power System With Phase Shifting Transformer INTERNATIONAL JOURNAL OF TECHNOLOGY ENHANCEMENTS AND EMERGING ENGINEERING RESEARCH, VOL 3, ISSUE 3 19 Transient Stability Improvement Of Power System With Phase Shifting Transformer Jyothi Varanasi, Aditya

More information

Bhavin Gondaliya 1st Head, Electrical Engineering Department Dr. Subhash Technical Campus, Junagadh, Gujarat (India)

Bhavin Gondaliya 1st Head, Electrical Engineering Department Dr. Subhash Technical Campus, Junagadh, Gujarat (India) ISSN: 2349-7637 (Online) RESEARCH HUB International Multidisciplinary Research Journal (RHIMRJ) Research Paper Available online at: www.rhimrj.com Modeling and Simulation of Distribution STATCOM Bhavin

More information

Surveillance and Calibration Verification Using Autoassociative Neural Networks

Surveillance and Calibration Verification Using Autoassociative Neural Networks Surveillance and Calibration Verification Using Autoassociative Neural Networks Darryl J. Wrest, J. Wesley Hines, and Robert E. Uhrig* Department of Nuclear Engineering, University of Tennessee, Knoxville,

More information

IBM SPSS Neural Networks

IBM SPSS Neural Networks IBM Software IBM SPSS Neural Networks 20 IBM SPSS Neural Networks New tools for building predictive models Highlights Explore subtle or hidden patterns in your data. Build better-performing models No programming

More information

Digital Simulation of Thyristor Controlled Interphase Power Control Technology (TC- IPC) to limit the fault currents

Digital Simulation of Thyristor Controlled Interphase Power Control Technology (TC- IPC) to limit the fault currents Digital Simulation of Thyristor Controlled Interphase Power Control Technology (TC- IPC) to limit the fault currents V.V.Satyanarayana Rao.R #1, S.Rama Reddy *2 # EEE Department,SCSVMV University Kanchipuram,India

More information

Artificial neural networks in forecasting tourists flow, an intelligent technique to help the economic development of tourism in Albania.

Artificial neural networks in forecasting tourists flow, an intelligent technique to help the economic development of tourism in Albania. Artificial neural networks in forecasting tourists flow, an intelligent technique to help the economic development of tourism in Albania. Dezdemona Gjylapi, MSc, PhD Candidate University Pavaresia Vlore,

More information

Efficient Computation of Resonant Frequency of Rectangular Microstrip Antenna using a Neural Network Model with Two Stage Training

Efficient Computation of Resonant Frequency of Rectangular Microstrip Antenna using a Neural Network Model with Two Stage Training www.ijcsi.org 209 Efficient Computation of Resonant Frequency of Rectangular Microstrip Antenna using a Neural Network Model with Two Stage Training Guru Pyari Jangid *, Gur Mauj Saran Srivastava and Ashok

More information

Power System Stability. Course Notes PART-1

Power System Stability. Course Notes PART-1 PHILADELPHIA UNIVERSITY ELECTRICAL ENGINEERING DEPARTMENT Power System Stability Course Notes PART-1 Dr. A.Professor Mohammed Tawfeeq Al-Zuhairi September 2012 1 Power System Stability Introduction Dr.Mohammed

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

Enhanced Real Time and Off-Line Transmission Line Fault Diagnosis Using Artificial Intelligence

Enhanced Real Time and Off-Line Transmission Line Fault Diagnosis Using Artificial Intelligence Enhanced Real Time and Off-Line Transmission Line Fault Diagnosis Using Artificial Intelligence Okwudili E. Obi, Oseloka A. Ezechukwu and Chukwuedozie N. Ezema 0 Enhanced Real Time and Off-Line Transmission

More information

PERFORMANCE COMPARISON OF POWER SYSTEM STABILIZER WITH AND WITHOUT FACTS DEVICE

PERFORMANCE COMPARISON OF POWER SYSTEM STABILIZER WITH AND WITHOUT FACTS DEVICE PERFORMANCE COMPARISON OF POWER SYSTEM STABILIZER WITH AND WITHOUT FACTS DEVICE Amit Kumar Vidyarthi 1, Subrahmanyam Tanala 2, Ashish Dhar Diwan 1 1 M.Tech Scholar, 2 Asst. Prof. Dept. of Electrical Engg.,

More information

CHAPTER 7 CONCLUSIONS AND FUTURE SCOPE

CHAPTER 7 CONCLUSIONS AND FUTURE SCOPE CHAPTER 7 CONCLUSIONS AND FUTURE SCOPE 7.1 INTRODUCTION A Shunt Active Filter is controlled current or voltage power electronics converter that facilitates its performance in different modes like current

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

MODELLING OF TWIN ROTOR MIMO SYSTEM (TRMS)

MODELLING OF TWIN ROTOR MIMO SYSTEM (TRMS) MODELLING OF TWIN ROTOR MIMO SYSTEM (TRMS) A PROJECT THESIS SUBMITTED IN THE PARTIAL FUFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF BACHELOR OF TECHNOLOGY IN ELECTRICAL ENGINEERING BY ASUTOSH SATAPATHY

More information

Static Synchronous Compensator (STATCOM) for the improvement of the Electrical System performance with Non Linear load 1

Static Synchronous Compensator (STATCOM) for the improvement of the Electrical System performance with Non Linear load 1 Static Synchronous Compensator (STATCOM) for the improvement of the Electrical System performance with Non Linear load MADHYAMA V. WANKHEDE Department Of Electrical Engineering G. H. Raisoni College of

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

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

VECTOR CONTROL SCHEME FOR INDUCTION MOTOR WITH DIFFERENT CONTROLLERS FOR NEGLECTING THE END EFFECTS IN HEV APPLICATIONS

VECTOR CONTROL SCHEME FOR INDUCTION MOTOR WITH DIFFERENT CONTROLLERS FOR NEGLECTING THE END EFFECTS IN HEV APPLICATIONS VECTOR CONTROL SCHEME FOR INDUCTION MOTOR WITH DIFFERENT CONTROLLERS FOR NEGLECTING THE END EFFECTS IN HEV APPLICATIONS M.LAKSHMISWARUPA 1, G.TULASIRAMDAS 2 & P.V.RAJGOPAL 3 1 Malla Reddy Engineering College,

More information

FACE RECOGNITION USING NEURAL NETWORKS

FACE RECOGNITION USING NEURAL NETWORKS Int. J. Elec&Electr.Eng&Telecoms. 2014 Vinoda Yaragatti and Bhaskar B, 2014 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 3, No. 3, July 2014 2014 IJEETC. All Rights Reserved FACE RECOGNITION USING

More information

Speed estimation of three phase induction motor using artificial neural network

Speed estimation of three phase induction motor using artificial neural network International Journal of Energy and Power Engineering 2014; 3(2): 52-56 Published online March 20, 2014 (http://www.sciencepublishinggroup.com/j/ijepe) doi: 10.11648/j.ijepe.20140302.13 Speed estimation

More information

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online): 2321-0613 Mitigating the Harmonic Distortion in Power System using SVC With AI Technique Mr. Sanjay

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