Driving Point Impedance Computation Applying Parallel Processing Techniques

Size: px
Start display at page:

Download "Driving Point Impedance Computation Applying Parallel Processing Techniques"

Transcription

1 7th WSEAS Int. Con. on MATHEMATICAL METHODS and COMPUTATIONAL TECHNIQUES IN ELECTRICAL ENGINEERING, Soia, 27-29/10/05 (pp ) Driving Point Impedance Computation Applying Parallel Processing Techniques A. MEDINA, A. RAMOS-PAZ Facultad de Ingeniería Eléctrica, División de Estudios de Posgrado Universidad Michoacana de San Nicolás de Hidalgo Ediicio de la División del Posgrado de Ingeniería Eléctrica, Ciudad Universitaria, Morelia, Michoacán, MEXICO Abstract: - This contribution deals with the application o parallel processing techniques based on Parallel Processing Machine (PVM) and Multithreading to the Driving Point Impedances (DPI) o Electric Power Systems. It is demonstrated that the application o parallel processing techniques dramatically reduces the intensive computation eort required or the determination o the power system response represented by driving point impedances. Key-Words: - Driving Point Impedance, Parallel Processing, Parallel Virtual Machine (PVM), Multithreading. 1 Introduction In general, an intensive computation eort is required to reproduce the system response or a practical range o requencies or useul transient and harmonic analysis. The requency step used is directly proportional to the accuracy obtained. For practical applications, this inormation is urther processed so that the system response obtained with the driving point impedance is adequately reproduced at resonance requencies by a requency dependent equivalent, e.g. [1-3]. In this contribution two parallel processing platorms based on Multithreads [4] and PVM [5] are applied to the eicient computation o the system requency response. It is shown that as the complexity o the system increases, the application o parallel processing signiicantly reduces the computational eort required by a conventional sequential process to obtain the network requency response. This is achieved by increasing the process relative eiciency o the parallel processing. 2 Driving Point Impedance The power network requency response can be obtained by assembling, at any particular requency, its respective admittance or impedance matrix rom the individual system components. The transer unction between nodal currents and voltages appearing throughout the system busbars is represented, or any requency, by the matrix equation, I = Y V (1) The inverse o the requency admittance matrix the requency impedance matrix Z, where each diagonal element Z, impedance o node. Z is is known as driving point The combination o inductive and capacitive elements as seen rom a particular bus, can result in either series resonance or a parallel resonance. The result o a series resonance may be the presence o unexpected large amounts o harmonic currents lowing through certain network elements, whereas the result o parallel resonance may be the presence o excessive harmonic voltages across network elements [6][7]. 3 Parallel Processing Techniques Parallel processing can be deined as a orm o inormation processing where two or more processors in combination with some orm o inter-processor communication system, cooperate on the concurrent solution o a large problem [8]. The emergence o massive parallel processors and distributed computation have paved the way to the wide acceptance and application o parallel processing or the solution o problems o considerable magnitude in diverse ields.

2 7th WSEAS Int. Con. on MATHEMATICAL METHODS and COMPUTATIONAL TECHNIQUES IN ELECTRICAL ENGINEERING, Soia, 27-29/10/05 (pp ) 3.1 Parallel Virtual Machine PVM (Parallel Virtual Machine) [5] is a platorm that allows an heterogeneous network computer set to work as a large computer o multiple processors. Thus, a low cost and powerul virtual computer o multiple supercomputers can be created. PVM has several important advantages, e.g. Easy to set up. Many virtual machines can co-exist with the same hardware. The development o programs is based on message passing libraries. Supports C and Fortran. The sotware is very portable. The code source is available or ree. PVM enables users to exploit their existing computer hardware to solve much larger problems with minimal additional cost. It supports operating platorms such as Windows or LINUX. In PVM the inormation is transerred by mean a zip-send-reception-unzip protocol. This protocol is based on message passing libraries. 3.2 Multithreading Multithreading [4] is the application o lightweight subprocesses executed within a process sharing code and data segments, but with their own program counter, machine registers and stack. Global and static variables are common to all threads. 4 Parallel DPI calculation Scheme Proposed Conventionally, the computation o Z is carried-out by means o a sequential process where Z, is obtained at each requency. An accurate computation Z requires a small enough requency step size to o, be used, so that parallel and series systems resonances are appropriately reproduced. However, the requency step size is inversely proportional to the computational eort needed to obtain Z, over the entire requency range o analysis. However, the computation o Z, or = 0, 1, 2, n can take advantage rom the act that Z 0 is independent rom Z 1, which in turn is independent rom Z 2, etc. The above process independence makes ideal the application o parallel processing, since concurrent processes are used or the computation o Z over the requency range o interest. Figure 1 illustrates the parallel scheme proposed or the computation o Z. Here, a main process element collects all the inormation related to the electric network such as topology, elements and involved electric variables and parameters. This inormation is stored in a linked list rom a deined class, who contains the relevant inormation associated with each individual element. Start Data Collection Tasking distribution End Main Process Process Z 0 Z 1 Z 2 Z n Threads elements Figure 1. Proposed parallel scheme Once the electric network inormation has been collected, the main process element determines the requency range assigned to each thread or the computation o the system requency behavior, e.g. No. o requencies Frequency step Task by process element = No. o process elements (2) I the requency number is larger than the number o process elements in (2), then each process element computes more than one inverse o. However, i the number o threads is equal to the number o requencies, then each element process calculates one inverse o Y. On the other hand, i the number o element process is larger than the number requencies, then the additional threads are not used. Once the number o tasks to be carried-out by every process element is deined, the main element process sends a starting signal to the dierent threads involved in the process in the case o multithreads or executed every slave process in the case o PVM. Figure 2 illustrates the task assignment to process elements. Here, each process element builds-up the admittance matrix or a requency with the data stored in the linked list. Once the matrix has been assembled, the process element computes the inverse. The elements rom the inverse are sent to the shared memory to be stored in a common variable in the case o Multithreads or are sent to the master Y

