Review of Chapter 2, Plus Matlab Examples

Size: px
Start display at page:

Download "Review of Chapter 2, Plus Matlab Examples"

Transcription

1 Reiew of Chapter, Plus Matlab Examples. Power in single-phase circuits Let () t and () i t be defined as: () = cos ( ω + θ ) and () = cos ( ω + θ ) t V t i t I t m m i then the instantaneous power is gie by: () = ()() = cos( ω + θ ) cos( ω + θ ) p t t i t VmIm t t i VI m m = cos( t i) cos( i) ω + θ + θ + θ θ = V I t+ + { cos ( ω θ ) ( θ θ ) cos( θ θ )} ( ω θ ) ( θ θ ) ( ω θ ) ( θ θ ) ( θ θ ) rms rms i i { cos cos i sin sin i cos i } = V I t+ + t+ + () = cosθ 1 + cos ( ω + θ ) + sinθ sin ( ω + θ ) p t V I t V I t where θ = θ θi. The angle θ is called the power factor angle and is the angle between the oltage and current at a particular -port. Note: the power factor is gien by cosθ. Note that the cosine is an een function thus the sign of θ is lost! For an inductie circuit (memory helper: ELI) oltage leads the current, the carrent lags the oltage and we call this a "lagging" power factor because the current lags the oltage. For a capacitie circuit (memory helper: ICE) the current leads the oltage, and we call this a "leading" power factor. Thus, we always say clearly if the power factor is lagging (inductie) or leading (capacitie). The lag or lead is the angle by which the current lags or leads the oltage. V V It is also noted that θ is the impedance angle, thus: θ = = ( i) I I θ θ. The instantaneous power can be expressed in two parts: () = () + () p t p t p t R thus p () t = V I cosθ 1 + cos ( ωt+ θ ) R and p () t V I sinθsin ( ωt θ ) = +. It is common to define P and Q as follows: 1

2 ( ()) R () ( ) cos P = ag p t = ag p t = V I θ Q= V I sinθ Thus in terms of P and Q, the instantaneous power can be expressed as: ( ) = 1+ cos( ω + θ ) + sin( ω + θ ) p t P t Q t Thus P is the "aerage" alue of the cosine terms (counting DC as a zero frequency cosine term) while Q is the "magnitude" of the sine term. It is noted that besides the DC term, power has twice line frequency components. Example.1 A supply oltage t () = 100cosωt is applied across a load whose impedance is gien by = ! Ω. Determine i() t and p() t. Use Matlab to plot i() t, () t, p() t, pr () t and p () t oer an interal from 0 to π. The Matlab program is shown below: Vm = 100; theta = 0; % Voltage amplitude and phase angle = 1.5; gama = 60; % Impedance magnitude and phase angle thetai = theta - gama; % Current phase angle in degree theta = (theta - thetai)*pi/180; % Degree to radian Im = Vm/; % Current amplitude wt=0:.05:*pi; % wt from 0 to *pi =Vm*cos(wt); % Instantaneous oltage i=im*cos(wt + thetai*pi/180); % Instantaneous current p=.*i; % Instantaneous power V=Vm/sqrt(); I=Im/sqrt(); % rms oltage and current P = V*I*cos(theta); % Aerage power Q = V*I*sin(theta); % Reactie power S = P + j*q % Complex power pr = P*(1 + cos(*(wt + theta))); % Eq. (.6) px = Q*sin(*(wt + theta)); % Eq. (.8) PP=P*ones(1, length(wt)); % Aerage power with length w for plot xline = zeros(1, length(wt)); % generates a zero ector wt=180/pi*wt; % conerting radian to degree subplot(,,1), plot(wt,, wt, i,wt, xline), grid title(['(t)=vm coswt, i(t)=im cos(wt +', numstr(thetai), ')']) xlabel('wt, degree') subplot(,,), plot(wt, p, wt, xline), grid title('p(t)=(t) i(t)'), xlabel('wt, degree') subplot(,,3), plot(wt, pr, wt, PP, wt,xline), grid title('pr(t) Eq..6'), xlabel('wt, degree') subplot(,,4), plot(wt, px, wt, xline), grid title('px(t) Eq..8'), xlabel('wt, degree') subplot(111)

3 S =.0000e e+003i (t)=vm coswt, i(t)=im cos(wt +-60) p(t)=(t) i(t) wt, degree pr(t) Eq wt, degree wt, degree px(t) Eq wt, degree.3 Complex power * It is obsered that the term VI gies the result: (N.B. θ = θ θi) cos * VI = V I θ + j V I sinθ which is identical to * S = VI = P+ jq where S is the complex power. OTHER FORMS for S : V S = R I + j I = = I. * 3

