Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Introduction to Power Systems

Size: px
Start display at page:

Download "Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Introduction to Power Systems"

Transcription

1 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Introduction to Power Systems Problem Set 5 Solutions February 27, 2011 Problem 1: The inductance and phase velocity are: L = CZ0 2 = µHy/m 1 1 c = = m/S LC Before the load is connected, voltage is uniform and equal to the source and current is zero. So: + = = I + = I = 2 2 2Z 0 2Z0 When the switch is thrown, at the load end, becomes zero, since the load end is matched to the line. For the first interval, the situation is as shown in Figure 1. The voltage at the matched end is +. When the reverse going pulse gets to the sending end, + becomes equal to the source, since is equal to zero. That takes another period of time to propagate to the receiving end, at which point the voltabe is equal to sending end voltage. This is shown in Figure 2. Transit time is: And it takes 2T t for the transient to finish. L 100,000 T t = = 600µS u

2 I + I + + I I + I x=l + + I Figure 1: Pulses along the line I r Z 0 2 Z 0 2L u t Figure 2: Termination oltage 2

3 Problem 2: oltage at the receiving end and impedance at the sending end are: r Z s Z t = s Zt cos kl + jz 0 sin kl Z t cos kl + jz 0 sin kl = Z 0 jzt sin kl + Z 0 cos kl If the line is open at the receiving end, S r = cos kl = = jz t coth kl Z s The rest of the calculations are carried out by Matlab (source appended) and the results are: Line Open at Receiving End Receiving end voltage = Sending End Current = A Line loaded with 60 Ohms Receiving End oltage = Sending end Current = A Receiving end Power = W Sending End Real Power = W Sending End Reactive Power = AR 3

4 Problem 3: (Chapter 6, Problem 6 from text) 13,800 Turns ratio is N = If the primary voltages are: j 2π B = e 3 j 2 π C = e 3 Then, on the secondary side,with respect to Figure 3: bc = 2π j e 3 N ca = j e 2π 3 N ab = ca bc = N I b b i C c C i B B a I c I a Figure 3: Equivalent Circuit with Currents The actual phase voltages are shown in Figure 4 c bc ca b a ab Figure 4: Secondary Side oltages The phase voltages are: 4

5 a = e j π 6 3 N b = j e 5π 6 3N c = e j π 2 3N If the loads are unity power factor and of magnitude I 0, On the wye side of the transformer: This is shown in Figure 5 Ia = 0 6 Ib = 5π j I 0 e 6 j π I e j π I c = I + 0e 2 I A = 0 I b I 0 B = = e N N 5π j I 6 I a I 0 j 5π IC = = e 6 N N C I C I B A B Figure 5: Primary Side Currents As a test, we can see if the real and reactive powers are the same on the primary and secondary sides. On the primary side: P A = 0 I 0 j P e π B = 6 N 5

6 I 0 j P π C = e 6 N 3 I0 P A + P B + P C = N On the secondary side, power is: I 0 P = 3 = 3N 3 I0 N A few numbers are: Problem 6.6 Turns Ratio = Primary Power = j 0 Secondary Powr = j e-28 Finally, if the ground is not connected on the primary side, the thing becomes a singla phase circuit, with B B C = j 3 Then: BC = CA = j sqrt3 2N And this drives a 3 resistance of R eq = 2R. 6

7 Problem 4: Essentially the whole story is contained in the attached script. The first part is straightforward. The second part is done by first doing the delta-wye equivalent, finding the currents in the delta, re-assembling them into the wye and then transforming them across the transformer. The third part is a little tricky, but note that the voltages can be found by: a R a + R n R n R n I a b = R n R b + R n R n I b c R n R n R c + R n I c This is easily inverted in Matlab to get the currents. A summary of what is calculated is: Turns Ratio = Line-Neutral oltage = Phase C current = Phase C real power = Phase A real power = 8000 Low side power = High side power = High side reactive = >> open p4.m >> p6_6 Problem 6.6 Turns Ratio = Primary Power = j 0 Secondary Powr = j e-28 >> p6_7 Part A: Secondary Side Grounded Secondary Currents Ia = j 0 = angle 0 Ib = j -8 = angle Ic = j 8 = angle Primary Currents IA = j = angle IB = j = angle IC = e-16 + j = angle Check: Primary P = 6656 Q = 0 Secondary P = 6656 Q = 0 Part B: Secondary Side Ungrounded Rab = 130 Rbc = 78 Rca = 130 Secondary Currents Ia = j e-16 = angle e-16 Ib = j -8 = angle Ic = j 8 = angle Primary Currents IA = j = angle IB = j = angle