3 7th WSEAS Int. Con. on MATHEMATICAL METHODS and COMPUTATIONAL TECHNIQUES IN ELECTRICAL ENGINEERING, Soia, 27-29/10/05 (pp ) processor (in the case o PVM) to be stored in a common variable. This variable is protected against overwriting using the mutual exclusivity mechanism, which prevents simultaneous inormation access rom multiple process elements. Start Gets initial, inal = initial Builds-up Y Calculates Y -1 Stores results in a common variable Every single process element builds-up the Y matrix using the relevant inormation o the stored circuit in a linked list o structures, which contains inormation on the reception and sending nodes, the resistance, inductance and capacitance values and inally a number representing the element arrangement. This number is used to build-up the impedance value on unction o the resistor, capacitor and inductance arrangement. Figure 4 illustrates the storage scheme used in this investigation. This scheme consists on an arrangement o pointers to a basic storage structure which contains three elements; an integer variable that represents the receiving node, a complex variable that stores the admittance value and a pointer to this structure. This pointer is used to link the dierent elements connected to a speciic busbar. Based on the storage scheme each thread builds-up the Y at the dierent requencies assigned. = + = inal End The process o biactorization is based on a LU procedure, where, a matrix is converted into the product o two matrices, a lower and an upper matrix respectively, e.g. Figure 2. Task assignment to process elements The process to calculate the inverse o Y is based on a LU biactorization process, a orward and backward process and the use o sparse matrices. The inverse o Y is build up by columns by mean a orward backward substitution process. For each column o Y a orward backward substitution process is needed, where vector b contains zero elements, with 1 in the position associated with the column to be calculated. Figure 3 illustrates the inverse process. Start i = 0 Vector b generation Set b i = 1 Y = LU (3) where the elements o the matrices L and U are calculated with (4) and (5) respectively. l = a l u i (4) u i i ik k k< i ai likuk k< i = i < l ii (5) Once the matrix is biactorizated, a orward backward substitution o (6) and (7) is used to obtain, by columns, the elements o the matrix inverse o Y. During this process a zero-valued vector is used, except or a 1 in the position o the column to be obtained. orward and backward substitutions i = n End n Y = b + l Y orward substitution (6) i i i = 0 i++ Figure 3. Inverse process o Y n 1 X = ly+ rx backward substitution (7) i ii i i = i

4 7th WSEAS Int. Con. on MATHEMATICAL METHODS and COMPUTATIONAL TECHNIQUES IN ELECTRICAL ENGINEERING, Soia, 27-29/10/05 (pp ) List representing row 0 List representing row 1 List representing row 2 Appendix I illustrates the models used or representation o the synchronous machine and the transormer [6]. GNUPLOT [9] was used or the graphical representation o the driving point impedance. Figure 4. Pointers vector to the linked lists List representing row n-1 Storage scheme using linked lists Beore starting the biactorization process an ordering scheme is used to generate the minimum number o non-zero elements. 5 Test Case For the case with PVM, the PVM3 library [5] was used whereas or the Multithreading case the PTHREAD library was applied [10]. The mutual exclusivity mechanism is applied to appropriately control the access rom multiple threads [10][11]. Figure 6 illustrates the impedance system seen rom node 2. It can be noticed that there are our points o parallel resonance, e.g. at 120, 180, 230 and 360 hz respectively. Figure 5 illustrates the test case to be analyzed. It contains ive nodes, seven transmission lines, two generation units, represented by voltage inections o 1.0 p.u. The test system data are r 1 =r 2 =r 3 =r 4 =r 5 =r 6 =10mΩ, l 1 =l 2 =l 3 =l 4 =l 5 =l 6 =20mH or the transmission lines, r 7 =20mΩ, l 7 =2mH, C 1 =200µF, l 8 =l 9 =0.69mH, C 2 =C 3 =300µF, l 10 =11.3mH and C 4 =100µF. The programming code was developed in C++ with multithreading [4]. For the case with PVM, the PVM3 library [10] was used. Two processors Mhz computer was used to executed the code associated with multithreads. The operative system used was Linux Ubuntu. The developed code reads a data ile containing the system coniguration and their parameters, the simulation data such as number o nodes, branches, harmonics, requency step and the number o threads to be used in the simulation. The parallel virtual machine used in this investigation was build using 3 two processors Mhz computers. Frequency Figure 6. System requency response, as seen rom node 2 Figure 7 illustrates the system requency response, represented by the DPI, given as the impedance magnitude versus requency, as seen rom node 4. Two parallel resonances take place at 120 and 350 Hz, respectively. A 0.1 Hz requency step size was used with a 60 Hz base requency C 1 r 7 r 1 l 1 l 7 C 2 l 8 r 6 r 4 C 3 l 9 l 2 r 2 r 3 l 4 l 6 l l 5 r 5 C 4 l 10 Figure 5. Test case Frequency Figure 7. System requency response, as seen rom node 4

5 7th WSEAS Int. Con. on MATHEMATICAL METHODS and COMPUTATIONAL TECHNIQUES IN ELECTRICAL ENGINEERING, Soia, 27-29/10/05 (pp ) Figure 8 illustrates the eect o the requency step in the driving point calculation. It can be observed that requency steps o 1.0und (und = undamental) and 0.5und do not identiy the parallel resonances associated with the analyzed electric power system, whereas the use o 0.1und and 0.01und identiy all resonances points associated with the electric power systems analyzed. Impedance Magnitud (Ohms) Harmonic Frequency Order Figure 8. Eect o the requency step in the DPI evaluation The parallel processing relative eiciency is computed as [12], E T 1 relative = (8) TP where, T 1 T p execution time with 1 process element. execution time with p process elements. Tables 1-2 illustrate the relative eiciency achieved with the application o parallel processing based on multithreading to the computation o the requency system response using two dierent requency steps. With = und (=60 Hz) no improvement is obtained in the relative eiciency or the DPI computation, since it remains in 1.0. With = 0.1 und the relative eiciency increases rom 1.0 to with ten harmonics (times the undamental requency) and to with orty harmonics, see Table I. For = 0.01 und the relative eiciency increases rom 1.0 to with ten harmonics and to with orty harmonics, see Table II. The application o a third thread does not increase the relative eiciency, since or this investigation a two processors computer was used. The relative eiciency increases in direct proportion to the size o the problem to be solved and the number o threads and processors used, as seen rom Tables 1-2. Table 1. Relative Eiciency with =0.1und Number o Number o harmonics threads Table 2. Relative Eiciency with =0.01und Number Number o harmonics o threads Table 3 illustrates the relative eiciency obtained with the use o 1-3 slave processors. It can be noted that relative eiciency increases with the increase o slave processors and requency step used. The maximum relative eiciency obtained is 2.97 or a =0.001 and with the use o 3 slave processors. Table 3. Relative Eiciency obtained with PVM and 3 slave processors Numper o slave Relative Eiciency Frequency Step processors Conclusions This contribution has introduced the application o parallel processing based on multithreading, to the ast calculation o driving point impedances in electric networks. In particular, this investigation has demonstrated that the application o parallel processing techniques signiicantly increases the relative eiciency or the computation o the requency dependent system response in the orm o driving point impedances, as seen by any system busbar. The eiciency will increase in direct proportion with the system dimension, the size o problem and the number o process elements used.