4 For example, for an inductie load, the current lags the oltage and the phasor diagrams would be as shown below: V θ I θ S Q P Phasor diagrams (V, I) and the power triangle for an inductie load And for a capacitie load, the current would lead the oltage, and the phasor diagrams would be as shown below: I V θ P θ S Q Phasor diagrams (V, I) and the power triangle for a capacitie load, leading power factor angle.4 Complex power balance The total alue of S for a circuit is the SUM of S for the components of S. Example.: Three impedances in parallel are suppleid by a source V = 100 0! V where the impedances are gien by: 1 = 60 + j0, = 6+ j1 and 3 = 30 j30. Find the power absorbed by each load and the total complex power. As a check, compute the power supplied by the source. 4

5 Matlab program follows: V = 100; 1= 60; = 6 + j*1; 3 = 30 - j*30; I1 = V/1; I = V/; I3 = V/3; S1= V*conj(I1), S= V*conj(I), S3= V*conj(I3) S = S1 + S + S3 S = V*conj(I1+I+I3) S1 = 4000 S = e e+004i S3 =.4000e e+004i S = e e+004i S = e e+004i It is obsered that the complex power is consered. 5

6 .5 Power factor correction Adding a capacitor (usually in parallel) with an inductie load can improe the power factor. Example.3 Two loads 1 = j0 and = 10 + j0 are connected across a 00-V 60 Hz source. (a) Find the total real and reactie power, the power factor at the source, and the total current. (b) Find the capacitance of the capacitor connected across the loads to improe the oerall power factor to 0.8 lagging. S Q Q C θ d P Example.3 The Matlab program follows: V = 00; 1= 100; = 10 + j*0; I1 = V/1; I = V/; S1= V*conj(I1), S= V*conj(I) I = I1 + I S = S1 + S, P = real(s); Q = imag(s); PF = cos(angle(s)) thd = acos(0.8), Qd = P*tan(thd) Sc = -j*(q - Qd) c = V^/conj(Sc), C = 1/(*pi*60*abs(c)) Sd = P + j*qd; Id=conj(Sd)/conj(V) S1 = 400 S = e e+003i I = i S = 1.000e e+003i PF = 6

7 thd = Qd = 900 Sc = e+00i c = i C = 4.640e-005 Id = i Example.4 Three loads are connected in parallel across a 1400-V, 60 Hz single-phase supply. Gien that load 1 is inductie, 15 kva at 0.8 power factor, load is capacitie, 10 kw and 40 kar, and load 3 is resistie at 15 kw. (a) Find the total kw, kva and the supply power factor. (b) A capacitor is connected in parallel with the loads to improe the power factor to 0.8 lagging. Find the kar rating of the capacitor and its capacitance in µ F. The Matlab program follows: V = 1400; S1= j*10000; S = j*40000; S3 = 15000; S = S1 + S + S3, P = real(s); Q = imag(s); PF = cos(angle(s)) I = conj(s)/conj(v) thd = acos(0.8), Qd = P*tan(thd) Sc = -j*(q - Qd) c = V^/conj(Sc), C = 1E6/(*pi*60*abs(c)) Sd = P + j*qd; Id=conj(Sd)/conj(V) S = e e+004i PF = I = i thd = Qd = Sc = e+004i c = i 7

8 C = Id = i.6 Complex Power Flow This is a ery important part of chapter. Note the diagram below. It shows four power flows. They are: 1. S 1 is the complex power at node number 1 flowing in (i.e. from node 1 in the direction of node ).. S1 is the complex power at node number 1 flowing out (i.e. from node 1 in the direction away from node ). 3. S 1 is the complex power at node number flowing in (i.e. from node in the direction of node 1). 4. S1 is the complex power at node number flowing out (i.e. from node in the direction away from node 1). -S 1 S 1 S 1 -S 1 + I 1 + V 1 V - - Thus the power consumed by the impedance can be expressed as S = S1 + S1. Important Results from section.6: (will be shown in detail later in the lecture) S V1 V1 V 1 = γ γ + δ1 δ ( ) 8

