6.061 / Introduction to Electric Power Systems

Size: px
Start display at page:

Download "6.061 / Introduction to Electric Power Systems"

Transcription

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

2 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.6/6.69 Introduction to Power Systems Problem Set Solutions May 6, 7 Problem :. If the motor is producing kw at radians/second, torque is T = = 4N-m. The motor constant is then: T N-m G = = =.4Ωsec I 6 A Now, back voltage would be E b = GΩI =.4 = V, and if terminal voltage is 6 V, the motor resistance must be RI = 6 = V or R =.Ω. The torque/speed relationship is: GV T = R + GΩ This is evaluated in the attached script and is shown in Figure. 6 Series Motor for Problem. Current, A x Torque, N m Speed, radians/sec Figure : Torque vs. Speed Characteristic: Series Connected Motor. For the vehicle application, (a) The equivalent wheel radius is m/sec R eq = =.8m Rad/sec (b) If the car weighs, kg and is accelerating at m/s, the accelerating force is F A = N.

3 (c) Drag force is ( ) u F D = m/s (d) Then the drive force required is: ( ) G F A + F D F A + F D = I Or I = R G eq Velocity and required force are shown in Figure. Speed is simply u = At, so then we can find voltage at the terminals by: V = RI + Figure 3 shows required motor current, which for the resistive controller is also drive current. The middle chart in this figure is voltage drop across the controller. Power required from the source is just P s = V s I. G R eq ui R eq Acceleration Transient Required force Velocity, m/s x Figure : Velocity and drive force In the next part we replace the resistive controller by an ideal buck converter (chopper). The duty cycle of the buck converter is d = and of course, once that is found source current is: V V s I s = di Current in the motor and required power are shown in Figure 4. Of course if the buck converter (chopper) is ideal, power into the motor and power from the source are the same.

4 7 Resistive Controller Source Power, W Controller V Current, A x Figure 3: Motor Current, Resistance Voltage Drop and Source Power: Resistive Controller 3. For Simulation of this situation is a fairly straightfoward exercise. Perhaps the most ambitious assumption here is the the car does not blow a circuit breaker. The scripts required to do this simulation are appended and the result is shown in Figure. Problem Since the two motors achieve base power at different speeds they have different low speed torque limits. For Motor A that low speed torque limit is, / = 4 N, for Motor B it is /6. = 8 N. Then the motor coefficients are G A I f = 4/9 4.3 and G B I f = 8/ The same force requirements as were calculated for the series connected motor hold and current is just I a = F A + F D GI f R eq Field current is constant: I f =, /6 = A. With a resistive controller source power is simply P s = V s (I a + I f ) The comparison is shown in Figure 6. The limited jerk rate acceleration example assumes a jerk rate of.m/s 3. This is about / g per second and is actually pretty gentle. During this limited period velocity is u = t After an initial transient of seconds we reach the stated acceleration rate of a = m/s (about / g) and u = m/s. The end of the acceleration is a mirror image. The resulting acceleration and velocity profiles are shown in Figure 7. All of the other details of this calculation are simple extensions of those done earlier. As this is a separately excited machine, armature current is directly proportional to required force. Acceleration and drag force are shown in Figure 8. Voltage components: back voltage E b = GΩI f, resistive drop and total terminal voltage and curents (armature current is proportional to force and source current at the input to the armature chopper) are shown in Figure 9. 3

5 6 Chopper Controller Source Power, W Current, A x Figure 4: Source Current and Source Power: Ideal Chopper Controller Finally, power is shown in Figure : mechanical power is force times velocity (dotted) and electrical power is source voltage times current (solid). 4

6 4 Uncontrolled acceleration Current, A Speed, m/s Figure : Simulation of uncontrolled acceleration Motor Comparison 4 Currents Motor A Motor B x 3 Power. Motor A Motor B Accel Figure 6: Motor Comparison

7 Jerk Limited Acceleration.8 Total Newtons Velocity Acc Figure 7: Limited Jerk Rate Acceleration x 4 Forces Acceleration Drag x Figure 8: Force addition 6

8 6 Chopper Controlled Voltage and Current Voltages 4 3 Internal Resistive Terminal Amperes 3 Armature Total Figure 9: Voltages and Currents x 3 Chopper Controlled Input and Mechanical Power. Mechanical Output Electrical Input Watts Figure : Mechanical and Electrical Power 7