6 7th WSEAS Int. Con. on MATHEMATICAL METHODS and COMPUTATIONAL TECHNIQUES IN ELECTRICAL ENGINEERING, Soia, 27-29/10/05 (pp ) Acknowledgements The authors acknowledge the Universidad Michoacana de San Nicolás de Hidalgo (UMSNH) through the División de Estudios de Posgrado o the Facultad de Ingeniería Eléctrica the acilities granted to carry-out this investigation. A. Ramos-Paz acknowledges inancial support received by the UMSNH and CONACYT to carry-out his Doctoral studies. Reerences: [1] N.R. Watson, and J. Arrillaga, Frequency- Dependent System Equivalents or Harmonic Studies and Transient Convertor Simulation, IEEE Trans.on Power Delivery, Vol. 3, No.3, pp , July [2] A. Medina, J. Arrillaga, and N.R. Watson, Detivation o Multi-Harmonic Equivalent Models o Power Networks, Fourth International Conerence on Harmonics in Power Systems, Budapest, Hungary, Oct. 1990, pp [3] A. Abur, and H. Singh, Time Domain Modeling o External Systems or Electromagnetic Transients Programs, IEEE Trans. on Power Systems, Vol. 8, No. 2, pp , May, [4] Sun Microsystems, Inc. Multihreaded Programming Guide, [5] A. Geist, A. Beguelin, and J. Dongarra, J., PVM: Parallel Virtual Machine, MIT Press [6] J. Arrillaga. And B. C. Smith. Power System Harmonic Analysis. John Wiley and Sons. [7] IEEE Recommended Practice or Industrial and Commercial Power Systems. IEEE. [8] F. Alvarado, F.; R. Betancourt, G.T. Heydt Parallel Processing in Power Systems Computation, IEEE Transactions on Power Systems, Vol. 7 No. 2. pp [9] [online]. Avaliable: [10] Sun Microsystems, Inc. Multihreaded Programming Guide. [11] C.M. Pancake, Multithreaded Languages or Scientiic and Technical Computing, Proceedings o the IEEE, Vol.2 No. 81, pp [12] I. Foster, Designing and Building Parallel Programs Addison Wesley, Appendix I Power System Component Models Synchronous Machine Z = r h+ X h generator where X r h " d Transormer generator " d generator subtransient reactance. resistence harmonic order Z = r h+ X h where X r h t " d transormer short circuit reactance. resistence harmonic order

Improvement of Sparse Computation Application in Power System Short Circuit Study

Improvement of Sparse Computation Application in Power System Short Circuit Study Volume 44, Number 1, 2003 3 Improvement o Sparse Computation Application in Power System Short Circuit Study A. MEGA *, M. BELKACEMI * and J.M. KAUFFMANN ** * Research Laboratory LEB, L2ES Department o

More information

The Solution of a FEM Equation in Frequency Domain Using a Parallel Computing with CUBLAS

The Solution of a FEM Equation in Frequency Domain Using a Parallel Computing with CUBLAS The Solution of a FEM Equation in Frequency Domain Using a Parallel Computing with CUBLAS R. Dominguez 1, A. Medina 1, and A. Ramos-Paz 1 1 Facultad de Ingeniería Eléctrica, División de Estudios de Posgrado,

More information

CHAPTER 8 UNSYMMETRICAL FAULTS

CHAPTER 8 UNSYMMETRICAL FAULTS CHAPTER 8 UNSYMMETRCAL FAULTS The sequence circuits and the sequence networks developed in the previous chapter will now be used or inding out ult current during unsymmetrical ults. Speciically we are

More information

Decibels, Filters, and Bode Plots

Decibels, Filters, and Bode Plots 23 db Decibels, Filters, and Bode Plots 23. LOGAITHMS The use o logarithms in industry is so extensive that a clear understanding o their purpose and use is an absolute necessity. At irst exposure, logarithms

More information

AH 2700A. Attenuator Pair Ratio for C vs Frequency. Option-E 50 Hz-20 khz Ultra-precision Capacitance/Loss Bridge

AH 2700A. Attenuator Pair Ratio for C vs Frequency. Option-E 50 Hz-20 khz Ultra-precision Capacitance/Loss Bridge 0 E ttenuator Pair Ratio or vs requency NEEN-ERLN 700 Option-E 0-0 k Ultra-precision apacitance/loss ridge ttenuator Ratio Pair Uncertainty o in ppm or ll Usable Pairs o Taps 0 0 0. 0. 0. 07/08/0 E E E

More information

The Effects of Mutual Coupling and Transformer Connection Type on Frequency Response of Unbalanced Three Phases Electrical Distribution System

The Effects of Mutual Coupling and Transformer Connection Type on Frequency Response of Unbalanced Three Phases Electrical Distribution System IJSRD - International Journal for Scientific Research & Development Vol. 1, Issue 9, 2013 ISSN (online): 2321-0613 The Effects of Mutual Coupling and Transformer Connection Type on Frequency Response of

More information

Program Transformations in the POLCA Project

Program Transformations in the POLCA Project Program Transormations in the POLCA Project Jan Kuper 1, Lutz Schubert 2, Kilian Kemp 2, Colin Glass 3, Daniel Rubio Bonilla 3, and Manuel Carro 4 1 University o Twente, Enschede, The Netherlands 2 Ulm

More information

Harmonic Modeling of Networks

Harmonic Modeling of Networks Harmonic Modeling of Networks Thomas H. Ortmeyer ECE Dept. Clarkson University Potsdam, NY 13699-5720 M. Fayyaz Akram Dept. of Elec. Eng. Univ. of Engineering and Technology Lahore, Pakistan Takashi Hiyama

More information

Decibels, Filters, and Bode Plots

Decibels, Filters, and Bode Plots Decibels, Filters, and Bode Plots 2 Objectives Develop conidence in the use o logarithms and decibels in the description o power and voltage levels. Become amiliar with the requency response o high- and

More information

Working zones of an AC Autonomous Switched Reluctance Generator

Working zones of an AC Autonomous Switched Reluctance Generator Working zones o an C utonomous Switched Reluctance Generator. Martínez 1, J. E. Vicuña 2, F. J. Pérez 1, B. Martín 1, E. Laloya 1, T. Pollán 1, B. Sánchez 3 y J. Lladó 3 1 Department o tronics and Communications

More information

AC Circuits Homework Set

AC Circuits Homework Set Problem 1. In an oscillating LC circuit in which C=4.0 μf, the maximum potential difference across the capacitor during the oscillations is 1.50 V and the maximum current through the inductor is 50.0 ma.

More information

EE 6501 POWER SYSTEMS UNIT I INTRODUCTION

EE 6501 POWER SYSTEMS UNIT I INTRODUCTION EE 6501 POWER SYSTEMS UNIT I INTRODUCTION PART A (2 MARKS) 1. What is single line diagram? A Single line diagram is diagrammatic representation of power system in which the components are represented by

More information

Philadelphia University Faculty of Engineering Communication and Electronics Engineering

Philadelphia University Faculty of Engineering Communication and Electronics Engineering Module: Electronics II Module Number: 6503 Philadelphia University Faculty o Engineering Communication and Electronics Engineering Ampliier Circuits-II BJT and FET Frequency Response Characteristics: -

More information

CHAPTER 2 LOAD FLOW ANALYSIS FOR RADIAL DISTRIBUTION SYSTEM

CHAPTER 2 LOAD FLOW ANALYSIS FOR RADIAL DISTRIBUTION SYSTEM 16 CHAPTER 2 LOAD FLOW ANALYSIS FOR RADIAL DISTRIBUTION SYSTEM 2.1 INTRODUCTION Load flow analysis of power system network is used to determine the steady state solution for a given set of bus loading

More information

CHAPTER 1: INTRODUCTION. 1.1 Inverse Theory: What It Is and What It Does