9 V1 V1 V 1 = cosγ cos γ + δ1 δ P Q ( ) V1 V1 V 1 = sinγ sin γ + δ1 δ ( ) where V1 = V1 δ1 and V = V δ and the impedance is = γ. The angle δ defined as δ = δ1 δ is often called the "power angle". N.B. This is ery different from the "power factor angle" discussed earlier. If we assume that the circuit aboe represents two generators connected by a transmission line, then the equations aboe still apply. In particular the impedance of a transmission line may be assumed purely inductie, i.e. = 0 + j. In this case the angle γ = 90! and the equations aboe simplify to: V1 V P1 = sin ( δ1 δ ) V Q = V V cos ( δ δ ) Since the line is "lossless" then power consumed by the line is zero, i.e. P1 + P1 = 0. In terms of the power angle, these equations become: P = V V 1 1 sin δ V Q = V V 1 cos 1 1 δ Obserations (assuming R 0): 1. Usually δ is ery small (less than 10 degrees), thus P1 sinδ, i.e. small changes in power angle greatly change the real power flow and not the reactie power. If δ1 > δ then power flows from node one to node two. If δ1 < δ, then power flows in the opposite direction (from node to node 1). V. Maximum power transfer occurs when δ = 90! 1 V and is gien by: Pmax =. 9

10 3. Since δ 0, Q V1 V. Thus small changes in V1 V greatly affect Q but not P. Thus, to control real power, we need to change the power angle δ. This is done be increasing prime moer power (mechanical power driing the generator). To control reactie power, we need to change the difference in oltage magnitude. This is done by changing the DC excitation of one generator. Example.5 Assume V 1 = 10 5 and V = Let = 1+ j7 Ω. Determine the real and reactie power supplied or receied by each source and the power loss in the line. The Matlab code follows: R = 1; = 7; = R +j*; V1 = 10*(cos(-5*pi/180) + j*sin(-5*pi/180)); V = 100+j*0; I1 = (V1 - V)/, I1 = -I1; S1 = V1*conj(I1), S1 = V*conj(I1) SL = S1 + S1 PL = R*abs(I1)^, QL = *abs(i1)^ I1 = i S1 = e e+00i S1 = e e+00i SL = i PL = QL = Example.6: Repeat example.5 using a Matlab program such that the angle of source 1 is changed from -30 to 30 degrees in steps of 5 degrees each. We cannot execute "chpex6" from within the notebook because input alues are to be entered by the user. Hence we go to a Matlab window and execute this command. GO TO A MATLAB WINDOW AND EECUTE "chpex6". 10

CONTENTS 1 THE POWER SYSTEM: AN OVERVIEW 1 2 BASIC PRINCIPLES 5 3 GENERATOR AND TRANSFORMER MODELS; THE PER-UNIT SYSTEM 25

CONTENTS 1 THE POWER SYSTEM: AN OVERVIEW 1 2 BASIC PRINCIPLES 5 3 GENERATOR AND TRANSFORMER MODELS; THE PER-UNIT SYSTEM 25 Solutions Manual Hadi Saadat Professor of Electrical Engineering Milwaukee School of Engineering Milwaukee, Wisconsin McGraw-Hill, Inc CONTENTS 1 THE POWER SYSTEM: AN OVERVIEW 1 2 BASIC PRINCIPLES 5 3

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

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 (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

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

Chapter 10: Sinusoidal Steady-State Analysis

Chapter 10: Sinusoidal Steady-State Analysis Chapter 10: Sinusoidal Steady-State Analysis 1 Objectives : sinusoidal functions Impedance use phasors to determine the forced response of a circuit subjected to sinusoidal excitation Apply techniques

More information

11. AC Circuit Power Analysis

11. AC Circuit Power Analysis . AC Circuit Power Analysis Often an integral part of circuit analysis is the determination of either power delivered or power absorbed (or both). In this chapter First, we begin by considering instantaneous

More information

Refresher course on Electrical fundamentals (Basics of A.C. Circuits) by B.M.Vyas

Refresher course on Electrical fundamentals (Basics of A.C. Circuits) by B.M.Vyas Refresher course on Electrical fundamentals (Basics of A.C. Circuits) by B.M.Vyas A specifically designed programme for Da Afghanistan Breshna Sherkat (DABS) Afghanistan 1 Areas Covered Under this Module

More information

Lecture 3: Three-phase power circuits

Lecture 3: Three-phase power circuits 1/24/28 Lecture : Three-phase power circuits 1 nstructor: Dr. Gleb. Tcheslavski Contact: gleb@ee.lamar.edu Office Hours: TBD; Room 2 Class web site: MyLamar ntroduction 2 Almost all electric power generation

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

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

ECE 421/521 Electric Energy Systems Power Systems Analysis I 2 Basic Principles. Instructor: Kai Sun Fall 2014 ECE 41/51 Electric Energy Systems Power Systems Analysis I Basic Princiles Instructor: Kai Sun Fall 014 1 Outline Power in a 1-hase AC circuit Comlex ower Balanced 3-hase circuit Single Phase AC System

More information

MET 487 Instrumentation and Automatic Control. Lecture 3

MET 487 Instrumentation and Automatic Control. Lecture 3 MET 487 Instrumentation and Automatic Control Lecture 3 Electrical Circuits and Components http://www.etcs.ipfw.edu/~lin Lecture 2 - By P. Lin 1 Electrical Circuits and Components Basic Electrical Elements

More information

04-Electric Power. ECEGR 452 Renewable Energy Systems

04-Electric Power. ECEGR 452 Renewable Energy Systems 04-Electric Power ECEGR 452 Renewable Energy Systems Overview Review of Electric Circuits Phasor Representation Electrical Power Power Factor Dr. Louie 2 Introduction Majority of the electrical energy

More information

12. Introduction and Chapter Objectives

12. Introduction and Chapter Objectives Real Analog - Circuits 1 Chapter 1: Steady-State Sinusoidal Power 1. Introduction and Chapter Objectives In this chapter we will address the issue of power transmission via sinusoidal or AC) signals. This