9 % 6.6/6.96 Spring 7 Problem Set % Problem R =.; G =.4; V = 6; om = ::; I = V./ (R + G.* om); T = G.* I.^; % motor series resistance, ohms % motor constant, ohm-sec % terminal voltage % speed range % current drawn by series motor % and resulting torque figure() subplot() plot(om, I) title( Series Motor for Problem. ) ylabel( Current, A ) subplot() plot(om, T) ylabel( Torque, N-m ) xlabel( Speed, radians/sec ) % Part M = ; D = ; Req =.8; a = ; t = :.:; u = a.* t; Fa = M*a; Fd = D.* (u./ ).^; Ft = Fa+Fd; Ia = sqrt(ft./ (G/Req)); Psr = V.* Ia; Eb = (G/Req).* Ia.* u; Er = R.* Ia; Erc = V - Eb - Er; Vt = Eb + Er; vr = Vt./ V; Is = Ia.* vr; Psc = V.* Is; % we are gonna accelerate this thing % drag force ( kw at m/s) at m/s % equivalent wheel radius % required acceleration % time for acceleration % so this is speed % acceleration force % drag force % required current % power from the source: Resistive controller % back voltage % resistive drop in motor % drop in resistive controller % chopper output voltage % chopper duty cycle % current from source % power from source: chopper controller figure() subplot 8

10 plot(t, u) title( Acceleration Transient ) ylabel( Velocity, m/s ) subplot plot(t, Ft) ylabel( Required force ) xlabel( ) figure(3) subplot 3 plot(t, Ia) title( Resistive Controller ) ylabel( Current, A ) subplot 3 plot(t, Erc) ylabel( Controller V ) subplot 33 plot(t, Psr) ylabel( Source Power, W ) xlabel( ) figure(4) subplot plot(t, Is) title( Chopper Controller ) ylabel( Current, A ) subplot plot(t, Psc) ylabel( Source Power, W ) xlabel( ) % now to simulate the uncontrolled acceleration example ts = :.:; S = [ ] ; [tsim, S] = ode3( tc, ts, S); Isim = S(:,); Usim = S(:,); figure() subplot plot(tsim, Isim) title( Uncontrolled acceleration ) ylabel( Current, A ) subplot plot(tsim, Usim) 9

11 ylabel( Speed, m/s ) xlabel( ) % Problem GA = /(*9); GB = /(6.*9); If = /6; t = :.:; u = a.* t; Fa = M*a; Fd = D.* (u./ ).^; Ft = Fa+Fd; R_A = (V -GA*)/9; fprintf( Motor_A R = %g\n, R_A); % acceleration force % drag force IA = Ft./ GA; IB = Ft./ GB; I_a = IA + If; I_b = IB + If; P_a = V.* I_a; P_b = V.* I_b; % required armature current % total current: add back field % power required figure(6) subplot() plot(t, I_a, -, t, I_b, -- ) legend( Motor A, Motor B ) ylabel( Currents ) title( Motor Comparison ) subplot() plot(t, P_a, -, t, P_b, -- ) ylabel( Power ) xlabel( Accel ) legend( Motor A, Motor B ) % Jerk rate limit J =.; a = ; dt =.; T = ; T = ; T3 = ; t = :dt:t;

12 a = J.* t; u =.*J.* t.^; U = u(length(t)); t = T+dt:dt:T; a = a.* ones(size(t)); u = U + a.* (t-t); U = u(length(u)); t3 = T+dt:dt:T3; a3 = a - J.* (t3 - T); u3 = U + a.* (t3-t) -.*J.* (t3 - T).^; t = [t t t3]; a = [a a a3]; u = [u u u3]; figure(7) subplot plot(t, a) title( Jerk Limited Acceleration ) ylabel( Acc ) subplot plot(t, u) ylabel( Velocity ) xlabel( ) Fa = M.* a; Fd = D.* (u./ ).^; Ft = Fa + Fd; Ia = Ft./ (GA/Req); V_r = R_A.* Ia; E_a = (GA/Req).* u; Vt = E_a + V_r; vr = Vt/V; Is = vr.* Ia + If; Ps = V.* Is; Pm = u.* Ft; % required current % internal resistance drop % back voltage % chopper ratio % source current figure(9) subplot plot(t, Fa, t, Fd, -- ) title( Forces ) ylabel( Newtons ) legend( Acceleration, Drag ) subplot plot(t, Ft) ylabel( Total )