CHAPTER 1: INTRODUCTION. 1.1 Inverse Theory: What It Is and What It Does Geosciences 567: CHAPTER (RR/GZ) CHAPTER : INTRODUCTION Inverse Theory: What It Is and What It Does Inverse theory, at least as I choose to deine it, is the ine art o estimating model parameters rom data

More information

Parallel Numerics. Scope: Revise standard numerical methods considering parallel computations!

Parallel Numerics. Scope: Revise standard numerical methods considering parallel computations! Parallel Numerics Scope: Revise standard numerical methods considering parallel computations! Required knowledge: Numerics Parallel Programming Graphs Literature: Dongarra, Du, Sorensen, van der Vorst:

More information

ELEC4612 Power System Analysis Power Flow Analysis

ELEC4612 Power System Analysis Power Flow Analysis ELEC462 Power Sstem Analsis Power Flow Analsis Dr Jaashri Ravishankar jaashri.ravishankar@unsw.edu.au Busbars The meeting point of various components of a PS is called bus. The bus or busbar is a conductor

More information

Formulating structural matrices of equations of electric circuits containing dependent sources, with the use of the Maple program

Formulating structural matrices of equations of electric circuits containing dependent sources, with the use of the Maple program 1 st World Conerence on echnology and Engineering Education 2010 WIEE Kraków, Poland, 14-17 Septemer 2010 Formulating structural matrices o equations o electric circuits containing dependent sources, with

More information

KINGS COLLEGE OF ENGINEERING Punalkulam

KINGS COLLEGE OF ENGINEERING Punalkulam KINGS COLLEGE OF ENGINEERING Punalkulam 613 303 DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING POWER SYSTEM ANALYSIS QUESTION BANK UNIT I THE POWER SYSTEM AN OVERVIEW AND MODELLING PART A (TWO MARK

More information

Module 3 : Sequence Components and Fault Analysis

Module 3 : Sequence Components and Fault Analysis Module 3 : Sequence Components and Fault Analysis Lecture 12 : Sequence Modeling of Power Apparatus Objectives In this lecture we will discuss Per unit calculation and its advantages. Modeling aspects

More information

CHAPTER 22 ELECTROMAGNETIC INDUCTION

CHAPTER 22 ELECTROMAGNETIC INDUCTION CHAPTER 22 ELECTROMAGNETIC INDUCTION PROBLEMS 47. REASONING AND Using Equation 22.7, we find emf 2 M I or M ( emf 2 ) t ( 0.2 V) ( 0.4 s) t I (.6 A) ( 3.4 A) 9.3 0 3 H 49. SSM REASONING AND From the results

More information

The achievable limits of operational modal analysis. * Siu-Kui Au 1)

The achievable limits of operational modal analysis. * Siu-Kui Au 1) The achievable limits o operational modal analysis * Siu-Kui Au 1) 1) Center or Engineering Dynamics and Institute or Risk and Uncertainty, University o Liverpool, Liverpool L69 3GH, United Kingdom 1)

More information

Two-Layer Network Equivalent for Electromagnetic Transients

Two-Layer Network Equivalent for Electromagnetic Transients 1328 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 18, NO. 4, OCTOBER 2003 Two-Layer Network Equivalent for Electromagnetic Transients Mohamed Abdel-Rahman, Member, IEEE, Adam Semlyen, Life Fellow, IEEE, and

More information

A COMPUTER PROGRAM FOR SHORT CIRCUIT ANALYSIS OF ELECTRIC POWER SYSTEMS

A COMPUTER PROGRAM FOR SHORT CIRCUIT ANALYSIS OF ELECTRIC POWER SYSTEMS NIJOTECH VOL. 5 NO. 1 MARCH 1981 EJEBE 46 A COMPUTER PROGRAM FOR SHORT CIRCUIT ANALYSIS OF ELECTRIC POWER SYSTEMS BY G.C. EJEBE DEPARTMENT OF ELECTRICAL/ELECTRONIC ENGINEERING UNIVERSITY OF NIGERIA, NSUKKA.

More information

CHAPTER 6 STEADY-STATE ANALYSIS OF SINGLE-PHASE SELF-EXCITED INDUCTION GENERATORS

CHAPTER 6 STEADY-STATE ANALYSIS OF SINGLE-PHASE SELF-EXCITED INDUCTION GENERATORS 79 CHAPTER 6 STEADY-STATE ANALYSIS OF SINGLE-PHASE SELF-EXCITED INDUCTION GENERATORS 6.. INTRODUCTION The steady-state analysis of six-phase and three-phase self-excited induction generators has been presented

More information

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT Chapter 31: ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT 1 A charged capacitor and an inductor are connected in series At time t = 0 the current is zero, but the capacitor is charged If T is the

More information

EE Branch GATE Paper 2010

EE Branch GATE Paper 2010 Q.1 Q.25 carry one mark each 1. The value of the quantity P, where, is equal to 0 1 e 1/e 2. Divergence of the three-dimensional radial vector field is 3 1/r 3. The period of the signal x(t) = 8 is 0.4

More information

Power Quality. Guide for electrical design engineers. Power Quality. Mitigation of voltage unbalance

Power Quality. Guide for electrical design engineers. Power Quality. Mitigation of voltage unbalance Guide for electrical design engineers Power Quality Zbigniew Hanzelka GH-University of Science & Technology Mitigation of voltage unbalance U U = C = - = L U U = - U = - U Power Quality Power Quality.

More information

mywbut.com Lesson 16 Solution of Current in AC Parallel and Seriesparallel

mywbut.com Lesson 16 Solution of Current in AC Parallel and Seriesparallel esson 6 Solution of urrent in Parallel and Seriesparallel ircuits n the last lesson, the following points were described:. How to compute the total impedance/admittance in series/parallel circuits?. How

More information

HOW TO CHOOSE & PLACE DECOUPLING CAPACITORS TO REDUCE THE COST OF THE ELECTRONIC PRODUCTS

HOW TO CHOOSE & PLACE DECOUPLING CAPACITORS TO REDUCE THE COST OF THE ELECTRONIC PRODUCTS HOW TO CHOOSE & PLACE DECOUPLING CAPACITORS TO REDUCE THE COST OF THE ELECTRONIC PRODUCTS Zhen Mu and Heiko Dudek Cadence Design Systems, Inc. Kun Zhang Huawei Technologies Co., Ltd. With the edge rates

More information

Intrinsic Small-Signal Equivalent Circuit of GaAs MESFET s

Intrinsic Small-Signal Equivalent Circuit of GaAs MESFET s Intrinsic Small-Signal Equivalent Circuit o GaAs MESFET s M KAMECHE *, M FEHAM M MELIANI, N BENAHMED, S DALI * National Centre o Space Techniques, Algeria Telecom Laboratory, University o Tlemcen, Algeria

More information

SHORT QUESTIONS AND ANSWERS. Year/ Semester/ Class : III/ V/ EEE Academic Year: Subject Code/ Name: EE6501/ Power System Analysis