More information

Lecture 11 - AC Power

Lecture 11 - AC Power - AC Power 11/17/2015 Reading: Chapter 11 1 Outline Instantaneous power Complex power Average (real) power Reactive power Apparent power Maximum power transfer Power factor correction 2 Power in AC Circuits

More information

Sinusoidal Steady State Analysis (AC Analysis) Part II

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

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

Basics of Electric Circuits

Basics of Electric Circuits António Dente Célia de Jesus February 2014 1 Alternating Current Circuits 1.1 Using Phasors There are practical and economic reasons justifying that electrical generators produce emf with alternating and

More information

Revision of Basic A.C. Theory

Revision of Basic A.C. Theory Revision of Basic A.C. Theory 1 Revision of Basic AC Theory (Much of this material has come from Electrical & Electronic Principles & Technology by John Bird) Electricity is generated in power stations

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

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

Power Engineering II. Power System Transients

Power Engineering II. Power System Transients Power System Transients Oeroltage Maximum supply oltage U m the maximum effectie alue of line oltage that can occur at any time or place under normal operating conditions Rated oltage (k) 6 10 22 35 110

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

Boise State University Department of Electrical and Computer Engineering ECE 212L Circuit Analysis and Design Lab

Boise State University Department of Electrical and Computer Engineering ECE 212L Circuit Analysis and Design Lab Objectives Boise State University Department of Electrical and Computer Engineering ECE 22L Circuit Analysis and Design Lab Experiment #4: Power Factor Correction The objectives of this laboratory experiment

More information

Sinusoids and Phasors

Sinusoids and Phasors CHAPTER 9 Sinusoids and Phasors We now begins the analysis of circuits in which the voltage or current sources are time-varying. In this chapter, we are particularly interested in sinusoidally time-varying

More information

Lecture 05 Power in AC circuit

Lecture 05 Power in AC circuit CA2627 Building Science Lecture 05 Power in AC circuit Instructor: Jiayu Chen Ph.D. Announcement 1. Makeup Midterm 2. Midterm grade Grade 25 20 15 10 5 0 10 15 20 25 30 35 40 Grade Jiayu Chen, Ph.D. 2

More information

Sinusoidal Steady State Power Calculations

Sinusoidal Steady State Power Calculations 10 Sinusoidal Steady State Power Calculations Assessment Problems AP 10.1 [a] V = 100/ 45 V, Therefore I = 20/15 A P = 1 (100)(20)cos[ 45 (15)] = 500W, 2 A B Q = 1000sin 60 = 866.03 VAR, B A [b] V = 100/

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

Three Phase Circuits

Three Phase Circuits Amin Electronics and Electrical Communications Engineering Department (EECE) Cairo University elc.n102.eng@gmail.com http://scholar.cu.edu.eg/refky/ OUTLINE Previously on ELCN102 Three Phase Circuits Balanced

More information

Module 4. Single-phase AC Circuits

Module 4. Single-phase AC Circuits Module 4 Single-phase AC Circuits Lesson 14 Solution of Current in R-L-C Series Circuits In the last lesson, two points were described: 1. How to represent a sinusoidal (ac) quantity, i.e. voltage/current

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 18 121025 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Review RMS Values Complex Numbers Phasors Complex Impedance Circuit Analysis

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

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

I. Impedance of an R-L circuit.

I. Impedance of an R-L circuit. I. Impedance of an R-L circuit. [For inductor in an AC Circuit, see Chapter 31, pg. 1024] Consider the R-L circuit shown in Figure: 1. A current i(t) = I cos(ωt) is driven across the circuit using an AC

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