13 xlabel( ) figure() subplot plot(t, E_a, --, t, V_r, -., t, Vt) title( Chopper Controlled Voltage and Current ) ylabel( Voltages ) legend( Internal, Resistive, Terminal ) subplot plot(t, Ia, --, t, Is) legend( Armature, Total ) ylabel( Amperes ) xlabel( ) figure(8) plot(t, Pm, --, t, Ps) title( Chopper Controlled Input and Mechanical Power ) ylabel( Watts ); xlabel( ) legend( Mechanical Output, Electrical Input )

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 1 Solutions September 1, 5 Problem 1: If we assume, as suggested in the

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 17, 5 Problem 1: First, note that λ 1 = L 1 i 1 +

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

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

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

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.01/.90 Introduction to Power Systems Problem Set 4 Solutions February 28, 2007 Problem 1: Part 1: Chapter,

More information

State Space Representation

State Space Representation ME Homework #6 State Space Representation Last Updated September 6 6. From the homework problems on the following pages 5. 5. 5.6 5.7. 5.6 Chapter 5 Homework Problems 5.6. Simulation of Linear and Nonlinear

More information

LESSON 20 ALTERNATOR OPERATION OF SYNCHRONOUS MACHINES

LESSON 20 ALTERNATOR OPERATION OF SYNCHRONOUS MACHINES ET 332b Ac Motors, Generators and Power Systems LESSON 20 ALTERNATOR OPERATION OF SYNCHRONOUS MACHINES 1 LEARNING OBJECTIVES After this presentation you will be able to: Interpret alternator phasor diagrams

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

EE 410/510: Electromechanical Systems Chapter 4

EE 410/510: Electromechanical Systems Chapter 4 EE 410/510: Electromechanical Systems Chapter 4 Chapter 4. Direct Current Electric Machines and Motion Devices Permanent Magnet DC Electric Machines Radial Topology Simulation and Experimental Studies

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

Lecture (20) DC Machine Examples Start of Synchronous Machines

Lecture (20) DC Machine Examples Start of Synchronous Machines Lecture (20) DC Machine Examples Start of Synchronous Machines Energy Systems Research Laboratory, FIU All rights reserved. 20-1 Energy Systems Research Laboratory, FIU All rights reserved. 20-2 Ra R f

More information

The basic principle to be used in mechanical systems to derive a mathematical model is Newton s law,

The basic principle to be used in mechanical systems to derive a mathematical model is Newton s law, Chapter. DYNAMIC MODELING Understanding the nature of the process to be controlled is a central issue for a control engineer. Thus the engineer must construct a model of the process with whatever information

More information

2.2. THE PRODUCT AND QUOTIENT RULES 179. P dv dt + V dp. dt.

2.2. THE PRODUCT AND QUOTIENT RULES 179. P dv dt + V dp. dt. 22 THE PRODUCT AND QUOTIENT RULES 179 Thus, using the Product Rule, we find that dt = 1 k P dv + V dp At t = t 0, we obtain dt = 1 [(100, 000)(0005) + (002)( 100)] = 6225 K/s t0 8 Hence, at time t 0, the

More information

Tutorial 1 - Drive fundamentals and DC motor characteristics

Tutorial 1 - Drive fundamentals and DC motor characteristics University of New South Wales School of Electrical Engineering & elecommunications ELEC4613 ELECRIC DRIVE SYSEMS utorial 1 - Drive fundamentals and DC motor characteristics 1. In the hoist drive system

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 11 Solutions December 4, 2005 Problem 1 This is a straightforward linear

More information

Rotational Systems, Gears, and DC Servo Motors

Rotational Systems, Gears, and DC Servo Motors Rotational Systems Rotational Systems, Gears, and DC Servo Motors Rotational systems behave exactly like translational systems, except that The state (angle) is denoted with rather than x (position) Inertia

More information

Feedback Control Systems

Feedback Control Systems ME Homework #0 Feedback Control Systems Last Updated November 06 Text problem 67 (Revised Chapter 6 Homework Problems- attached) 65 Chapter 6 Homework Problems 65 Transient Response of a Second Order Model

More information

Lecture 3: Electrical Power and Energy

Lecture 3: Electrical Power and Energy Lecture 3: Electrical Power and Energy Recall from Lecture 2 E (V) I R E Voltage Similar to water pressure Unit: Volts (V) I Current Similar to water flow Unit: Amperes (A) R Resistance Similar to water

More information

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

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Introduction to Power Systems Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061 Introduction to Power Systems Problem Set 5 Solutions February 27, 2011 Problem 1: The inductance and

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 Solutions October 0, 2005 Problem : The problem statement should have

More information

Lecture 1: Introduction to System Modeling and Control. Introduction Basic Definitions Different Model Types System Identification