SHORT QUESTIONS AND ANSWERS. Year/ Semester/ Class : III/ V/ EEE Academic Year: Subject Code/ Name: EE6501/ Power System Analysis Srividya colllege of Engg & Tech,Virudhunagar Sri Vidya College of Engineering And Technology Virudhunagar 626 005 Department of Electrical and Electronics Engineering QUESTION BANK SHORT QUESTIONS AND

More information

Single Phase Parallel AC Circuits

Single Phase Parallel AC Circuits Single Phase Parallel AC Circuits 1 Single Phase Parallel A.C. Circuits (Much of this material has come from Electrical & Electronic Principles & Technology by John Bird) n parallel a.c. circuits similar

More information

MODULE-4 RESONANCE CIRCUITS

MODULE-4 RESONANCE CIRCUITS Introduction: MODULE-4 RESONANCE CIRCUITS Resonance is a condition in an RLC circuit in which the capacitive and inductive Reactance s are equal in magnitude, there by resulting in purely resistive impedance.

More information

Distributed SPICE Circuit Model for Ceramic Capacitors

Distributed SPICE Circuit Model for Ceramic Capacitors Published in Conference Record, Electrical Components Technology Conference (ECTC), Lake Buena Vista, Florida, pp. 53-58, May 9, 00. Distributed SPICE Circuit Model for Ceramic Capacitors Larry D Smith,

More information

Administrivia. Course Objectives. Overview. Lecture Notes Week markem/cs333/ 2. Staff. 3. Prerequisites. 4. Grading. 1. Theory and application

Administrivia. Course Objectives. Overview. Lecture Notes Week markem/cs333/ 2. Staff. 3. Prerequisites. 4. Grading. 1. Theory and application Administrivia 1. markem/cs333/ 2. Staff 3. Prerequisites 4. Grading Course Objectives 1. Theory and application 2. Benefits 3. Labs TAs Overview 1. What is a computer system? CPU PC ALU System bus Memory

More information

GATE 2018 [Afternoon Session]

GATE 2018 [Afternoon Session] GATE 08 [Aternoon Session].General Aptitude. Since 004 Question Q. to Q.5 carry one mark each ( k ) For what values o k given below is an integer? k 3 (A) 4, 8, 8 (B) 4, 0, 6 (C) 4, 8, 8 (D) 8, 6, 8 Ans.

More information

and cables for offshore wind connection

and cables for offshore wind connection Transient analysis of transformers and cables for offshore wind connection Bjørn Gustavsen SINTEF Energy Research Trondheim, Norway Wind power R&D seminar deep sea offshore wind: Trondheim, Norway, 20-21

More information

A Systematic Approach to Frequency Compensation of the Voltage Loop in Boost PFC Pre- regulators.

A Systematic Approach to Frequency Compensation of the Voltage Loop in Boost PFC Pre- regulators. A Systematic Approach to Frequency Compensation o the Voltage Loop in oost PFC Pre- regulators. Claudio Adragna, STMicroelectronics, Italy Abstract Venable s -actor method is a systematic procedure that

More information

Study of solar activity by measuring cosmic rays with a water Cherenkov detector

Study of solar activity by measuring cosmic rays with a water Cherenkov detector Study of solar activity by measuring cosmic rays with a water Cherenkov detector Angélica Bahena Blas 1 and Luis Villaseñor 2 1 Facultad de ciencias Físico-Matemáticas, Universidad Michoacana de San Nicolás

More information

Chapter 9 Balanced Faults, Part II. 9.4 Systematic Fault Analysis Using Bus Impedance Matrix

Chapter 9 Balanced Faults, Part II. 9.4 Systematic Fault Analysis Using Bus Impedance Matrix Chapter 9 Balanced Faults, Part II 9.4 Systematic Fault Analysis Using Bus Impedance Matrix In the previous analysis we employed the Thevenin model and ound the Thevenin voltage and impedance by means

More information

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance:

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance: RLC Series Circuit In this exercise you will investigate the effects of changing inductance, capacitance, resistance, and frequency on an RLC series AC circuit. We can define effective resistances for

More information

Unit 21 Capacitance in AC Circuits

Unit 21 Capacitance in AC Circuits Unit 21 Capacitance in AC Circuits Objectives: Explain why current appears to flow through a capacitor in an AC circuit. Discuss capacitive reactance. Discuss the relationship of voltage and current in

More information

OPTIMAL PLACEMENT AND UTILIZATION OF PHASOR MEASUREMENTS FOR STATE ESTIMATION

OPTIMAL PLACEMENT AND UTILIZATION OF PHASOR MEASUREMENTS FOR STATE ESTIMATION OPTIMAL PLACEMENT AND UTILIZATION OF PHASOR MEASUREMENTS FOR STATE ESTIMATION Xu Bei, Yeo Jun Yoon and Ali Abur Teas A&M University College Station, Teas, U.S.A. abur@ee.tamu.edu Abstract This paper presents

More information

0-2 Operations with Complex Numbers

0-2 Operations with Complex Numbers Simplify. 1. i 10 2. i 2 + i 8 3. i 3 + i 20 4. i 100 5. i 77 esolutions Manual - Powered by Cognero Page 1 6. i 4 + i 12 7. i 5 + i 9 8. i 18 Simplify. 9. (3 + 2i) + ( 4 + 6i) 10. (7 4i) + (2 3i) 11.

More information

Least-Squares Spectral Analysis Theory Summary

Least-Squares Spectral Analysis Theory Summary Least-Squares Spectral Analysis Theory Summary Reerence: Mtamakaya, J. D. (2012). Assessment o Atmospheric Pressure Loading on the International GNSS REPRO1 Solutions Periodic Signatures. Ph.D. dissertation,

More information

Sinusoidal Response of RLC Circuits

Sinusoidal Response of RLC Circuits Sinusoidal Response of RLC Circuits Series RL circuit Series RC circuit Series RLC circuit Parallel RL circuit Parallel RC circuit R-L Series Circuit R-L Series Circuit R-L Series Circuit Instantaneous

More information

4 Fault Calculations. Introduction 4.1. Three phase fault calculations 4.2. Symmetrical component analysis 4.3 of a three-phase network

4 Fault Calculations. Introduction 4.1. Three phase fault calculations 4.2. Symmetrical component analysis 4.3 of a three-phase network ault Calculations ntroduction 4. Three phase fault calculations 4. Symmetrical component analysis 4.3 of a three-phase network Equations and network connections 4.4 for various types of faults Current

More information

Dynamic Modeling and Control of Shunt Active Power Filter

Dynamic Modeling and Control of Shunt Active Power Filter Dynamic Modeling and Control o Shunt Active Power Filter Utkal Ranjan Muduli Electrical Engineering Indian Institute o Technology Gandhinagar Gujarat, India-82424 Email: utkalranjan muduli@iitgn.ac.in

More information

0-2 Operations with Complex Numbers

0-2 Operations with Complex Numbers Simplify. 1. i 10 1 2. i 2 + i 8 0 3. i 3 + i 20 1 i esolutions Manual - Powered by Cognero Page 1 4. i 100 1 5. i 77 i 6. i 4 + i 12 2 7. i 5 + i 9 2i esolutions Manual - Powered by Cognero Page 2 8.