Phasors: Impedance and Circuit Anlysis. Phasors

Phasors: Impedance and Circuit Anlysis. Phasors Phasors: Impedance and Circuit Anlysis Lecture 6, 0/07/05 OUTLINE Phasor ReCap Capacitor/Inductor Example Arithmetic with Complex Numbers Complex Impedance Circuit Analysis with Complex Impedance Phasor

More information

Chapter 33. Alternating Current Circuits

Chapter 33. Alternating Current Circuits Chapter 33 Alternating Current Circuits 1 Capacitor Resistor + Q = C V = I R R I + + Inductance d I Vab = L dt AC power source The AC power source provides an alternative voltage, Notation - Lower case

More information

Chapter 10 Objectives

Chapter 10 Objectives Chapter 10 Engr8 Circuit Analysis Dr Curtis Nelson Chapter 10 Objectives Understand the following AC power concepts: Instantaneous power; Average power; Root Mean Squared (RMS) value; Reactive power; Coplex

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

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

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

Lecture 2 Introduction

Lecture 2 Introduction EE 333 POWER SYSTEMS ENGNEERNG Lecture 2 ntroduction Dr. Lei Wu Departent of Electrical and Coputer Engineering Clarkson University Resilient Underground Microgrid in Potsda, NY Funded by NYSERDAR + National

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

Analysis of AC Power RMS and Phasors Power Factor. Power Factor. Eduardo Campero Littlewood

Analysis of AC Power RMS and Phasors Power Factor. Power Factor. Eduardo Campero Littlewood Power Factor Eduardo Campero Littlewood Universidad Autónoma Metropolitana Azcapotzalco Campus Energy Department Content 1 Analysis of AC Power 2 RMS and Phasors 3 Power Factor Recommended Bibliography

More information

Circuit Analysis-III. Circuit Analysis-II Lecture # 3 Friday 06 th April, 18

Circuit Analysis-III. Circuit Analysis-II Lecture # 3 Friday 06 th April, 18 Circuit Analysis-III Sinusoids Example #1 ü Find the amplitude, phase, period and frequency of the sinusoid: v (t ) =12cos(50t +10 ) Signal Conversion ü From sine to cosine and vice versa. ü sin (A ± B)

More information

2 Signal Frequency and Impedances First Order Filter Circuits Resonant and Second Order Filter Circuits... 13

2 Signal Frequency and Impedances First Order Filter Circuits Resonant and Second Order Filter Circuits... 13 Lecture Notes: 3454 Physics and Electronics Lecture ( nd Half), Year: 7 Physics Department, Faculty of Science, Chulalongkorn University //7 Contents Power in Ac Circuits Signal Frequency and Impedances

More information

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

Module 4. Single-phase AC Circuits. Version 2 EE IIT, Kharagpur 1 Module 4 Single-phase A ircuits ersion EE IIT, Kharagpur esson 4 Solution of urrent in -- Series ircuits ersion EE IIT, Kharagpur In the last lesson, two points were described:. How to represent a sinusoidal

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

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

Chapter 9 Objectives

Chapter 9 Objectives Chapter 9 Engr8 Circuit Analysis Dr Curtis Nelson Chapter 9 Objectives Understand the concept of a phasor; Be able to transform a circuit with a sinusoidal source into the frequency domain using phasor

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

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

Brief Steady of Power Factor Improvement

Brief Steady of Power Factor Improvement International Journal of Electrical Engineering. ISSN 0974-2158 Volume 6, Number 5 (2013), pp. 531-539 International Research PublicationHouse http://www.irphouse.com Brief Steady of Power Factor Improvement

More information

Review of Basic Electrical and Magnetic Circuit Concepts EE

Review of Basic Electrical and Magnetic Circuit Concepts EE Review of Basic Electrical and Magnetic Circuit Concepts EE 442-642 Sinusoidal Linear Circuits: Instantaneous voltage, current and power, rms values Average (real) power, reactive power, apparent power,

More information

REACTANCE. By: Enzo Paterno Date: 03/2013