Lecture 1: Introduction to System Modeling and Control. Introduction Basic Definitions Different Model Types System Identification Lecture 1: Introduction to System Modeling and Control Introduction Basic Definitions Different Model Types System Identification What is Mathematical Model? A set of mathematical equations (e.g., differential

More information

Series & Parallel Resistors 3/17/2015 1

Series & Parallel Resistors 3/17/2015 1 Series & Parallel Resistors 3/17/2015 1 Series Resistors & Voltage Division Consider the single-loop circuit as shown in figure. The two resistors are in series, since the same current i flows in both

More information

DC motors. 1. Parallel (shunt) excited DC motor

DC motors. 1. Parallel (shunt) excited DC motor DC motors 1. Parallel (shunt) excited DC motor A shunt excited DC motor s terminal voltage is 500 V. The armature resistance is 0,5 Ω, field resistance is 250 Ω. On a certain load it takes 20 A current

More information

wave speed (metre/second, m/s) = frequency (hertz, Hz) x wavelength (metre, m)

wave speed (metre/second, m/s) = frequency (hertz, Hz) x wavelength (metre, m) Physics formulae: Unit P1 (GCSE Science ( Core Science )): The relationship between wave speed, frequency and wavelength: wave speed (metre/second, m/s) = frequency (hertz, Hz) x wavelength (metre, m)

More information

2.003SC Engineering Dynamics

2.003SC Engineering Dynamics 2.003SC Engineering Dynamics Problem Set 1 1. This is a review problem on the topic of projectile motion. A football player kicks a ball, giving it an initial speed of 80 ft/s with an initial angle relative

More information

Lesson 17: Synchronous Machines

Lesson 17: Synchronous Machines Lesson 17: Synchronous Machines ET 332b Ac Motors, Generators and Power Systems Lesson 17_et332b.pptx 1 Learning Objectives After this presentation you will be able to: Explain how synchronous machines

More information

ELECTRONICS E # 1 FUNDAMENTALS 2/2/2011

ELECTRONICS E # 1 FUNDAMENTALS 2/2/2011 FE Review 1 ELECTRONICS E # 1 FUNDAMENTALS Electric Charge 2 In an electric circuit it there is a conservation of charge. The net electric charge is constant. There are positive and negative charges. Like

More information

Electrical Drives I. Week 3: SPEED-TORQUE characteristics of Electric motors

Electrical Drives I. Week 3: SPEED-TORQUE characteristics of Electric motors Electrical Drives I Week 3: SPEED-TORQUE characteristics of Electric motors b- Shunt DC motor: I f Series and shunt field resistances are connected in shunt (parallel) Exhibits identical characteristics

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.004 Dynamics and Control II Spring 2008 or information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 2 I C + 4 * Massachusetts

More information

Problem Solving Circular Motion Kinematics Challenge Problem Solutions

Problem Solving Circular Motion Kinematics Challenge Problem Solutions Problem Solving Circular Motion Kinematics Challenge Problem Solutions Problem 1 A bead is given a small push at the top of a hoop (position A) and is constrained to slide around a frictionless circular

More information

Model of a DC Generator Driving a DC Motor (which propels a car)

Model of a DC Generator Driving a DC Motor (which propels a car) Model of a DC Generator Driving a DC Motor (which propels a car) John Hung 5 July 2011 The dc is connected to the dc as illustrated in Fig. 1. Both machines are of permanent magnet type, so their respective

More information

Overview of motors and motion control

Overview of motors and motion control Overview of motors and motion control. Elements of a motion-control system Power upply High-level controller ow-level controller Driver Motor. Types of motors discussed here; Brushed, PM DC Motors Cheap,

More information

You know for EE 303 that electrical speed for a generator equals the mechanical speed times the number of poles, per eq. (1).

You know for EE 303 that electrical speed for a generator equals the mechanical speed times the number of poles, per eq. (1). Stability 1 1. Introduction We now begin Chapter 14.1 in your text. Our previous work in this course has focused on analysis of currents during faulted conditions in order to design protective systems

More information

Power System Stability GENERATOR CONTROL AND PROTECTION

Power System Stability GENERATOR CONTROL AND PROTECTION Power System Stability Outline Basis for Steady-State Stability Transient Stability Effect of Excitation System on Stability Small Signal Stability Power System Stabilizers Speed Based Integral of Accelerating

More information

Applied Electronics and Electrical Machines

Applied Electronics and Electrical Machines School of Electrical and Computer Engineering Applied Electronics and Electrical Machines (ELEC 365) Fall 2015 DC Machines 1 DC Machines Key educational goals: Develop the basic principle of operation

More information

XXIX Applications of Differential Equations

XXIX Applications of Differential Equations MATHEMATICS 01-BNK-05 Advanced Calculus Martin Huard Winter 015 1. Suppose that the rate at which a population of size yt at time t changes is proportional to the amount present. This gives rise to the

More information

Design a SSV. Small solar vehicle. Case SSV part 1

Design a SSV. Small solar vehicle. Case SSV part 1 1 Design a SSV Small solar vehicle Case SSV part 1 2 Contents 1. The characteristics of the solar panel... 4 2. Optimal gear ratio... 10 3. Bisection method... 14 4. Sankey diagrams... 18 A) Sankey diagram