More information

TIME DEPENDENCE OF SHELL MODEL CALCULATIONS 1. INTRODUCTION

TIME DEPENDENCE OF SHELL MODEL CALCULATIONS 1. INTRODUCTION Mathematical and Computational Applications, Vol. 11, No. 1, pp. 41-49, 2006. Association for Scientific Research TIME DEPENDENCE OF SHELL MODEL CALCULATIONS Süleyman Demirel University, Isparta, Turkey,

More information

CHAPTER 3 ANALYSIS OF THREE PHASE AND SINGLE PHASE SELF-EXCITED INDUCTION GENERATORS

CHAPTER 3 ANALYSIS OF THREE PHASE AND SINGLE PHASE SELF-EXCITED INDUCTION GENERATORS 26 CHAPTER 3 ANALYSIS OF THREE PHASE AND SINGLE PHASE SELF-EXCITED INDUCTION GENERATORS 3.1. INTRODUCTION Recently increase in energy demand and limited energy sources in the world caused the researchers

More information

) t 0(q+ t ) dt n t( t) dt ( rre i dq t 0 u = = t l C t) t) a i( ( q tric c le E

) t 0(q+ t ) dt n t( t) dt ( rre i dq t 0 u = = t l C t) t) a i( ( q tric c le E EE70 eview Electrical Current i ( t ) dq ( t ) dt t q ( t ) i ( t ) dt + t 0 q ( t 0 ) Circuit Elements An electrical circuit consists o circuit elements such as voltage sources, resistances, inductances

More information

APPENDIX B MATRIX NOTATION. The Definition of Matrix Notation is the Definition of Matrix Multiplication B.1 INTRODUCTION

APPENDIX B MATRIX NOTATION. The Definition of Matrix Notation is the Definition of Matrix Multiplication B.1 INTRODUCTION APPENDIX B MAIX NOAION he Deinition o Matrix Notation is the Deinition o Matrix Mltiplication B. INODUCION { XE "Matrix Mltiplication" }{ XE "Matrix Notation" }he se o matrix notations is not necessary

More information

Distributed Optimization Methods for Wide-Area Damping Control of Power System Oscillations

Distributed Optimization Methods for Wide-Area Damping Control of Power System Oscillations Preprints o the 9th World Congress The International Federation o Automatic Control Cape Town, South Arica. August 4-9, 4 Distributed Optimization Methods or Wide-Area Damping Control o Power System Oscillations

More information

Introduction to Simulation - Lecture 2. Equation Formulation Methods. Jacob White. Thanks to Deepak Ramaswamy, Michal Rewienski, and Karen Veroy

Introduction to Simulation - Lecture 2. Equation Formulation Methods. Jacob White. Thanks to Deepak Ramaswamy, Michal Rewienski, and Karen Veroy Introduction to Simulation - Lecture Equation Formulation Methods Jacob White Thanks to Deepak Ramaswamy, Michal Rewienski, and Karen Veroy Outline Formulating Equations rom Schematics Struts and Joints

More information

Electrical and Magnetic Modelling of a Power Transformer: A Bond Graph Approach

Electrical and Magnetic Modelling of a Power Transformer: A Bond Graph Approach Vol:6, No:9, Electrical and Magnetic Modelling of a Power Transformer: A Bond Graph Approach Gilberto Gonzalez-A, Dunia Nuñez-P International Science Index, Electrical and Computer Engineering Vol:6, No:9,

More information

ATP-EMTP evaluation of relaying algorithms for series-compensated line

ATP-EMTP evaluation of relaying algorithms for series-compensated line AP-EMP evaluation o relaying algorithms or series-compensated line M. M. Saha, E. osolowski, J. Izykowski, P. Pierz Abstract A group o the algorithms aimed at measuring a ault-loop impedance or digital

More information

arxiv:astro-ph/ v1 15 Sep 1999

arxiv:astro-ph/ v1 15 Sep 1999 Baltic Astronomy, vol.8, XXX XXX, 1999. THE ASTEROSEISMOLOGY METACOMPUTER arxiv:astro-ph/9909264v1 15 Sep 1999 T.S. Metcalfe and R.E. Nather Department of Astronomy, University of Texas, Austin, TX 78701

More information

GATE 2010 Electrical Engineering

GATE 2010 Electrical Engineering GATE 2010 Electrical Engineering Q.1 Q.25 carry one mark each 1. The value of the quantity P, where P = xe dx, is equal to (A) 0 (B) 1 (C) e (D) 1/e 2. Divergence of the three-dimensional radial vector

More information

AN EFFICIENT APPROACH FOR ANALYSIS OF ISOLATED SELF EXCITED INDUCTION GENERATOR

AN EFFICIENT APPROACH FOR ANALYSIS OF ISOLATED SELF EXCITED INDUCTION GENERATOR AN EFFICIENT APPROACH FOR ANALYSIS OF ISOLATED SELF EXCITED INDUCTION GENERATOR Deepika 1, Pankaj Mehara Assistant Professor, Dept. of EE, DCRUST, Murthal, India 1 PG Student, Dept. of EE, DCRUST, Murthal,

More information

An Alternative Poincaré Section for Steady-State Responses and Bifurcations of a Duffing-Van der Pol Oscillator

An Alternative Poincaré Section for Steady-State Responses and Bifurcations of a Duffing-Van der Pol Oscillator An Alternative Poincaré Section or Steady-State Responses and Biurcations o a Duing-Van der Pol Oscillator Jang-Der Jeng, Yuan Kang *, Yeon-Pun Chang Department o Mechanical Engineering, National United

More information

Chapter 8: Unsymmetrical Faults

Chapter 8: Unsymmetrical Faults Chapter 8: Unsymmetrical Faults Introduction The sequence circuits and the sequence networks developed in the previous chapter will now be used for finding out fault current during unsymmetrical faults.

More information

Analog Computing Technique

Analog Computing Technique Analog Computing Technique by obert Paz Chapter Programming Principles and Techniques. Analog Computers and Simulation An analog computer can be used to solve various types o problems. It solves them in

More information

Module 4. Single-phase AC circuits. Version 2 EE IIT, Kharagpur

Module 4. Single-phase AC circuits. Version 2 EE IIT, Kharagpur Module 4 Single-phase circuits ersion EE T, Kharagpur esson 6 Solution of urrent in Parallel and Seriesparallel ircuits ersion EE T, Kharagpur n the last lesson, the following points were described:. How

More information

LCR Series Circuits. AC Theory. Introduction to LCR Series Circuits. Module. What you'll learn in Module 9. Module 9 Introduction

LCR Series Circuits. AC Theory. Introduction to LCR Series Circuits. Module. What you'll learn in Module 9. Module 9 Introduction Module 9 AC Theory LCR Series Circuits Introduction to LCR Series Circuits What you'll learn in Module 9. Module 9 Introduction Introduction to LCR Series Circuits. Section 9.1 LCR Series Circuits. Amazing

More information

Parasitics in Power Electronics Avoid them or Turn Enemies into Friends

Parasitics in Power Electronics Avoid them or Turn Enemies into Friends ECPE Workshop Future Trends or Power Semiconductors ETH Zürich, 27.1.212 Parasitics in Power Electronics Avoid them or Turn Enemies into Friends Fraunhoer Institute or Integrated Systems and Device Technology

More information

Clock Synchronization

Clock Synchronization What s it or? Temporal ordering o events produced by concurrent processes Clock Synchronization Synchronization between senders and receivers o messages Coordination o joint activity Serialization o concurrent

More information

Power Spectral Analysis of Elementary Cellular Automata

Power Spectral Analysis of Elementary Cellular Automata Power Spectral Analysis o Elementary Cellular Automata Shigeru Ninagawa Division o Inormation and Computer Science, Kanazawa Institute o Technology, 7- Ohgigaoka, Nonoichi, Ishikawa 92-850, Japan Spectral

More information

ADIKAVI NANNAYA UNIVERSITY::RAJAMAHENDRAVARAM II BTech (EIE) I Semester BTEIE301 DIGITAL LOGIC DESIGN MODEL QUESTION PAPER Time:3 hrs. Max.

ADIKAVI NANNAYA UNIVERSITY::RAJAMAHENDRAVARAM II BTech (EIE) I Semester BTEIE301 DIGITAL LOGIC DESIGN MODEL QUESTION PAPER Time:3 hrs. Max. II BTech (EIE) I Semester BTEIE301 DIGITAL LOGIC DESIGN SECTION-A (4 X 15 = 60 M) 1. a) List out the Basic Theorems and Properties of Boolean Algebra. Justify with the Proof (15M) b) Explain how 1's complement