REACTANCE. By: Enzo Paterno Date: 03/2013 REACTANCE REACTANCE By: Enzo Paterno Date: 03/2013 5/2007 Enzo Paterno 1 RESISTANCE - R i R (t R A resistor for all practical purposes is unaffected by the frequency of the applied sinusoidal voltage or

More information

Refinements to Incremental Transistor Model

Refinements to Incremental Transistor Model Refinements to Incremental Transistor Model This section presents modifications to the incremental models that account for non-ideal transistor behavior Incremental output port resistance Incremental changes

More information

EIT Review 1. FE/EIT Review. Circuits. John A. Camara, Electrical Engineering Reference Manual, 6 th edition, Professional Publications, Inc, 2002.

EIT Review 1. FE/EIT Review. Circuits. John A. Camara, Electrical Engineering Reference Manual, 6 th edition, Professional Publications, Inc, 2002. FE/EIT eview Circuits Instructor: uss Tatro eferences John A. Camara, Electrical Engineering eference Manual, 6 th edition, Professional Publications, Inc, 00. John A. Camara, Practice Problems for the

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

Power System Engineering Prof. Debapriya Das Department of Electrical Engineering Indian Institute of Technology, Kharagpur

Power System Engineering Prof. Debapriya Das Department of Electrical Engineering Indian Institute of Technology, Kharagpur Power System Engineering Prof. Debapriya Das Department of Electrical Engineering Indian Institute of Technology, Kharagpur Lecture 41 Application of capacitors in distribution system (Contd.) (Refer Slide

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

10.1 Instantaneous Power 10.2 Average and Reactive Power 10.3 The RMS Value and Power Calculations 10.4 Complex Power

10.1 Instantaneous Power 10.2 Average and Reactive Power 10.3 The RMS Value and Power Calculations 10.4 Complex Power SINUSOIDAL STEADY-STATE STATE POWER CALCULATIONS C.T. Pan 1 10.1 Instantaneous Powe 10. Aveage and Reactive Powe 10.3 The RMS Value and Powe Calculations 10.4 Complex Powe C.T. Pan 10.5 Powe Calculations

More information

Chapter 12: Three-Phase Circuits

Chapter 12: Three-Phase Circuits Chater 1: Three-Phase Circuits 1.1 ntroduction 1. Balanced Three-Phase oltages 1.3 Balanced Wye-Wye connection 1.4 Balanced Wye-Delta Connection 1.7 Power in a Balanced System 1.1 NTRODUCTON A single-hase

More information

Transmission lines using a distributed equivalent circuit

Transmission lines using a distributed equivalent circuit Cambridge Uniersity Press 978-1-107-02600-1 - Transmission Lines Equialent Circuits, Electromagnetic Theory, and Photons Part 1 Transmission lines using a distributed equialent circuit in this web serice

More information

Read each question and its parts carefully before starting. Show all your work. Give units with your answers (where appropriate). 1 / 3 F.

Read each question and its parts carefully before starting. Show all your work. Give units with your answers (where appropriate). 1 / 3 F. ECSE 10 NAME: Quiz 18 May 011 ID: Read each question and its parts carefully before starting. Show all your work. Give units with your answers (where appropriate). 1. Consider the circuit diagram below.

More information

Name (print): Lab (circle): W8 Th8 Th11 Th2 F8. θ (radians) θ (degrees) cos θ sin θ π/ /2 1/2 π/4 45 2/2 2/2 π/3 60 1/2 3/2 π/

Name (print): Lab (circle): W8 Th8 Th11 Th2 F8. θ (radians) θ (degrees) cos θ sin θ π/ /2 1/2 π/4 45 2/2 2/2 π/3 60 1/2 3/2 π/ Name (print): Lab (circle): W8 Th8 Th11 Th2 F8 Trigonometric Identities ( cos(θ) = cos(θ) sin(θ) = sin(θ) sin(θ) = cos θ π ) 2 Cosines and Sines of common angles Euler s Formula θ (radians) θ (degrees)

More information

Chapter 10 AC Analysis Using Phasors

Chapter 10 AC Analysis Using Phasors Chapter 10 AC Analysis Using Phasors 10.1 Introduction We would like to use our linear circuit theorems (Nodal analysis, Mesh analysis, Thevenin and Norton equivalent circuits, Superposition, etc.) to

More information

ALTERNATING CURRENT. with X C = 0.34 A. SET UP: The specified value is the root-mean-square current; I. EXECUTE: (a) V = (0.34 A) = 0.12 A.

ALTERNATING CURRENT. with X C = 0.34 A. SET UP: The specified value is the root-mean-square current; I. EXECUTE: (a) V = (0.34 A) = 0.12 A. ATENATING UENT 3 3 IDENTIFY: i Icosωt and I I/ SET UP: The specified value is the root-mean-square current; I 34 A EXEUTE: (a) I 34 A (b) I I (34 A) 48 A (c) Since the current is positive half of the time

More information

Figure 5.2 Instantaneous Power, Voltage & Current in a Resistor

Figure 5.2 Instantaneous Power, Voltage & Current in a Resistor ower in the Sinusoidal Steady-State ower is the rate at which work is done by an electrical component. It tells us how much heat will be produced by an electric furnace, or how much light will be generated

More information

EKT103 ELECTRICAL ENGINEERING

EKT103 ELECTRICAL ENGINEERING EKT13 EECTRCA ENGNEERNG Chater 1 Three-Phase System 1 COURSE OUTCOME (CO) CO1: Ability to define and exlain the concet of single-hase and threehase system. 2 Revision A sinusoid is a signal that has the

More information

Homework 2 SJTU233. Part A. Part B. Problem 2. Part A. Problem 1. Find the impedance Zab in the circuit seen in the figure. Suppose that R = 5 Ω.

Homework 2 SJTU233. Part A. Part B. Problem 2. Part A. Problem 1. Find the impedance Zab in the circuit seen in the figure. Suppose that R = 5 Ω. Homework 2 SJTU233 Problem 1 Find the impedance Zab in the circuit seen in the figure. Suppose that R = 5 Ω. Express Zab in polar form. Enter your answer using polar notation. Express argument in degrees.

More information

VTU E-LEARNING NOTES ON:

VTU E-LEARNING NOTES ON: VTU E-LEARNING NOTES ON: 10EE35 ELECTRICAL AND ELECTRONIC MEASUREMENTS AND INSTRUMENTATION BY DR. M.S. RAVIPRAKASHA PROFESSOR & HEAD DEPT. OF E&E ENGG. MALNAD COLLEGE OF ENGG. HASSAN 573 201. SUBJECT CODE

More information

Learnabout Electronics - AC Theory

Learnabout Electronics - AC Theory Learnabout Electronics - AC Theory Facts & Formulae for AC Theory www.learnabout-electronics.org Contents AC Wave Values... 2 Capacitance... 2 Charge on a Capacitor... 2 Total Capacitance... 2 Inductance...

More information

Electric Circuits II Power Measurement. Dr. Firas Obeidat

Electric Circuits II Power Measurement. Dr. Firas Obeidat Electric Circuits II Power Measurement Dr. Firas Obeidat 1 Table of contents 1 Single-Phase Power Measurement 2 Three-Phase Power Measurement 2 Single-Phase Power Measurement The wattmeter is the instrument

More information

Transmission Line Transients

Transmission Line Transients 8 5 Transmission Line Transients CHAPTER OBJECTIES After reading this chapter, you should be able to: Proide an analysis of traelling waes on transmission lines Derie a wae equation Understand the effect

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

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

Power and Energy Measurement

Power and Energy Measurement Power and Energy Measurement ENE 240 Electrical and Electronic Measurement Class 11, February 4, 2009 werapon.chi@kmutt.ac.th 1 Work, Energy and Power Work is an activity of force and movement in the direction

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 20 121101 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Chapters 1-3 Circuit Analysis Techniques Chapter 10 Diodes Ideal Model

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

Electric Circuit Theory

Electric Circuit Theory Electric Circuit Theory Nam Ki Min nkmin@korea.ac.kr 010-9419-2320 Chapter 11 Sinusoidal Steady-State Analysis Nam Ki Min nkmin@korea.ac.kr 010-9419-2320 Contents and Objectives 3 Chapter Contents 11.1

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

ECE 201 Fall 2009 Final Exam

ECE 201 Fall 2009 Final Exam ECE 01 Fall 009 Final Exam December 16, 009 Division 0101: Tan (11:30am) Division 001: Clark (7:30 am) Division 0301: Elliott (1:30 pm) Instructions 1. DO NOT START UNTIL TOLD TO DO SO.. Write your Name,

More information

Sinusoidal Steady-State Analysis

Sinusoidal Steady-State Analysis Chapter 4 Sinusoidal Steady-State Analysis In this unit, we consider circuits in which the sources are sinusoidal in nature. The review section of this unit covers most of section 9.1 9.9 of the text.

More information

Chapter 4: Methods of Analysis

Chapter 4: Methods of Analysis Chapter 4: Methods of Analysis When SCT are not applicable, it s because the circuit is neither in series or parallel. There exist extremely powerful mathematical methods that use KVL & KCL as its basis

More information

Unified Theory of Electrical Machines and A philosophical explanation to how a Universe can be created just from nothing

Unified Theory of Electrical Machines and A philosophical explanation to how a Universe can be created just from nothing June 18, 212 Unified Theory of Electrical achines and A philosophical explanation to how a Unierse can be created just from nothing ourici hachter Holon, Israel mourici@walla.co.il Introduction It is well

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

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

Alternating Current Circuits

Alternating Current Circuits Alternating Current Circuits AC Circuit An AC circuit consists of a combination of circuit elements and an AC generator or source. The output of an AC generator is sinusoidal and varies with time according

More information

= 32.0\cis{38.7} = j Ω. Zab = Homework 2 SJTU233. Part A. Part B. Problem 2. Part A. Problem 1

= 32.0\cis{38.7} = j Ω. Zab = Homework 2 SJTU233. Part A. Part B. Problem 2. Part A. Problem 1 Homework 2 SJTU233 Problem 1 Find the impedance Zab in the circuit seen in the figure. Suppose that R = 5 Ω. Express Zab in polar form. Enter your answer using polar notation. Express argument in degrees.

More information

Three-phase AC Circuits. Measurement of Power in a Three-phase Circuit

Three-phase AC Circuits. Measurement of Power in a Three-phase Circuit Three-phase AC Circuits Lesson Measurement of Power in a Three-phase Circuit In the previous lesson, the phase and line currents for balanced delta-connected load fed from a three-phase supply, along with

More information

Circuits II EE221. Instructor: Kevin D. Donohue. Instantaneous, Average, RMS, and Apparent Power, and, Maximum Power Transfer, and Power Factors

Circuits II EE221. Instructor: Kevin D. Donohue. Instantaneous, Average, RMS, and Apparent Power, and, Maximum Power Transfer, and Power Factors Crcuts II EE1 Unt 3 Instructor: Ken D. Donohue Instantaneous, Aerage, RMS, and Apparent Power, and, Maxmum Power pp ransfer, and Power Factors Power Defntons/Unts: Work s n unts of newton-meters or joules

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

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

4/27 Friday. I have all the old homework if you need to collect them.

4/27 Friday. I have all the old homework if you need to collect them. 4/27 Friday Last HW: do not need to turn it. Solution will be posted on the web. I have all the old homework if you need to collect them. Final exam: 7-9pm, Monday, 4/30 at Lambert Fieldhouse F101 Calculator

More information

09/29/2009 Reading: Hambley Chapter 5 and Appendix A

09/29/2009 Reading: Hambley Chapter 5 and Appendix A EE40 Lec 10 Complex Numbers and Phasors Prof. Nathan Cheung 09/29/2009 Reading: Hambley Chapter 5 and Appendix A Slide 1 OUTLINE Phasors as notation for Sinusoids Arithmetic with Complex Numbers Complex

More information

Chapter 32A AC Circuits. A PowerPoint Presentation by Paul E. Tippens, Professor of Physics Southern Polytechnic State University

Chapter 32A AC Circuits. A PowerPoint Presentation by Paul E. Tippens, Professor of Physics Southern Polytechnic State University Chapter 32A AC Circuits A PowerPoint Presentation by Paul E. Tippens, Professor of Physics Southern Polytechnic State University 2007 Objectives: After completing this module, you should be able to: Describe

More information

UNDERSTAND MOTION IN ONE AND TWO DIMENSIONS

UNDERSTAND MOTION IN ONE AND TWO DIMENSIONS SUBAREA I. COMPETENCY 1.0 UNDERSTAND MOTION IN ONE AND TWO DIMENSIONS MECHANICS Skill 1.1 Calculating displacement, aerage elocity, instantaneous elocity, and acceleration in a gien frame of reference

More information

Toolbox: Electrical Systems Dynamics

Toolbox: Electrical Systems Dynamics Toolbox: Electrical Systems Dynamics Dr. John C. Wright MIT - PSFC 05 OCT 2010 Introduction Outline Outline AC and DC power transmission Basic electric circuits Electricity and the grid Image removed due

More information

Physics 142 AC Circuits Page 1. AC Circuits. I ve had a perfectly lovely evening but this wasn t it. Groucho Marx

Physics 142 AC Circuits Page 1. AC Circuits. I ve had a perfectly lovely evening but this wasn t it. Groucho Marx Physics 142 A ircuits Page 1 A ircuits I ve had a perfectly lovely evening but this wasn t it. Groucho Marx Alternating current: generators and values It is relatively easy to devise a source (a generator

More information

Chapter 10: Sinusoids and Phasors

Chapter 10: Sinusoids and Phasors Chapter 10: Sinusoids and Phasors 1. Motivation 2. Sinusoid Features 3. Phasors 4. Phasor Relationships for Circuit Elements 5. Impedance and Admittance 6. Kirchhoff s Laws in the Frequency Domain 7. Impedance

More information