More information

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER Objectives Explain the relationship between power and work. Explain the relationship between power, force, and speed for an object in translational motion. Calculate a device s efficiency in terms of the

More information

Step Motor Modeling. Step Motor Modeling K. Craig 1

Step Motor Modeling. Step Motor Modeling K. Craig 1 Step Motor Modeling Step Motor Modeling K. Craig 1 Stepper Motor Models Under steady operation at low speeds, we usually do not need to differentiate between VR motors and PM motors (a hybrid motor is

More information

d = k where k is a constant of proportionality equal to the gradient.

d = k where k is a constant of proportionality equal to the gradient. VARIATION In Physics and Chemistry there are many laws where one quantity varies in some way with another quantity. We will be studying three types of variation direct, inverse and joint.. DIRECT VARIATION

More information

CHAPTER 6 SIMPLE EQUATIONS

CHAPTER 6 SIMPLE EQUATIONS CHAPTER 6 SIMPLE EQUATIONS EXERCISE 6, Page 5 1. Solve the equation: x + 5 = 7 Since x + 5 = 7 then x = 7 5 x = from which, x = = 1. Solve the equation: 8-3t = Since 8 3t = then 8 = 3t 6 = 3t from which,

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

8.6 Drag Forces in Fluids

8.6 Drag Forces in Fluids 86 Drag Forces in Fluids When a solid object moves through a fluid it will experience a resistive force, called the drag force, opposing its motion The fluid may be a liquid or a gas This force is a very

More information

6.334 Power Electronics Spring 2007

6.334 Power Electronics Spring 2007 MIT OpenCourseWare http://ocw.mit.edu 6.334 Power Electronics Spring 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Chapter 1 Introduction and Analysis

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 11 Solutions November 27, 211 Problem 1: Variable Reluctance Motor Much

More information

For any use or distribution of this textbook, please cite as follows:

For any use or distribution of this textbook, please cite as follows: MIT OpenCourseWare http://ocw.mit.edu Electromechanical Dynamics For any use or distribution of this textbook, please cite as follows: Woodson, Herbert H., and James R. Melcher. Electromechanical Dynamics.

More information

Greek Letter Omega Ω = Ohm (Volts per Ampere)

Greek Letter Omega Ω = Ohm (Volts per Ampere) ) What is electric current? Flow of Electric Charge 2) What is the unit we use for electric current? Amperes (Coulombs per Second) 3) What is electrical resistance? Resistance to Electric Current 4) What

More information

Introduction. Energy is needed in different forms: Light bulbs and heaters need electrical energy Fans and rolling miles need mechanical energy

Introduction. Energy is needed in different forms: Light bulbs and heaters need electrical energy Fans and rolling miles need mechanical energy Introduction Energy is needed in different forms: Light bulbs and heaters need electrical energy Fans and rolling miles need mechanical energy What does AC and DC stand for? Electrical machines Motors

More information

Lecture 4: Losses and Heat Transfer

Lecture 4: Losses and Heat Transfer 1 / 26 Lecture 4: Losses and Heat Transfer ELEC-E845 Electric Drives (5 ECTS) Marko Hinkkanen Aalto University School of Electrical Engineering Autumn 215 2 / 26 Learning Outcomes After this lecture and

More information

Sixth Form A Level Physics Transition Booklet. Name:

Sixth Form A Level Physics Transition Booklet. Name: Sixth Form A Level Physics Transition Booklet Name: Welcome to Physics at Portland Place This Transition work is designed to help you to bridge the gap between your GCSE studies and AS/A Level. Why do

More information

Unit 2 Electrical Quantities and Ohm s Law

Unit 2 Electrical Quantities and Ohm s Law Electrical Quantities and Ohm s Law Objectives: Define a coulomb. Define an ampere. Define a volt. Define an ohm. Define a watt. Objectives: Compute electrical values using Ohm s law. Discuss basic types

More information

a) Find the equation of motion of the system and write it in matrix form.