More information

ADVANCEMENTS IN TRANSMISSION LINE FAULT LOCATION

ADVANCEMENTS IN TRANSMISSION LINE FAULT LOCATION University o Kentucy UKnowledge University o Kentucy Doctoral Dissertations Graduate School 2010 ADVANCEMENTS IN TRANSMISSION LINE FAULT LOCATION Ning Kang University o Kentucy, glucenama@hotmail.com Clic

More information

Limiting the Velocity in the Particle Swarm Optimization Algorithm

Limiting the Velocity in the Particle Swarm Optimization Algorithm Limiting the Velocity in the Particle Swarm Optimization Algorithm Julio Barrera 1, Osiris Álvarez-Bajo 2, Juan J. Flores 3, Carlos A. Coello Coello 4 1 Universidad Michoacana de San Nicolás de Hidalgo,

More information

Advanced Signal Processing Techniques for Feature Extraction in Data Mining

Advanced Signal Processing Techniques for Feature Extraction in Data Mining Volume 9 o.9, April 0 Advanced Signal Processing Techniques or Feature Extraction in Data Mining Maya ayak Proessor Orissa Engineering College BPUT, Bhubaneswar Bhawani Sankar Panigrahi Asst. Proessor

More information

Harmonic Domain Periodic Steady State Modeling of Power Electronics Apparatus: SVC and TCSC

Harmonic Domain Periodic Steady State Modeling of Power Electronics Apparatus: SVC and TCSC 960 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 18, NO. 3, JULY 2003 Harmonic Domain Periodic Steady State Modeling of Power Electronics Apparatus: SVC and TCSC Leonardo T. G. Lima, Member, IEEE, Adam Semlyen,

More information

EE 581 Power Systems. Admittance Matrix: Development, Direct and Iterative solutions

EE 581 Power Systems. Admittance Matrix: Development, Direct and Iterative solutions EE 581 Power Systems Admittance Matrix: Development, Direct and Iterative solutions Overview and HW # 8 Chapter 2.4 Chapter 6.4 Chapter 6.1-6.3 Homework: Special Problem 1 and 2 (see handout) Overview

More information

Core Technology Group Application Note 3 AN-3

Core Technology Group Application Note 3 AN-3 Measuring Capacitor Impedance and ESR. John F. Iannuzzi Introduction In power system design, capacitors are used extensively for improving noise rejection, lowering power system impedance and power supply

More information

Circuit Analysis-II. Circuit Analysis-II Lecture # 5 Monday 23 rd April, 18

Circuit Analysis-II. Circuit Analysis-II Lecture # 5 Monday 23 rd April, 18 Circuit Analysis-II Capacitors in AC Circuits Introduction ü The instantaneous capacitor current is equal to the capacitance times the instantaneous rate of change of the voltage across the capacitor.

More information

APPENDIX: TRANSMISSION LINE MODELLING AND PORT-BASED CIRCUITS

APPENDIX: TRANSMISSION LINE MODELLING AND PORT-BASED CIRCUITS APPENDIX: TRANSMISSION LINE MODELLING AND PORT-BASED CIRCUITS A. MODELLING TRANSMISSION LINES THROUGH CIRCUITS In Chapter 5 we introduced the so-called basic rule for modelling circuital systems through

More information

Power Grid Partitioning: Static and Dynamic Approaches

Power Grid Partitioning: Static and Dynamic Approaches Power Grid Partitioning: Static and Dynamic Approaches Miao Zhang, Zhixin Miao, Lingling Fan Department of Electrical Engineering University of South Florida Tampa FL 3320 miaozhang@mail.usf.edu zmiao,

More information

CORRESPONDENCE ANALYSIS

CORRESPONDENCE ANALYSIS CORRESPONDENCE ANALYSIS INTUITIVE THEORETICAL PRESENTATION BASIC RATIONALE DATA PREPARATION INITIAL TRANSFORAMATION OF THE INPUT MATRIX INTO PROFILES DEFINITION OF GEOMETRIC CONCEPTS (MASS, DISTANCE AND

More information

Ultra Fast Calculation of Temperature Profiles of VLSI ICs in Thermal Packages Considering Parameter Variations

Ultra Fast Calculation of Temperature Profiles of VLSI ICs in Thermal Packages Considering Parameter Variations Ultra Fast Calculation o Temperature Proiles o VLSI ICs in Thermal Packages Considering Parameter Variations Je-Hyoung Park, Virginia Martín Hériz, Ali Shakouri, and Sung-Mo Kang Dept. o Electrical Engineering,

More information

Physics for Scientists & Engineers 2

Physics for Scientists & Engineers 2 Electromagnetic Oscillations Physics for Scientists & Engineers Spring Semester 005 Lecture 8! We have been working with circuits that have a constant current a current that increases to a constant current

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous)

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 ELECTRICAL AND ELECTRONICS ENGINEERING QUESTION BANK Course Name : Computer Methods in Power Systems Course Code : A60222

More information

Miniature Electronically Trimmable Capacitor V DD. Maxim Integrated Products 1

Miniature Electronically Trimmable Capacitor V DD. Maxim Integrated Products 1 19-1948; Rev 1; 3/01 Miniature Electronically Trimmable Capacitor General Description The is a fine-line (geometry) electronically trimmable capacitor (FLECAP) programmable through a simple digital interface.

More information