8 IC = e-16 + j = angle Check: Primary P = 6498 Q = 0 Secondary P = 6498 Q = 0 Part C: secondary grounded through a resistor Secondary Currents Ia = j e-16 = angle e-17 Ib = j -8 = angle Ic = j 8 = angle Primary Currents IA = j = angle IB = j = angle IC = e-16 + j = angle Check: Primary P = 6583 Q = 0 Secondary P = 6583 Q = 0 Note that Matlab sometimes gives an odd rendition of zero (as in something times 10 17, Problem 5 Problem 7-10 from the text R 1 = R 2 = 1 R 3 = R 4 = 1 So 4 GMD = m 8

9 Scripts % Problem Set 5 Problem 2 2/26/11 L = 1e5; % line length 100 km Z0 = 30; % characteristic impedance Cap = 2e-10; % capacitance om = 120*pi; % frequency s = 45000; % sending end voltage Ind = Cap * Z0^2; % line inductance u = 1/sqrt(Ind*Cap); % phase velocity k = om/u; % wavenumber %part 1: line open r = s / cos(k*l); % receiving end voltage Is = j*tan(k*l)*s/z0; % sending end voltage fprintf( Line Open at Receiving End\n ) fprintf( Receiving end voltage = %10.1f \n, r) fprintf( Sending End Current = %10.1f A\n, abs(is)) % part 2: resistive loading at 60 ohms Zr = 60; r = s * Zr/(Zr * cos(k*l) + j*z0 * sin(k*l)); Zs = Z0 * (Zr*cos(k*L) + j*z0*sin(k*l))/(j*zr*sin(k*l) + Z0 * cos(k*l)); Is = s/zs; Ss = s*conj(is); Ps = real(ss); Qs = imag(ss); Pr = abs(r)^2/zr; fprintf( Line loaded with 60 Ohms\n ) fprintf( Receiving End oltage = %10.1f \n, abs(r)) fprintf( Sending end Current = %10.1f A\n, abs(is)) fprintf( Receiving end Power = %10.1f W\n, Pr) fprintf( Sending End Real Power = %10.1f W\n, Ps) fprintf( Sending End Reactive Power = %10.1f AR\n, Qs) % chapter 6, problem 6 _0 = 13800/sqrt(3); N = _0/480; _A = _0; _B = _0 * exp(-j*2*pi/3); _C = _0 * exp(j*2*pi/3); 9

10 _s = 480/sqrt(3); _a = _s * exp(-j*pi/6); _b = _s * exp(-j*5*pi/6); _c = _s * exp(j*pi/2); I_a = 100 * exp(-j*pi/6); I_b = 100 * exp(-j*5*pi/6); I_c = 100 * exp(j*pi/2); S_s = _a * conj(i_a) + _b * conj(i_b) + _c * conj(i_c); I_P = 100/N; I_B = I_P * exp(-j*5*pi/6); I_C = I_P * exp(j*5*pi/6); S_P = _B * conj(i_b) + _C * conj(i_c); fprintf( Problem 6.6\n ) fprintf( Turns Ratio = %g\n, N) fprintf( Primary Power = %g + j %g\n, real(s_p), imag(s_p)) fprintf( Secondary Powr = %g + j %g\n, real(s_s), imag(s_s)) % Problem Set 5, Problem 4 (6.7 from Text) % This is mostly book-keeping p = 4160; s = 480; sn = s/sqrt(3); Ra = 50; Rb = 30; Rc = 30; N = p/sn; a = exp(j*2*pi/3); % primary side, line-line % secondary side, line-line % secondary side, line-neutral % three phase resistors % turns ratio: delta-wye % 120 degree rotation % Preliminary: Primary Side pn = p/sqrt(3); A = pn * exp(-j*pi/6); % connection rotates +30deg B = A*a^2; C = A*a; % part a: secondary side grounded a = sn; b = sn*a^2; c = sn*a; % set real to the secondary side 10

11 Ia = a/ra; Ib = b/rb; Ic = c/rc; SS = a*conj(ia)+b*conj(ib)+c*conj(ic); % translate to primary side: IA = (Ia-Ic)/N; IB = (Ib-Ia)/N; IC = (Ic-Ib)/N; SA = A*conj(IA); SB = B*conj(IB); SC = C*conj(IC); SP = SA + SB + SC; % output fprintf( Part A: Secondary Side Grounded\n ) fprintf( Secondary Currents\n ) fprintf( Ia = %g + j %g = %g angle %g\n, real(ia), imag(ia), abs(ia), angle(ia)) fprintf( Ib = %g + j %g = %g angle %g\n, real(ib), imag(ib), abs(ib), angle(ib)) fprintf( Ic = %g + j %g = %g angle %g\n, real(ic), imag(ic), abs(ic), angle(ic)) fprintf( Primary Currents\n ) fprintf( IA = %g + j %g = %g angle %g\n, real(ia), imag(ia), abs(ia), angle(ia)) fprintf( IB = %g + j %g = %g angle %g\n, real(ib), imag(ib), abs(ib), angle(ib)) fprintf( IC = %g + j %g = %g angle %g\n, real(ic), imag(ic), abs(ic), angle(ic)) fprintf( Check: Primary P = %10.0f Q = %10.0f Secondary P = %10.0f Q = %10.0f\n, real(sp), ima % Part B: secondary side ungrounded Rab = (Ra*Rb + Ra*Rc + Rb*Rc)/Rc; Rbc = (Ra*Rb + Ra*Rc + Rb*Rc)/Ra; Rca = (Ra*Rb + Ra*Rc + Rb*Rc)/Rb; % find equivalent delta fprintf( Part B: Secondary Side Ungrounded\n ) fprintf( Rab = %g Rbc = %g Rca = %g\n, Rab, Rbc, Rca) Iab = (a - b)/rab; Ibc = (b - c)/rbc; Ica = (c - a)/rca; Ia = Iab - Ica; Ib = Ibc - Iab; % currents in the delta % now get currents in the wye 11

12 Ic = Ica - Ibc; % repeat the rest of part a: it is now the same SS = a*conj(ia)+b*conj(ib)+c*conj(ic); % translate to primary side: IA = (Ia-Ic)/N; IB = (Ib-Ia)/N; IC = (Ic-Ib)/N; SA = A*conj(IA); SB = B*conj(IB); SC = C*conj(IC); SP = SA + SB + SC; fprintf( Secondary Currents\n ) fprintf( Ia = %g + j %g = %g angle %g\n, real(ia), imag(ia), abs(ia), angle(ia)) fprintf( Ib = %g + j %g = %g angle %g\n, real(ib), imag(ib), abs(ib), angle(ib)) fprintf( Ic = %g + j %g = %g angle %g\n, real(ic), imag(ic), abs(ic), angle(ic)) fprintf( Primary Currents\n ) fprintf( IA = %g + j %g = %g angle %g\n, real(ia), imag(ia), abs(ia), angle(ia)) fprintf( IB = %g + j %g = %g angle %g\n, real(ib), imag(ib), abs(ib), angle(ib)) fprintf( IC = %g + j %g = %g angle %g\n, real(ic), imag(ic), abs(ic), angle(ic)) fprintf( Check: Primary P = %10.0f Q = %10.0f Secondary P = %10.0f Q = %10.0f\n, real(sp), ima % Part C: Secondary grounded through a resistor Rn = 10; RM = [Ra+Rn Rn Rn;Rn Rb+Rn Rn;Rn Rn Rc+Rn]; v = [a; b; c;]; Is = RM\v; % matrix of resistances % vector of voltages % these should be the currents Ia = Is(1); Ib = Is(2); Ic = Is(3); % repeat the rest of part a: it is now the same SS = a*conj(ia)+b*conj(ib)+c*conj(ic); % translate to primary side: IA = (Ia-Ic)/N; 12

13 IB = (Ib-Ia)/N; IC = (Ic-Ib)/N; SA = A*conj(IA); SB = B*conj(IB); SC = C*conj(IC); SP = SA + SB + SC; fprintf( Part C: secondary grounded through a resistor\n ) fprintf( Secondary Currents\n ) fprintf( Ia = %g + j %g = %g angle %g\n, real(ia), imag(ia), abs(ia), angle(ia)) fprintf( Ib = %g + j %g = %g angle %g\n, real(ib), imag(ib), abs(ib), angle(ib)) fprintf( Ic = %g + j %g = %g angle %g\n, real(ic), imag(ic), abs(ic), angle(ic)) fprintf( Primary Currents\n ) fprintf( IA = %g + j %g = %g angle %g\n, real(ia), imag(ia), abs(ia), angle(ia)) fprintf( IB = %g + j %g = %g angle %g\n, real(ib), imag(ib), abs(ib), angle(ib)) fprintf( IC = %g + j %g = %g angle %g\n, real(ic), imag(ic), abs(ic), angle(ic)) fprintf( Check: Primary P = %10.0f Q = %10.0f Secondary P = %10.0f Q = %10.0f\n, real(sp), ima 13

14 MIT OpenCourseWare / Introduction to Electric Power Systems Spring 2011 For information about citing these materials or our Terms of Use, visit:

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science.01/.90 Introduction to Power Systems Problem Set 4 Solutions February 28, 2007 Problem 1: Part 1: Chapter,

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.61 / 6.69 Introduction to Electric Power Systems Spring 27 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Problem Set 3 Solutions February 14, 2011 Problem 1: Voltage across

More information

Ch 8. Three-phase systems

Ch 8. Three-phase systems Ch 8. Three-ase systems Lecture outcomes (what you are supposed to learn): Generation of three-ase voltages Connection of three-ase circuits Wye-Delta transformation Power of three-ase connected loads

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.061 / 6.690 Introduction to Electric Power Systems Spring 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.6 / 6.69 Introduction to Electric Power Systems Spring 7 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts

More information

Lecture (5) Power Factor,threephase circuits, and Per Unit Calculations

Lecture (5) Power Factor,threephase circuits, and Per Unit Calculations Lecture (5) Power Factor,threephase circuits, and Per Unit Calculations 5-1 Repeating the Example on Power Factor Correction (Given last Class) P? Q? S? Light Motor From source 1000 volts @ 60 Htz 10kW

More information

Chapter 2-3 Transformers

Chapter 2-3 Transformers Principles of Electric Machines and Power Electronics Chapter 2-3 Transformers Third Edition P. C. Sen Auto transformer Per unit system S b = S rate V b1 = V rate1 V b2 = V rate2 S b I b1 = = S rate =

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.685 Electric Machines Problem Set 4 Solution October 5, 201 Problem 1: No secrets here. The script to do

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.061 / 6.690 Introduction to Electric Power Systems Spring 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Problem Set 9 Solutions April 18, 011 Problem 1: Chapter 9, Problem

More information

LO 1: Three Phase Circuits

LO 1: Three Phase Circuits Course: EEL 2043 Principles of Electric Machines Class Instructor: Dr. Haris M. Khalid Email: hkhalid@hct.ac.ae Webpage: www.harismkhalid.com LO 1: Three Phase Circuits Three Phase AC System Three phase

More information

Traveling Wave Relays. Fault Location

Traveling Wave Relays. Fault Location Traveling Wave Relays Determining direction requires knowing when the remote terminal detects wave front. et: tr = remote time of detection ts = local time of detection tl = travel time for line Algorithm

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.061 / 6.690 Introduction to Electric Power Systems Spring 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Balanced three-phase systems and operation

Balanced three-phase systems and operation ELEC0014 - Introduction to power and energy systems Balanced three-phase systems and operation Thierry Van Cutsem t.vancutsem@ulg.ac.be www.montefiore.ulg.ac.be/~vct October 2017 1 / 17 system used for

More information

Driven RLC Circuits Challenge Problem Solutions

Driven RLC Circuits Challenge Problem Solutions Driven LC Circuits Challenge Problem Solutions Problem : Using the same circuit as in problem 6, only this time leaving the function generator on and driving below resonance, which in the following pairs

More information

1.7 Delta-Star Transformation

1.7 Delta-Star Transformation S Electronic ircuits D ircuits 8.7 Delta-Star Transformation Fig..(a) shows three resistors R, R and R connected in a closed delta to three terminals, and, their numerical subscripts,, and, being opposite

More information

ELEC 202 Electric Circuit Analysis II Lecture 10(a) Complex Arithmetic and Rectangular/Polar Forms

ELEC 202 Electric Circuit Analysis II Lecture 10(a) Complex Arithmetic and Rectangular/Polar Forms Dr. Gregory J. Mazzaro Spring 2016 ELEC 202 Electric Circuit Analysis II Lecture 10(a) Complex Arithmetic and Rectangular/Polar Forms THE CITADEL, THE MILITARY COLLEGE OF SOUTH CAROLINA 171 Moultrie Street,

More information

Chapter 31 Electromagnetic Oscillations and Alternating Current LC Oscillations, Qualitatively

Chapter 31 Electromagnetic Oscillations and Alternating Current LC Oscillations, Qualitatively Chapter 3 Electromagnetic Oscillations and Alternating Current LC Oscillations, Qualitatively In the LC circuit the charge, current, and potential difference vary sinusoidally (with period T and angular

More information

6.301 Solid-State Circuits Recitation 14: Op-Amps and Assorted Other Topics Prof. Joel L. Dawson

6.301 Solid-State Circuits Recitation 14: Op-Amps and Assorted Other Topics Prof. Joel L. Dawson First, let s take a moment to further explore device matching for current mirrors: I R I 0 Q 1 Q 2 and ask what happens when Q 1 and Q 2 operate at different temperatures. It turns out that grinding through

More information

Transformer. Transformer comprises two or more windings coupled by a common magnetic circuit (M.C.).

Transformer. Transformer comprises two or more windings coupled by a common magnetic circuit (M.C.). . Transformers Transformer Transformer comprises two or more windings coupled by a common magnetic circuit (M.C.). f the primary side is connected to an AC voltage source v (t), an AC flux (t) will be

More information

Review of DC Electric Circuit. DC Electric Circuits Examples (source:

Review of DC Electric Circuit. DC Electric Circuits Examples (source: Review of DC Electric Circuit DC Electric Circuits Examples (source: http://hyperphysics.phyastr.gsu.edu/hbase/electric/dcex.html) 1 Review - DC Electric Circuit Multisim Circuit Simulation DC Circuit

More information

EE313 Fall 2013 Exam #1 (100 pts) Thursday, September 26, 2013 Name. 1) [6 pts] Convert the following time-domain circuit to the RMS Phasor Domain.

EE313 Fall 2013 Exam #1 (100 pts) Thursday, September 26, 2013 Name. 1) [6 pts] Convert the following time-domain circuit to the RMS Phasor Domain. Name If you have any questions ask them. Remember to include all units on your answers (V, A, etc). Clearly indicate your answers. All angles must be in the range 0 to +180 or 0 to 180 degrees. 1) [6 pts]

More information

Prof. Anyes Taffard. Physics 120/220. Voltage Divider Capacitor RC circuits

Prof. Anyes Taffard. Physics 120/220. Voltage Divider Capacitor RC circuits Prof. Anyes Taffard Physics 120/220 Voltage Divider Capacitor RC circuits Voltage Divider The figure is called a voltage divider. It s one of the most useful and important circuit elements we will encounter.

More information

Revised October 6, EEL , Henry Zmuda. 2. Three-Phase Circuits 1

Revised October 6, EEL , Henry Zmuda. 2. Three-Phase Circuits 1 Three Phase Circuitsit Revised October 6, 008. Three-Phase Circuits 1 Preliminary Comments and a quick review of phasors. We live in the time domain. We also assume a causal (nonpredictive) world. Real-world

More information

Generation, transmission and distribution, as well as power supplied to industrial and commercial customers uses a 3 phase system.

Generation, transmission and distribution, as well as power supplied to industrial and commercial customers uses a 3 phase system. Three-phase Circuits Generation, transmission and distribution, as well as power supplied to industrial and commercial customers uses a 3 phase system. Where 3 voltages are supplied of equal magnitude,

More information

EXP. NO. 3 Power on (resistive inductive & capacitive) load Series connection

EXP. NO. 3 Power on (resistive inductive & capacitive) load Series connection OBJECT: To examine the power distribution on (R, L, C) series circuit. APPARATUS 1-signal function generator 2- Oscilloscope, A.V.O meter 3- Resisters & inductor &capacitor THEORY the following form for

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

ELECTRIC POWER CIRCUITS BASIC CONCEPTS AND ANALYSIS

ELECTRIC POWER CIRCUITS BASIC CONCEPTS AND ANALYSIS Contents ELEC46 Power ystem Analysis Lecture ELECTRC POWER CRCUT BAC CONCEPT AND ANALY. Circuit analysis. Phasors. Power in single phase circuits 4. Three phase () circuits 5. Power in circuits 6. ingle

More information

UNIT- I Phase Sequence:

UNIT- I Phase Sequence: UNIT- I Phase Sequence: Phase sequence refers to the relation between voltages (or currents, as well) in a three-phase system. The common representation of this relation is in terms of a phasor diagram,

More information

Notes on Electric Circuits (Dr. Ramakant Srivastava)

Notes on Electric Circuits (Dr. Ramakant Srivastava) Notes on Electric ircuits (Dr. Ramakant Srivastava) Passive Sign onvention (PS) Passive sign convention deals with the designation of the polarity of the voltage and the direction of the current arrow

More information

Electromagnetic Oscillations and Alternating Current. 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3.

Electromagnetic Oscillations and Alternating Current. 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3. Electromagnetic Oscillations and Alternating Current 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3. RLC circuit in AC 1 RL and RC circuits RL RC Charging Discharging I = emf R

More information

Module 25: Outline Resonance & Resonance Driven & LRC Circuits Circuits 2

Module 25: Outline Resonance & Resonance Driven & LRC Circuits Circuits 2 Module 25: Driven RLC Circuits 1 Module 25: Outline Resonance & Driven LRC Circuits 2 Driven Oscillations: Resonance 3 Mass on a Spring: Simple Harmonic Motion A Second Look 4 Mass on a Spring (1) (2)

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocwmitedu 00 Dynamics and Control II Spring 00 For information about citing these materials or our Terms of Use, visit: http://ocwmitedu/terms Massachusetts Institute of Technology

More information

ECE 420. Review of Three Phase Circuits. Copyright by Chanan Singh, Panida Jirutitijaroen, and Hangtian Lei, For educational use only-not for sale.

ECE 420. Review of Three Phase Circuits. Copyright by Chanan Singh, Panida Jirutitijaroen, and Hangtian Lei, For educational use only-not for sale. ECE 40 Review of Three Phase Circuits Outline Phasor Complex power Power factor Balanced 3Ф circuit Read Appendix A Phasors and in steady state are sinusoidal functions with constant frequency 5 0 15 10

More information

Two-Port Networks Admittance Parameters CHAPTER16 THE LEARNING GOALS FOR THIS CHAPTER ARE THAT STUDENTS SHOULD BE ABLE TO:

Two-Port Networks Admittance Parameters CHAPTER16 THE LEARNING GOALS FOR THIS CHAPTER ARE THAT STUDENTS SHOULD BE ABLE TO: CHAPTER16 Two-Port Networks THE LEARNING GOALS FOR THIS CHAPTER ARE THAT STUDENTS SHOULD BE ABLE TO: Calculate the admittance, impedance, hybrid, and transmission parameter for two-port networks. Convert

More information

The process of analysing a circuit using the Laplace technique can be broken down into a series of straightforward steps:

The process of analysing a circuit using the Laplace technique can be broken down into a series of straightforward steps: Analysis of a series RLC circuit using Laplace Transforms Part. How to do it. The process of analysing a circuit using the Laplace technique can be broken down into a series of straightforward steps:.

More information

Chapter 5 Steady-State Sinusoidal Analysis

Chapter 5 Steady-State Sinusoidal Analysis Chapter 5 Steady-State Sinusoidal Analysis Chapter 5 Steady-State Sinusoidal Analysis 1. Identify the frequency, angular frequency, peak value, rms value, and phase of a sinusoidal signal. 2. Solve steady-state

More information

Exercise Dr.-Ing. Abdalkarim Awad. Informatik 7 Rechnernetze und Kommunikationssysteme

Exercise Dr.-Ing. Abdalkarim Awad. Informatik 7 Rechnernetze und Kommunikationssysteme Exercise1 1.10.015 Informatik 7 Rechnernetze und Kommunikationssysteme Review of Phasors Goal of phasor analysis is to simplify the analysis of constant frequency ac systems v(t) = max cos(wt + q v ) i(t)

More information

Transmission and Distribution of Electrical Power

Transmission and Distribution of Electrical Power KINGDOM OF SAUDI ARABIA Ministry Of High Education Umm Al-Qura University College of Engineering & Islamic Architecture Department Of Electrical Engineering Transmission and Distribution of Electrical

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

Fundamentals of Electric Circuits, Second Edition - Alexander/Sadiku

Fundamentals of Electric Circuits, Second Edition - Alexander/Sadiku Chapter 3, Problem 9(8). Find V x in the network shown in Fig. 3.78. Figure 3.78 Chapter 3, Solution 9(8). Consider the circuit below. 2 Ω 2 Ω -j 8 30 o I j 4 j 4 I 2 -j2v For loop, 8 30 = (2 j4)i ji 2

More information

BASIC PRINCIPLES. Power In Single-Phase AC Circuit

BASIC PRINCIPLES. Power In Single-Phase AC Circuit BASIC PRINCIPLES Power In Single-Phase AC Circuit Let instantaneous voltage be v(t)=v m cos(ωt+θ v ) Let instantaneous current be i(t)=i m cos(ωt+θ i ) The instantaneous p(t) delivered to the load is p(t)=v(t)i(t)=v

More information

Lecture 12 Digital Circuits (II) MOS INVERTER CIRCUITS

Lecture 12 Digital Circuits (II) MOS INVERTER CIRCUITS Lecture 12 Digital Circuits (II) MOS INVERTER CIRCUITS Outline NMOS inverter with resistor pull-up The inverter NMOS inverter with current-source pull-up Complementary MOS (CMOS) inverter Static analysis

More information

ECE 476 Power System Analysis Fall 2014 Exam #1, Thursday, October 2, :30AM - 10:50AM

ECE 476 Power System Analysis Fall 2014 Exam #1, Thursday, October 2, :30AM - 10:50AM ECE 476 Power System Analysis Fall 4 Exam #, Thursday, October, 4. 9:3AM - :5AM Name: Problem (5 p) Two balanced 3-phase loads are connected in parallel. One is Y-connected and draws 75 kw (3-phase) at.8

More information

NETWORK SYNTHESIS. Dr. M. V. Cerrillo R. A. Pucel

NETWORK SYNTHESIS. Dr. M. V. Cerrillo R. A. Pucel XVIII. NETWORK SYNTHESIS Prof. E. A. Guillemin Prof. F. M. Reza Dr. M. V. Cerrillo R. A. Pucel M. Strieby P. M. Lewis II A. GENERATION OF GENERAL POSITIVE REAL FUNCTIONS 2. Simple Alternance Let us review

More information

Schedule. ECEN 301 Discussion #20 Exam 2 Review 1. Lab Due date. Title Chapters HW Due date. Date Day Class No. 10 Nov Mon 20 Exam Review.

Schedule. ECEN 301 Discussion #20 Exam 2 Review 1. Lab Due date. Title Chapters HW Due date. Date Day Class No. 10 Nov Mon 20 Exam Review. Schedule Date Day lass No. 0 Nov Mon 0 Exam Review Nov Tue Title hapters HW Due date Nov Wed Boolean Algebra 3. 3.3 ab Due date AB 7 Exam EXAM 3 Nov Thu 4 Nov Fri Recitation 5 Nov Sat 6 Nov Sun 7 Nov Mon

More information

Circuit Theorems Overview Linearity Superposition Source Transformation Thévenin and Norton Equivalents Maximum Power Transfer

Circuit Theorems Overview Linearity Superposition Source Transformation Thévenin and Norton Equivalents Maximum Power Transfer Circuit Theorems Overview Linearity Superposition Source Transformation Thévenin and Norton Equivalents Maximum Power Transfer J. McNames Portland State University ECE 221 Circuit Theorems Ver. 1.36 1

More information

Consider Figure What is the horizontal axis grid increment?

Consider Figure What is the horizontal axis grid increment? Chapter Outline CHAPER 14 hree-phase Circuits and Power 14.1 What Is hree-phase? Why Is hree-phase Used? 14.2 hree-phase Circuits: Configurations, Conversions, Analysis 14.2.1 Delta Configuration Analysis

More information

1 Phasors and Alternating Currents

1 Phasors and Alternating Currents Physics 4 Chapter : Alternating Current 0/5 Phasors and Alternating Currents alternating current: current that varies sinusoidally with time ac source: any device that supplies a sinusoidally varying potential

More information

Homwork AC circuits. due Friday Oct 8, 2017

Homwork AC circuits. due Friday Oct 8, 2017 Homwork AC circuits due Friday Oct 8, 2017 Validate your answers (show your work) using a Matlab Live Script and Simulink models. Include these computations and models with your homework. 1 Problem 1 Worksheet

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

TSTE25 Power Electronics. Lecture 3 Tomas Jonsson ICS/ISY

TSTE25 Power Electronics. Lecture 3 Tomas Jonsson ICS/ISY TSTE25 Power Electronics Lecture 3 Tomas Jonsson ICS/ISY 2016-11-09 2 Outline Rectifiers Current commutation Rectifiers, cont. Three phase Inrush and short circuit current Exercises 5-5, 5-8, 3-100, 3-101,

More information

AC Power Analysis. Chapter Objectives:

AC Power Analysis. Chapter Objectives: AC Power Analysis Chapter Objectives: Know the difference between instantaneous power and average power Learn the AC version of maximum power transfer theorem Learn about the concepts of effective or value

More information

PHY3128 / PHYM203 (Electronics / Instrumentation) Transmission Lines

PHY3128 / PHYM203 (Electronics / Instrumentation) Transmission Lines Transmission Lines Introduction A transmission line guides energy from one place to another. Optical fibres, waveguides, telephone lines and power cables are all electromagnetic transmission lines. are

More information

C 0 U R S E A N. Problems

C 0 U R S E A N. Problems C 0 U R S E A N Problems S 0 L U T I 0 N S Introduction and Basic Concepts Note: All references to Figures and Equations whose numbers are not preceded by an "S" refer to the textbook. Following the example

More information

Fault Analysis Power System Representation

Fault Analysis Power System Representation .1. Power System Representation Single Line Diagram: Almost all modern power systems are three phase systems with the phases of equal magnitude and equal phase difference (i.e., 10 o ). These three phase

More information

BASIC NETWORK ANALYSIS

BASIC NETWORK ANALYSIS SECTION 1 BASIC NETWORK ANALYSIS A. Wayne Galli, Ph.D. Project Engineer Newport News Shipbuilding Series-Parallel dc Network Analysis......................... 1.1 Branch-Current Analysis of a dc Network......................

More information

ECE 107: Electromagnetism

ECE 107: Electromagnetism ECE 107: Electromagnetism Set 2: Transmission lines Instructor: Prof. Vitaliy Lomakin Department of Electrical and Computer Engineering University of California, San Diego, CA 92093 1 Outline Transmission

More information

Physics 212. Lecture 9. Electric Current

Physics 212. Lecture 9. Electric Current Physics 212 Lecture 9 Electric Current Exam Here, Tuesday, June 26, 8 9:30 AM Will begin at 7:30 for those who must leave by 9. Office hours 1-7 PM, Rm 232 Loomis Bring your ID! Physics 212 Lecture 9,

More information

Chapter 2 Voltage-, Current-, and Z-source Converters

Chapter 2 Voltage-, Current-, and Z-source Converters Chapter 2 Voltage-, Current-, and Z-source Converters Some fundamental concepts are to be introduced in this chapter, such as voltage sources, current sources, impedance networks, Z-source, two-port network,

More information

Transmission Lines. Transformation of voltage, current and impedance. Impedance. Application of transmission lines

Transmission Lines. Transformation of voltage, current and impedance. Impedance. Application of transmission lines Transmission Lines Transformation of voltage, current and impedance Impedance Application of transmission lines 1 ENGN4545/ENGN6545: Radiofrequency Engineering L#21 The Telegraphist Equations We can rewrite

More information

ELG4125: Power Transmission Lines Steady State Operation

ELG4125: Power Transmission Lines Steady State Operation ELG4125: Power Transmission Lines Steady State Operation Two-Port Networks and ABCD Models A transmission line can be represented by a two-port network, that is a network that can be isolated from the

More information

Power Systems - Basic Concepts and Applications - Part I

Power Systems - Basic Concepts and Applications - Part I PDHonline Course E104 (1 PDH) Power ystems Basic Concepts and Applications Part I Instructor: hihmin Hsu PhD PE 01 PDH Online PDH Center 57 Meadow Estates Drive Fairfax A 006658 Phone & Fax: 709880088

More information

D C Circuit Analysis and Network Theorems:

D C Circuit Analysis and Network Theorems: UNIT-1 D C Circuit Analysis and Network Theorems: Circuit Concepts: Concepts of network, Active and passive elements, voltage and current sources, source transformation, unilateral and bilateral elements,

More information

Transients on Integrated Power System

Transients on Integrated Power System Chapter 3 Transients on Integrated Power System 3.1 Line Dropping and Load Rejection 3.1.1 Line Dropping In three phase circuit capacitance switching, the determination of the voltage trapped after switching

More information

Lecture 6: Impedance (frequency dependent. resistance in the s-world), Admittance (frequency. dependent conductance in the s-world), and

Lecture 6: Impedance (frequency dependent. resistance in the s-world), Admittance (frequency. dependent conductance in the s-world), and Lecture 6: Impedance (frequency dependent resistance in the s-world), Admittance (frequency dependent conductance in the s-world), and Consequences Thereof. Professor Ray, what s an impedance? Answers:.

More information

Symmetrical Components. References

Symmetrical Components. References Symmetrical Components Review of basics Sequence Equivalents Fault Analysis Symmetrical Components Fall 28 References Your power systems analysis class text book NPAG: Chapter 4 (analysis) Chapter 5 (equipment

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.685 Electric Machines Problem Set 10 Issued November 11, 2013 Due November 20, 2013 Problem 1: Permanent

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Statistical Physics I Spring Term 2013

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Statistical Physics I Spring Term 2013 MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department 8.044 Statistical Physics I Spring Term 2013 Problem 1: The Big Bang Problem Set #9 Due in hand-in box by 4;00 PM, Friday, April 19 Early in the

More information

Delta & Y Configurations, Principles of Superposition, Resistor Voltage Divider Designs

Delta & Y Configurations, Principles of Superposition, Resistor Voltage Divider Designs BME/ISE 3511 Bioelectronics - Test Three Course Notes Fall 2016 Delta & Y Configurations, Principles of Superposition, esistor Voltage Divider Designs Use following techniques to solve for current through

More information

Consider a simple RC circuit. We might like to know how much power is being supplied by the source. We probably need to find the current.

Consider a simple RC circuit. We might like to know how much power is being supplied by the source. We probably need to find the current. AC power Consider a simple RC circuit We might like to know how much power is being supplied by the source We probably need to find the current R 10! R 10! is VS Vmcosωt Vm 10 V f 60 Hz V m 10 V C 150

More information

ECE 524: Reducing Capacitor Switching Transients

ECE 524: Reducing Capacitor Switching Transients ECE 54: Session 6; Page / Spring 08 ECE 54: Reducing Capacitor Switching Transients Define units: MW 000kW MVA MW MVAr MVA Example : f 60Hz ω πf ω 76.99 rad s t 0 0.00000sec 60 sec Add inductive reactance

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

Lecture 6: Impedance (frequency dependent. resistance in the s- world), Admittance (frequency. dependent conductance in the s- world), and

Lecture 6: Impedance (frequency dependent. resistance in the s- world), Admittance (frequency. dependent conductance in the s- world), and Lecture 6: Impedance (frequency dependent resistance in the s- world), Admittance (frequency dependent conductance in the s- world), and Consequences Thereof. Professor Ray, what s an impedance? Answers:

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Problem Set 10 Solutions April 22, 2011 Chapter 9, Problems 2,

More information

ECE 524: Lecture 15 Reducing Capacitor Switching Transients. jx s C 2 C 1. Define units: MW 1000kW MVA MW MVAr MVA. rad s

ECE 524: Lecture 15 Reducing Capacitor Switching Transients. jx s C 2 C 1. Define units: MW 1000kW MVA MW MVAr MVA. rad s ECE 54: Session 5; Page / Spring 04 ECE 54: Lecture 5 Reducing Capacitor Switching Transients Define units: MW 000kW MVA MW MVAr MVA Example : f 60Hz ω πf ω 76.99 rad s t 0 0.00000sec 60 sec Add inductive

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 14 121011 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Review Steady-State Analysis RC Circuits RL Circuits 3 DC Steady-State

More information

Chapter 1W Basic Electromagnetic Concepts

Chapter 1W Basic Electromagnetic Concepts Chapter 1W Basic Electromagnetic Concepts 1W Basic Electromagnetic Concepts 1W.1 Examples and Problems on Electric Circuits 1W.2 Examples on Magnetic Concepts This chapter includes additional examples

More information

Sinusoidal Steady State Analysis (AC Analysis) Part I

Sinusoidal Steady State Analysis (AC Analysis) Part I Sinusoidal Steady State Analysis (AC Analysis) Part I Amin Electronics and Electrical Communications Engineering Department (EECE) Cairo University elc.n102.eng@gmail.com http://scholar.cu.edu.eg/refky/

More information

Course Updates. Reminders: 1) Assignment #10 due Today. 2) Quiz # 5 Friday (Chap 29, 30) 3) Start AC Circuits

Course Updates. Reminders: 1) Assignment #10 due Today. 2) Quiz # 5 Friday (Chap 29, 30) 3) Start AC Circuits ourse Updates http://www.phys.hawaii.edu/~varner/phys272-spr10/physics272.html eminders: 1) Assignment #10 due Today 2) Quiz # 5 Friday (hap 29, 30) 3) Start A ircuits Alternating urrents (hap 31) In this

More information

1(b) Compensation Example S 0 L U T I 0 N S

1(b) Compensation Example S 0 L U T I 0 N S S 0 L U T I 0 N S Compensation Example I 1U Note: All references to Figures and Equations whose numbers are not preceded by an "S"refer to the textbook. (a) The solution of this problem is outlined in

More information

EE115C Digital Electronic Circuits Homework #5

EE115C Digital Electronic Circuits Homework #5 EE115C Digital Electronic Circuits Homework #5 Due Thursday, May 13, 6pm @ 56-147E EIV Problem 1 Elmore Delay Analysis Calculate the Elmore delay from node A to node B using the values for the resistors

More information

DOING PHYSICS WITH MATLAB

DOING PHYSICS WITH MATLAB DOING PHYSIS WITH MATAB THE FINITE DIFFERENE METHOD FOR THE NUMERIA ANAYSIS OF IRUITS ONTAINING RESISTORS, APAITORS AND INDUTORS MATAB DOWNOAD DIRETORY N01.m Voltage and current for a resistor, capacitor

More information

Name. Section. Short Answer Questions. 1. (20 Pts) 2. (10 Pts) 3. (5 Pts) 4. (10 Pts) 5. (10 Pts) Regular Questions. 6. (25 Pts) 7.

Name. Section. Short Answer Questions. 1. (20 Pts) 2. (10 Pts) 3. (5 Pts) 4. (10 Pts) 5. (10 Pts) Regular Questions. 6. (25 Pts) 7. Name Section Short Answer Questions 1. (20 Pts) 2. (10 Pts) 3. (5 Pts). (10 Pts) 5. (10 Pts) Regular Questions 6. (25 Pts) 7. (20 Pts) Notes: 1. Please read over all questions before you begin your work.

More information

EE 3120 Electric Energy Systems Study Guide for Prerequisite Test Wednesday, Jan 18, pm, Room TBA

EE 3120 Electric Energy Systems Study Guide for Prerequisite Test Wednesday, Jan 18, pm, Room TBA EE 3120 Electric Energy Systems Study Guide for Prerequisite Test Wednesday, Jan 18, 2006 6-7 pm, Room TBA First retrieve your EE2110 final and other course papers and notes! The test will be closed book

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

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2 EE 4: Introduction to Microelectronic Circuits Spring 8: Midterm Venkat Anantharam 3/9/8 Total Time Allotted : min Total Points:. This is a closed book exam. However, you are allowed to bring two pages

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.685 Electric Machines Problem Set solutions September 8, 3 e dλ dt Problem : Torque is, for this system,

More information

Performance Comparison Between Mho Elements and Incremental Quantity-Based Distance Elements

Performance Comparison Between Mho Elements and Incremental Quantity-Based Distance Elements Performance Comparison Between Mho Elements and Incremental Quantity-Based Distance Elements Gabriel Benmouyal, Normann Fischer, and Brian Smyth, Schweitzer Engineering Laboratories, Inc. Abstract Mho

More information

PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS

PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS The first purpose of this laboratory is to observe voltages as a function of time in an RC circuit and compare it to its expected time behavior. In the second

More information

Unit-3. Question Bank

Unit-3. Question Bank Unit- Question Bank Q.1 A delta connected load draw a current of 15A at lagging P.F. of.85 from 400, -hase, 50Hz suly. Find & of each hase. Given P = = 400 0 I = 15A Ans. 4.98, 5.7mH So I P = 15 =8.66A

More information

Digital Integrated Circuits A Design Perspective

Digital Integrated Circuits A Design Perspective igital Integrated Circuits esign Perspective esigning Combinational Logic Circuits 1 Combinational vs. Sequential Logic In Combinational Logic Circuit Out In Combinational Logic Circuit Out State Combinational

More information

ECE 421/521 Electric Energy Systems Power Systems Analysis I 2 Basic Principles. Instructor: Kai Sun Fall 2013

ECE 421/521 Electric Energy Systems Power Systems Analysis I 2 Basic Principles. Instructor: Kai Sun Fall 2013 ECE 41/51 Electric Energy Systems Power Systems Analysis I Basic Principles Instructor: Kai Sun Fall 013 1 Outline Power in a 1-phase AC circuit Complex power Balanced 3-phase circuit Single Phase AC System

More information

Control of Wind Turbine Generators. James Cale Guest Lecturer EE 566, Fall Semester 2014 Colorado State University

Control of Wind Turbine Generators. James Cale Guest Lecturer EE 566, Fall Semester 2014 Colorado State University Control of Wind Turbine Generators James Cale Guest Lecturer EE 566, Fall Semester 2014 Colorado State University Review from Day 1 Review Last time, we started with basic concepts from physics such as

More information

Chapter 3: Capacitors, Inductors, and Complex Impedance

Chapter 3: Capacitors, Inductors, and Complex Impedance hapter 3: apacitors, Inductors, and omplex Impedance In this chapter we introduce the concept of complex resistance, or impedance, by studying two reactive circuit elements, the capacitor and the inductor.

More information

Power Factor Improvement

Power Factor Improvement Salman bin AbdulazizUniversity College of Engineering Electrical Engineering Department EE 2050Electrical Circuit Laboratory Power Factor Improvement Experiment # 4 Objectives: 1. To introduce the concept

More information

1200 V 600 A IGBT Module

1200 V 600 A IGBT Module 1200 V 600 A IGBT RoHS Features Trench-gate field stop IGBT technology Low saturation voltage and positive temperature coefficient Fast switching and short tail current Free wheeling diodes with fast and

More information

Study Notes on Network Theorems for GATE 2017

Study Notes on Network Theorems for GATE 2017 Study Notes on Network Theorems for GATE 2017 Network Theorems is a highly important and scoring topic in GATE. This topic carries a substantial weight age in GATE. Although the Theorems might appear to

More information

Midterm Exam (closed book/notes) Tuesday, February 23, 2010

Midterm Exam (closed book/notes) Tuesday, February 23, 2010 University of California, Berkeley Spring 2010 EE 42/100 Prof. A. Niknejad Midterm Exam (closed book/notes) Tuesday, February 23, 2010 Guidelines: Closed book. You may use a calculator. Do not unstaple

More information