a) Find the equation of motion of the system and write it in matrix form. .003 Engineering Dynamics Problem Set Problem : Torsional Oscillator Two disks of radius r and r and mass m and m are mounted in series with steel shafts. The shaft between the base and m has length L

More information

Generators. What its all about

Generators. What its all about Generators What its all about How do we make a generator? Synchronous Operation Rotor Magnetic Field Stator Magnetic Field Forces and Magnetic Fields Force Between Fields Motoring Generators & motors are

More information

Electric Vehicle Performance Power and Efficiency

Electric Vehicle Performance Power and Efficiency Electric Vehicle Performance Power and Efficiency 1 Assignment a) Examine measurement guide and electric vehicle (EV) arrangement. b) Drive the route according to teacher s instruction and download measured

More information

Errata to LINEAR CIRCUITS, VOL1 DECARLO/LIN, EDITION 3 CHAPTERS 1 11 (updated 8/23/10)

Errata to LINEAR CIRCUITS, VOL1 DECARLO/LIN, EDITION 3 CHAPTERS 1 11 (updated 8/23/10) Errata to LINEAR CIRCUITS, VOL1 DECARLO/LIN, EDITION 3 CHAPTERS 1 11 (updated 8/23/10) page location correction 42 Ch1, P1, statement (e) Figure P.1.3b should be Figure P.1.1b 46 Ch1, P19, statement (c)

More information

FORMULAS FOR MOTORIZED LINEAR MOTION SYSTEMS

FORMULAS FOR MOTORIZED LINEAR MOTION SYSTEMS FOR MOTORIZED LINEAR MOTION SYSTEMS Haydon Kerk Motion Solutions Pittman Motors : 203 756 7441 : 267 933 2105 SYMBOLS AND UNITS Symbol Description Units Symbol Description Units a linear acceleration m/s

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

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

PESIT Bangalore South Campus Hosur road, 1km before Electronic City, Bengaluru -100 Department of Electronics & Communication Engineering

PESIT Bangalore South Campus Hosur road, 1km before Electronic City, Bengaluru -100 Department of Electronics & Communication Engineering QUESTION PAPER INTERNAL ASSESSMENT TEST 2 Date : /10/2016 Marks: 0 Subject & Code: BASIC ELECTRICAL ENGINEERING -15ELE15 Sec : F,G,H,I,J,K Name of faculty : Dhanashree Bhate, Hema B, Prashanth V Time :

More information

Applications of Second-Order Linear Differential Equations

Applications of Second-Order Linear Differential Equations CHAPTER 14 Applications of Second-Order Linear Differential Equations SPRING PROBLEMS The simple spring system shown in Fig. 14-! consists of a mass m attached lo the lower end of a spring that is itself

More information

Electromagnetic Energy Conversion Exam 98-Elec-A6 Spring 2002

Electromagnetic Energy Conversion Exam 98-Elec-A6 Spring 2002 Front Page Electromagnetic Energy Conversion Exam 98-Elec-A6 Spring 2002 Notes: Attempt question 1 and FOUR (4) other questions (FVE (5) questions in all). Unless you indicate otherwise, the first five

More information

Massachusetts Institute of Technology - Physics Department

Massachusetts Institute of Technology - Physics Department Massachusetts Institute of Technology - Physics Department Physics - 8.01 Assignment #4 October 6, 1999. It is strongly recommended that you read about a subject before it is covered in lectures. Lecture

More information

Physics 111. Lecture 23 (Walker: 10.6, 11.1) Conservation of Energy in Rotation Torque March 30, Kinetic Energy of Rolling Object

Physics 111. Lecture 23 (Walker: 10.6, 11.1) Conservation of Energy in Rotation Torque March 30, Kinetic Energy of Rolling Object Physics 111 Lecture 3 (Walker: 10.6, 11.1) Conservation of Energy in Rotation Torque March 30, 009 Lecture 3 1/4 Kinetic Energy of Rolling Object Total kinetic energy of a rolling object is the sum of

More information

Electrical equations calculations

Electrical equations calculations Task Use the following equations to answer the questions. You may need to rearrange the equations and convert the units. An example has been done for you. P = I x V V = I x R P = I 2 x R E = P x t E =

More information

Synchronous Machines

Synchronous Machines Synchronous Machines Synchronous generators or alternators are used to convert mechanical power derived from steam, gas, or hydraulic-turbine to ac electric power Synchronous generators are the primary

More information

Electromagnetism Checklist

Electromagnetism Checklist Electromagnetism Checklist Elementary Charge and Conservation of Charge 4.1.1A Convert from elementary charge to charge in coulombs What is the charge in coulombs on an object with an elementary charge