B.E. / B.Tech. Degree Examination, April / May 2010 Sixth Semester. Electrical and Electronics Engineering. EE 1352 Power System Analysis

B.E. / B.Tech. Degree Examination, April / May 2010 Sixth Semester. Electrical and Electronics Engineering. EE 1352 Power System Analysis B.E. / B.Tech. Degree Examination, April / May 2010 Sixth Semester Electrical and Electronics Engineering EE 1352 Power System Analysis (Regulation 2008) Time: Three hours Answer all questions Part A (10

More information

EE2351 POWER SYSTEM ANALYSIS UNIT I: INTRODUCTION

EE2351 POWER SYSTEM ANALYSIS UNIT I: INTRODUCTION EE2351 POWER SYSTEM ANALYSIS UNIT I: INTRODUCTION PART: A 1. Define per unit value of an electrical quantity. Write equation for base impedance with respect to 3-phase system. 2. What is bus admittance

More information

AC Source and RLC Circuits

AC Source and RLC Circuits X X L C = 2π fl = 1/2π fc 2 AC Source and RLC Circuits ( ) 2 Inductive reactance Capacitive reactance Z = R + X X Total impedance L C εmax Imax = Z XL XC tanφ = R Maximum current Phase angle PHY2054: Chapter

More information

Electrical Circuits Lab Series RC Circuit Phasor Diagram

Electrical Circuits Lab Series RC Circuit Phasor Diagram Electrical Circuits Lab. 0903219 Series RC Circuit Phasor Diagram - Simple steps to draw phasor diagram of a series RC circuit without memorizing: * Start with the quantity (voltage or current) that is

More information

AN INDEPENDENT LOOPS SEARCH ALGORITHM FOR SOLVING INDUCTIVE PEEC LARGE PROBLEMS

AN INDEPENDENT LOOPS SEARCH ALGORITHM FOR SOLVING INDUCTIVE PEEC LARGE PROBLEMS Progress In Electromagnetics Research M, Vol. 23, 53 63, 2012 AN INDEPENDENT LOOPS SEARCH ALGORITHM FOR SOLVING INDUCTIVE PEEC LARGE PROBLEMS T.-S. Nguyen *, J.-M. Guichon, O. Chadebec, G. Meunier, and

More information

CHAPTER 5 STEADY-STATE ANALYSIS OF THREE-PHASE SELF-EXCITED INDUCTION GENERATORS

CHAPTER 5 STEADY-STATE ANALYSIS OF THREE-PHASE SELF-EXCITED INDUCTION GENERATORS 6 CHAPTER 5 STEADY-STATE ANALYSIS OF THREE-PHASE SELF-EXCITED INDUCTION GENERATORS 5.. INTRODUCTION The steady-state analysis of six-phase SEIG has been discussed in the previous chapters. In this chapter,

More information

Last Comments on Short-Circuit Analysis

Last Comments on Short-Circuit Analysis Last Comments on Short-Circuit Analysis.0 Exam summary Work all HW problems and know them; Read notes Read related book sections Topics:. Symmetrical faults (no book section) 2. Zbus building (9.3-9.6)

More information

Incorporation of Asynchronous Generators as PQ Model in Load Flow Analysis for Power Systems with Wind Generation

Incorporation of Asynchronous Generators as PQ Model in Load Flow Analysis for Power Systems with Wind Generation Incorporation of Asynchronous Generators as PQ Model in Load Flow Analysis for Power Systems with Wind Generation James Ranjith Kumar. R, Member, IEEE, Amit Jain, Member, IEEE, Power Systems Division,

More information

Operating Systems. VII. Synchronization

Operating Systems. VII. Synchronization Operating Systems VII. Synchronization Ludovic Apvrille ludovic.apvrille@telecom-paristech.fr Eurecom, office 470 http://soc.eurecom.fr/os/ @OS Eurecom Outline Synchronization issues 2/22 Fall 2017 Institut

More information

A Rough Sets Based Classifier for Induction Motors Fault Diagnosis

A Rough Sets Based Classifier for Induction Motors Fault Diagnosis A ough Sets Based Classiier or Induction Motors Fault Diagnosis E. L. BONALDI, L. E. BOGES DA SILVA, G. LAMBET-TOES AND L. E. L. OLIVEIA Electronic Engineering Department Universidade Federal de Itajubá

More information

Australian Journal of Basic and Applied Sciences. General Fault Admittance Method Solution of a Balanced Line-to-Line-to-Line Fault

Australian Journal of Basic and Applied Sciences. General Fault Admittance Method Solution of a Balanced Line-to-Line-to-Line Fault Australian Journal of Basic and Applied Sciences, 8() January 4, Pages: 8-47 AENSI Journals Australian Journal of Basic and Applied Sciences Journal home page: www.ajbasweb.com General Fault Admittance

More information

QUESTION BANK SUBJECT: NETWORK ANALYSIS (10ES34)

QUESTION BANK SUBJECT: NETWORK ANALYSIS (10ES34) QUESTION BANK SUBJECT: NETWORK ANALYSIS (10ES34) NOTE: FOR NUMERICAL PROBLEMS FOR ALL UNITS EXCEPT UNIT 5 REFER THE E-BOOK ENGINEERING CIRCUIT ANALYSIS, 7 th EDITION HAYT AND KIMMERLY. PAGE NUMBERS OF

More information

Proceedings Bidirectional Named Sets as Structural Models of Interpersonal Communication

Proceedings Bidirectional Named Sets as Structural Models of Interpersonal Communication Proceedings Bidirectional Named Sets as Structural Models o Interpersonal Communication Mark Burgin Department o Computer Science, University o Caliornia, Los Angeles, 520 Portola Plaza, Los Angeles, CA

More information

UNIVERSITY OF MASSACHUSETTS LOWELL DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING SYLLABUS FOR THE DOCTORAL QUALIFYING EXAM

UNIVERSITY OF MASSACHUSETTS LOWELL DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING SYLLABUS FOR THE DOCTORAL QUALIFYING EXAM UNIVERSITY OF MASSACHUSETTS LOWELL DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING SYLLABUS FOR THE DOCTORAL QUALIFYING EXAM Ph.D/D.Eng. Electrical Engineering Option These are the general topics for the

More information

CHAPTER 2 CAPACITANCE REQUIREMENTS OF SIX-PHASE SELF-EXCITED INDUCTION GENERATORS

CHAPTER 2 CAPACITANCE REQUIREMENTS OF SIX-PHASE SELF-EXCITED INDUCTION GENERATORS 9 CHAPTER 2 CAPACITANCE REQUIREMENTS OF SIX-PHASE SELF-EXCITED INDUCTION GENERATORS 2.. INTRODUCTION Rapidly depleting rate of conventional energy sources, has led the scientists to explore the possibility

More information

General Case for Deriving Four Pole Coefficients for Gas Pulsation

General Case for Deriving Four Pole Coefficients for Gas Pulsation urdue University urdue e-ubs International Compressor Engineering Conerence School o Mechanical Engineering 21 General Case or Deriving Four ole Coeicients or Gas ulsation Nasir Bilal urdue University

More information