More information

2.004 Dynamics and Control II Spring 2008

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

More information

3 Lab 3: DC Motor Transfer Function Estimation by Explicit Measurement

3 Lab 3: DC Motor Transfer Function Estimation by Explicit Measurement 3 Lab 3: DC Motor Transfer Function Estimation by Explicit Measurement 3.1 Introduction There are two common methods for determining a plant s transfer function. They are: 1. Measure all the physical parameters

More information

Laboratory Exercise M-2 Power measurements

Laboratory Exercise M-2 Power measurements SILESIAN UNIVERSITY OF TECHNOLOGY FACULTY OF ENERGY AND ENVIRONMENTAL ENGINEERING INSTITUTE OF POWER ENGINEERING AND TURBOMACHINERY INSTRUCTIONS to Measurements of energetic quantities (Pomiary wielkości

More information

Announcements. Principle of Work and Energy - Sections Engr222 Spring 2004 Chapter Test Wednesday

Announcements. Principle of Work and Energy - Sections Engr222 Spring 2004 Chapter Test Wednesday Announcements Test Wednesday Closed book 3 page sheet sheet (on web) Calculator Chap 12.6-10, 13.1-6 Principle of Work and Energy - Sections 14.1-3 Today s Objectives: Students will be able to: a) Calculate

More information

16.07 Dynamics. Problem Set 3

16.07 Dynamics. Problem Set 3 NAME :..................... Massachusetts Institute of Technology 16.07 Dynamics Problem Set 3 Out date: Sept 17, 2007 Due date: Sept 26, 2007 Problem 1 Problem 2 Problem 3 Problem 4 Study Time Time Spent

More information

ENGG4420 LECTURE 7. CHAPTER 1 BY RADU MURESAN Page 1. September :29 PM

ENGG4420 LECTURE 7. CHAPTER 1 BY RADU MURESAN Page 1. September :29 PM CHAPTER 1 BY RADU MURESAN Page 1 ENGG4420 LECTURE 7 September 21 10 2:29 PM MODELS OF ELECTRIC CIRCUITS Electric circuits contain sources of electric voltage and current and other electronic elements such

More information

Electric Currents and Resistance II

Electric Currents and Resistance II Electric Currents and Resistance II Physics 2415 Lecture 11 Michael Fowler, UVa Today s Topics First we ll mention capacitors Power usage: kwh, etc. The microscopic picture Temperature dependence of resistivity

More information

Question 3: How is the electric potential difference between the two points defined? State its S.I. unit.

Question 3: How is the electric potential difference between the two points defined? State its S.I. unit. EXERCISE (8 A) Question : Define the term current and state its S.I unit. Solution : Current is defined as the rate of flow of charge. I = Q/t Its S.I. unit is Ampere. Question 2: Define the term electric

More information

Introduction to Controls

Introduction to Controls EE 474 Review Exam 1 Name Answer each of the questions. Show your work. Note were essay-type answers are requested. Answer with complete sentences. Incomplete sentences will count heavily against the grade.

More information

Compartmental Analysis

Compartmental Analysis Compartmental Analysis Math 366 - Differential Equations Material Covering Lab 3 We now learn how to model some physical phonomena through DE. General steps for modeling (you are encouraged to find your

More information

(Refer Slide Time: 00:55) Friends, today we shall continue to study about the modelling of synchronous machine. (Refer Slide Time: 01:09)

(Refer Slide Time: 00:55) Friends, today we shall continue to study about the modelling of synchronous machine. (Refer Slide Time: 01:09) (Refer Slide Time: 00:55) Power System Dynamics Prof. M. L. Kothari Department of Electrical Engineering Indian Institute of Technology, Delhi Lecture - 09 Modelling of Synchronous Machine (Contd ) Friends,

More information

ELECTRICITY & MAGNETISM CHAPTER 8

ELECTRICITY & MAGNETISM CHAPTER 8 ELECTRICITY & MAGNETISM CHAPTER 8 E & M - Focus Electric Charge & Force Magnetism Current, Voltage & Power Electromagnetism Simple Electrical Circuits Voltage & Current Transformation Electric Charge &

More information

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Chapter 9b: Numerical Methods for Calculus and Differential Equations Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Acceleration Initial-Value Problems Consider a skydiver

More information

Chapter 33 - Electric Fields and Potential. Chapter 34 - Electric Current

Chapter 33 - Electric Fields and Potential. Chapter 34 - Electric Current Chapter 33 - Electric Fields and Potential Chapter 34 - Electric Current Electric Force acts through a field An electric field surrounds every electric charge. It exerts a force that causes electric charges

More information

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

ET3-7: Modelling I(V) Introduction and Objectives. Electrical, Mechanical and Thermal Systems

ET3-7: Modelling I(V) Introduction and Objectives. Electrical, Mechanical and Thermal Systems ET3-7: Modelling I(V) Introduction and Objectives Electrical, Mechanical and Thermal Systems Objectives analyse and model basic linear dynamic systems -Electrical -Mechanical -Thermal Recognise the analogies

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

Revised October 6, EEL 3211 ( 2008, H. Zmuda) 7. DC Machines 1

Revised October 6, EEL 3211 ( 2008, H. Zmuda) 7. DC Machines 1 DC Machines Revised October 6, 2008 EEL 3211 ( 2008, H. Zmuda) 7. DC Machines 1 DC Machines: DC Motors are rapidly losing popularity. Until recent advances in power electronics DC motors excelled in terms

More information

[1] In your answer, you should use appropriate technical terms, spelled correctly.... A satellite. Fig. 4.1

[1] In your answer, you should use appropriate technical terms, spelled correctly.... A satellite. Fig. 4.1 1 (a) Define the following terms: couple... [1] torque of a couple. In your answer, you should use appropriate technical terms, spelled correctly.... [1] (b) Fig. 4.1 shows a satellite in space moving

More information

2.4 Harmonic Oscillator Models

2.4 Harmonic Oscillator Models 2.4 Harmonic Oscillator Models In this section we give three important examples from physics of harmonic oscillator models. Such models are ubiquitous in physics, but are also used in chemistry, biology,

More information

Applications of Second-Order Differential Equations

Applications of Second-Order Differential Equations Applications of Second-Order Differential Equations ymy/013 Building Intuition Even though there are an infinite number of differential equations, they all share common characteristics that allow intuition

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

ELECTRICITY. Prepared by: M. S. KumarSwamy, TGT(Maths) Page

ELECTRICITY. Prepared by: M. S. KumarSwamy, TGT(Maths) Page ELECTRICITY 1. Name a device that helps to maintain a potential difference across a conductor. Cell or battery 2. Define 1 volt. Express it in terms of SI unit of work and charge calculate the amount of

More information

Problem Set Spring 2012

Problem Set Spring 2012 Problem Set 3 2.086 Spring 2012 Released: Tuesday, 13 March 2012 Due: Tuesday, 3 April, at 2:30 PM by hardcopy at the beginning of class. Note that no Matlab scripts need be uploaded to Stellar for this

More information

د شوقي حامد عرفه ابراهيم

د شوقي حامد عرفه ابراهيم 2015 /1/19 اإلجابة النموذجية لمادة نظم التشغيل الكهربية ك 563 د شوقي حامد عرفه ابراهيم يوم االثنين الموافق Benha University Benha Faculty of Engineering Subject: Electrical drives (E563) Time: 3hours Fifth

More information

CPO Science Foundations of Physics

CPO Science Foundations of Physics CPO Science Foundations of Physics Unit 4, Chapter 10 Chapter 9 Unit 4: Energy and Momentum Chapter 10 Work and Energy 10.1 Machines and Mechanical Advantage 10.3 Energy and Conservation of Energy Chapter

More information

Lesson 11: Mass-Spring, Resonance and ode45

Lesson 11: Mass-Spring, Resonance and ode45 Lesson 11: Mass-Spring, Resonance and ode45 11.1 Applied Problem. Trucks and cars have springs and shock absorbers to make a comfortable and safe ride. Without good shock absorbers, the truck or car will

More information

Unit Workbook 4 - Level 4 ENG U8 Mechanical Principles 2018 UniCourse Ltd. All Rights Reserved. Sample

Unit Workbook 4 - Level 4 ENG U8 Mechanical Principles 2018 UniCourse Ltd. All Rights Reserved. Sample Pearson BTEC Level 4 Higher Nationals in Engineering (RQF) Unit 8: Mechanical Principles Unit Workbook 2 in a series of 4 for this unit Learning Outcome 2 Dynamic Mechanical Systems Page 1 of 17 1.3 Work

More information

8.01x Classical Mechanics, Fall 2016 Massachusetts Institute of Technology. Problem Set 2

8.01x Classical Mechanics, Fall 2016 Massachusetts Institute of Technology. Problem Set 2 8.01x Classical Mechanics, Fall 2016 Massachusetts Institute of Technology 1. Stacked Blocks Problem Set 2 Consider two blocks that are resting one on top of the other. The lower block has mass m 2 = 4.8

More information