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

Size: px
Start display at page:

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

Transcription

1 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines Problem Set 1 Solutions September 1, 5 Problem 1: If we assume, as suggested in the problem statement, that fields outside the coil can be ignored, magnetic field inside the coil is simply H = i z Ni and outside the coil magnetic field is zero. On the inner surface of the coil the normal vector is i r and r = µ H z so that traction on the surface is pressure pushing out: P r = µ ( ) Ni Hoop force per unit length is just pressure times radius: F h = RP r = µ ( ) Ni R To do this same problem using the principal of virtual work, see that co-energy is just coenergy per unit volume times volume, or W m = u ( ) Ni πr Hoop force is the first derivative of co-energy with respect to hoop circumference, which is C = πr: F h = W m C = 1 W m π R = 1 ( ( ) µ Ni πr ) = µ ( ) Ni R π R to get hoop force per unit length, divide by and we get the same answer. 1 A I T_r T_o T_r Time intervals t Figure 1: Current in coil for Problem 1

2 Problem : I have re-drawn the current waveform to show my notation for time intervals (Figure 1). If we note H z as magnetic field within the conductive cylinder, current in that cylinder must be: K θ = σt s ( ) µ πri πr i t H H z z = T s t where t s and R i are shell thickness and radius, respectively. The shell time constant is T s = µ σt s R If K θ is azimuthal current in the shell, field inside the shell is: so that H z = K θ + Ni T s H z t + H z = Ni Now we have to patch together a solution. Note that if we note H z = Ni, the step response of our differential equation would be: ( ) Hz s = H z 1 e t Since the ramp which is the current waveform during interval 1 is simply the integral of a step, and noting that the response of an ODE to the integral of a waveform is the integral of the response to the waveform itself, the response during the first interval is H z1 = t H z (1 e t ) ( t dt = H z T ( ) ) s 1 e t At the end of this interval the field has risen to: ( H z (1) = H z 1 T ( )) s 1 e Tr During the second time interval the excitation is constant and we have the equivalent of a step response with an initial condition: ( H z = H z H z H (1) z ) e t where t is time from the start of interval. With a little bit of manipulation this is found to be: ( H z = H z 1 T ( ) ) s 1 e Tr e t In the third time interval we have an excitation which is the same as the steady state minus the same ramp as started the problem: ( t3 H z3 = H z H z T ( )) s 1 e t 3 Writing that out and evaluating at the end of the third time interval, when excitation current reaches zero, ( ( ) ( )) H z (3) = H z 1 e Tr 1 e To+Tr

3 and in the fourth time interval the system is homogeneous: H z4 = H (3) z e t 4 It is relatively easy in MATAB to build up the waveforms for H z by simply concatenating the time periods. Shown in Figure are the field inside of the cylinder and outside (which is just Ni ) Problem 1. Axial Field Outside Shell, A/m Inside Shell, A/m Time, s Figure : Magnetic Fields Net pressure on the cylinder is, noting that the normal vector inside is just i r and outside is i r, P r = µ ( ( ) ) Ni Hz so that hoop force is F H = RP r This is shown in Figure 3. Note that it starts out negative as the field outside is greater than the field inside. To compute coil voltage we need: v = Ri + N dφ dt Now, the resistive term Ri is straightforward. Flux consists of two parts: Φ = µ A 1 H z + µ A Ni 3

4 Problem 1.: Hoop force per unit length 1 N/m Time, s Figure 3: Net Pressure where A 1 = πr i (R i is the shell radius) and A = π(r o R i ) (R o is the coil radius). The rate of change of current is ± I or zero, depending on time interval and that can be pieced together in MATAB. Rate of change of field inside the cylinder is: dh z = 1 ( ) Ni dt T s H z The result is shown in Figure 4 To get dissipation in the cylinder we can simply find the current in the cylinder: and then K θ = Ni H z P d = πr i K θ σt s Cylinder current is shown in Figure 5 and resulting dissipation in Figure 6 Problem 3 We assume here that speed is very close to synchronous, so that: Required torque is simply: Ω = π 6 p T = P Ω 4

5 1 Problem 1.: Coil Voltages Inductive Resistive Volts Time, s Figure 4: Voltage Induced in the Coil We established in class that: T = πr = V rotor τ where R and are rotor radius and length, and τ is peripheral shear stress. If length is twice diameter, V rotor = 4πR 3 I have written a simple script that carries out these calculations (appended) and here is the result (I have removed a bunch of blank lines) Om = T = 1.e+3 * Vol = D = =

6 Problem 1.: Shell Current 3 1 A/m Time Figure 5: Azumuthal Current in Conductive Cylinder Problem 1.: Dissipation Watts Time Figure 6: Dissipation in Cylinder 6

7 Matlab Code for Problem % Massachusetts Institute of Technology % 6.685, Fall Term, 5 % Problem set 1, Problem Solution % Parameters, etc. muzero = pi*4e-7; sig = 6e7; % conductivity of the cylinder ts =.1; % thickness of the cylinder Ri =.1; % radius of the cylinder Ro =.15; % radius of the coil = 1; % axial extent of the system N = 1; % turns I = 1; % peak current T_r =.1; % rise time T_o =.5; % steady current time T_f =.3; % end time (kinda arbitrary) dw =.; % coil wire diameter % minor side calculations R_c = N**pi*Ro/(sig*(pi/4)*dw^); % coil resistance T_s = muzero*sig*ts*ri/; % shell time constant % now build the times dt = T_r/; % basic time step t1 = :dt:t_r; % first interval ti = dt:dt:t_o; % constant current time t = ti + T_r; % so we can put things together t3i = dt:dt:t_r; % downgoing ramp te = t3i + T_o; % extension of interval t3 = t3i + T_r + T_o; % for assembly purposes t4i = dt:dt:t_f; % not sure how far to carry this... t4 = t4i + *T_r + T_o; t = [t1 t t3 t4]; % complete time line T_e = *T_r+T_o+T_f; % construct current waveform i1 = (I/T_r).* t1; i = I.* ones(size(ti)); i3 = I.* (1 - (1/T_r).* t3i); i4 = zeros(size(t4)); I = [i1 i i3 i4]; H_o = (N/).* I; % first interval % constant current interval % downward ramp % now construct magnetic field H1 = (N*I/).* (t1./ T_r - (T_s/T_r).* (1 - exp(-t1./ T_s))); H = (N*I/).* (1 - (T_s/T_r)*(1-exp(-T_r/T_s)).* exp(-ti./ T_s)); H3 = (N*I/).* (1 - (T_s/T_r)*(1-exp(-T_r/T_s)).* exp(-te./ T_s))... 7

8 - (N*I/).* (t3i./ T_r - (T_s/T_r).* (1 - exp(-t3i./ T_s))); H4 = (N*I/).* (T_s/T_r) * (1 - exp(-t_r/t_s)) * (1 - exp(-(t_o+t_r)/t_s)).* exp(-t4i./ T_s H = [H1 H H3 H4]; figure(1) subplot 11 plot(t, H_o) title( Problem 1. Axial Field ) ylabel( Outside Shell, A/m ) subplot 1 plot(t, H) ylabel( Inside Shell, A/m ) xlabel( Time, s ) % hoop force is easily computed from the fields: % this is force per unit length F_h = (Ri*muzero/).* (H.^ - H_o.^); figure() plot(t,f_h) title( Problem 1.: Hoop force per unit length ) ylabel( N/m ) xlabel( Time, s ) % Now to compute voltage dhzdt = (N*I/(*T_r)).* [ones(size(t1)) zeros(size(t)) -ones(size(t3)) zeros(size(t4))]; dhzdt = (1/T_s).* (H_o - H); A1 = pi*ri^; A = pi*(ro^ - Ri^); v_i = muzero*n.* (A1.* dhzdt + A.* dhzdt); v_r = R_c.* I; v = v_r + v_i; figure(3) subplot 311 plot(t, v_i) axis([ T_e -1 1]) title( Problem 1.: Coil Voltages ) ylabel( Inductive ) subplot 31 plot(t, v_r) axis([ T_e -1 1]) ylabel( Resistive ) subplot 313 plot(t, v) axis([ T_e -1 1]) ylabel( Volts ) xlabel( Time, s ) % and, finally current in the shell and then loss 8

9 Kth = H_o - H; % this is current in the shell P_d = (*pi*ri/(sig*ts)).* Kth.^ ; % dissipation figure(4) plot(t, Kth) title( Problem 1.: Shell Current ) ylabel( A/m ) xlabel( Time ) figure(5) plot(t, P_d) title( Problem 1.: Dissipation ) ylabel( Watts ) xlabel( Time ) Matlab Code for Problem 3 % Problem Set 1, Problem 3 p = [1 3]; Om = *pi*6./ p T = 1e6./ Om Vol = T./ e5 R = (Vol./ (4*pi)).^ (1/3); D =.* R =.* D 9

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

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

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 5 Solutions October 14, 013 Problem 1: The six slot, two pole winding

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

Problem Solving: Faraday s Law & Inductance. Faraday s Law

Problem Solving: Faraday s Law & Inductance. Faraday s Law MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics: 8.02 Problem Solving: Faraday s Law & Inductance Section Table Names Faraday s Law In Chapter 10 of the 8.02 Course Notes, we have seen that

More information

Solutions to PHY2049 Exam 2 (Nov. 3, 2017)

Solutions to PHY2049 Exam 2 (Nov. 3, 2017) Solutions to PHY2049 Exam 2 (Nov. 3, 207) Problem : In figure a, both batteries have emf E =.2 V and the external resistance R is a variable resistor. Figure b gives the electric potentials V between 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 11 Solutions November 27, 211 Problem 1: Variable Reluctance Motor Much

More information

Recap (1) Maxwell s Equations describe the electric field E and magnetic field B generated by stationary charge density ρ and current density J:

Recap (1) Maxwell s Equations describe the electric field E and magnetic field B generated by stationary charge density ρ and current density J: Class 13 : Induction Phenomenon of induction and Faraday s Law How does a generator and transformer work? Self- and mutual inductance Energy stored in B-field Recap (1) Maxwell s Equations describe 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

Chapter 4. Synchronous Generators. Basic Topology

Chapter 4. Synchronous Generators. Basic Topology Basic Topology Chapter 4 ynchronous Generators In stator, a three-phase winding similar to the one described in chapter 4. ince the main voltage is induced in this winding, it is also called armature winding.

More information

Induction and Inductance

Induction and Inductance Welcome Back to Physics 1308 Induction and Inductance Michael Faraday 22 September 1791 25 August 1867 Announcements Assignments for Tuesday, November 6th: - Reading: Chapter 30.6-30.8 - Watch Videos:

More information

Faraday's Law ds B B G G ΦB B ds Φ ε = d B dt

Faraday's Law ds B B G G ΦB B ds Φ ε = d B dt Faraday's Law ds ds ε= d Φ dt Φ Global Review Electrostatics» motion of q in external E-field» E-field generated by Σq i Magnetostatics» motion of q and i in external -field» -field generated by I Electrodynamics»

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

General Physics (PHY 2140)

General Physics (PHY 2140) General Physics (PHY 2140) Lecture 15 Electricity and Magnetism Magnetism Applications of magnetic forces Induced voltages and induction Magnetic flux and induced emf Faraday s law http://www.physics.wayne.edu/~apetrov/phy2140/

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.685 Electric Machines Class Notes 4: Elementary Synchronous Machine Models September 14, 2005 c 2005 James

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

Physics 420 Fall 2004 Quiz 1 Wednesday This quiz is worth 6 points. Be sure to show your work and label your final answers.

Physics 420 Fall 2004 Quiz 1 Wednesday This quiz is worth 6 points. Be sure to show your work and label your final answers. Quiz 1 Wednesday This quiz is worth 6 points. Be sure to show your work and label your final answers. 1. A charge q 1 = +5.0 nc is located on the y-axis, 15 µm above the origin, while another charge q

More information

Chapter 20: Electromagnetic Induction. PHY2054: Chapter 20 1

Chapter 20: Electromagnetic Induction. PHY2054: Chapter 20 1 Chapter 20: Electromagnetic Induction PHY2054: Chapter 20 1 Electromagnetic Induction Magnetic flux Induced emf Faraday s Law Lenz s Law Motional emf Magnetic energy Inductance RL circuits Generators and

More information

Yell if you have any questions

Yell if you have any questions Class 31: Outline Hour 1: Concept Review / Overview PRS Questions possible exam questions Hour : Sample Exam Yell if you have any questions P31 1 Exam 3 Topics Faraday s Law Self Inductance Energy Stored

More information

1. A ring of radius α has a charge distribution on it that varies as λ(θ) = λ 0 sin(θ), where λ 0 > 0, as shown in the figure.

1. A ring of radius α has a charge distribution on it that varies as λ(θ) = λ 0 sin(θ), where λ 0 > 0, as shown in the figure. EACH OF THE LECTURE QUESTIONS 1-22 IS WORTH 5 POINTS I. COULOMB S LAW 1. A ring of radius α has a charge distribution on it that varies as λ(θ) = λ 0 sin(θ), where λ 0 > 0, as shown in the figure. What

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

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics Spring Experiment 5: Faraday s Law

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics Spring Experiment 5: Faraday s Law MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2009 OBJECTIVES Experiment 5: Faraday s Law 1. To become familiar with the concepts of changing magnetic flux and induced current

More information

Electromagnetic Induction & Inductors

Electromagnetic Induction & Inductors Electromagnetic Induction & Inductors 1 Revision of Electromagnetic Induction and Inductors (Much of this material has come from Electrical & Electronic Principles & Technology by John Bird) Magnetic Field

More information

Chapters 34,36: Electromagnetic Induction. PHY2061: Chapter

Chapters 34,36: Electromagnetic Induction. PHY2061: Chapter Chapters 34,36: Electromagnetic Induction PHY2061: Chapter 34-35 1 Electromagnetic Induction Magnetic flux Induced emf Faraday s Law Lenz s Law Motional emf Magnetic energy Inductance RL circuits Generators

More information

Tutorial Sheet Fig. Q1

Tutorial Sheet Fig. Q1 Tutorial Sheet - 04 1. The magnetic circuit shown in Fig. Q1 has dimensions A c = A g = 9 cm 2, g = 0.050 cm, l c = 30 cm, and N = 500 turns. Assume the value of the relative permeability,µ r = 70,000

More information

Magnetic Fields; Sources of Magnetic Field

Magnetic Fields; Sources of Magnetic Field This test covers magnetic fields, magnetic forces on charged particles and current-carrying wires, the Hall effect, the Biot-Savart Law, Ampère s Law, and the magnetic fields of current-carrying loops

More information

Physics 2B Winter 2012 Final Exam Practice

Physics 2B Winter 2012 Final Exam Practice Physics 2B Winter 2012 Final Exam Practice 1) When the distance between two charges is increased, the force between the charges A) increases directly with the square of the distance. B) increases directly

More information

force per unit length

force per unit length Physics 153 Sample Examination for Fourth Unit As you should know, this unit covers magnetic fields, how those fields interact with charged particles, how they are produced, how they can produce electric

More information

Exam 3 Topics. Displacement Current Poynting Vector. Faraday s Law Self Inductance. Circuits. Energy Stored in Inductor/Magnetic Field

Exam 3 Topics. Displacement Current Poynting Vector. Faraday s Law Self Inductance. Circuits. Energy Stored in Inductor/Magnetic Field Exam 3 Topics Faraday s Law Self Inductance Energy Stored in Inductor/Magnetic Field Circuits LR Circuits Undriven (R)LC Circuits Driven RLC Circuits Displacement Current Poynting Vector NO: B Materials,

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

PHYSICS - GIANCOLI CALC 4E CH 29: ELECTROMAGNETIC INDUCTION.

PHYSICS - GIANCOLI CALC 4E CH 29: ELECTROMAGNETIC INDUCTION. !! www.clutchprep.com CONCEPT: ELECTROMAGNETIC INDUCTION A coil of wire with a VOLTAGE across each end will have a current in it - Wire doesn t HAVE to have voltage source, voltage can be INDUCED i V Common

More information

Exam 2, Phy 2049, Spring Solutions:

Exam 2, Phy 2049, Spring Solutions: Exam 2, Phy 2049, Spring 2017. Solutions: 1. A battery, which has an emf of EMF = 10V and an internal resistance of R 0 = 50Ω, is connected to three resistors, as shown in the figure. The resistors have

More information

Yell if you have any questions

Yell if you have any questions Class 36: Outline Hour 1: Concept Review / Overview PRS Questions Possible Exam Questions Hour : Sample Exam Yell if you have any questions P36-1 Before Starting All of your grades should now be posted

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

Do not fill out the information below until instructed to do so! Name: Signature: Section Number:

Do not fill out the information below until instructed to do so! Name: Signature:   Section Number: Do not fill out the information below until instructed to do so! Name: Signature: E-mail: Section Number: No calculators are allowed in the test. Be sure to put a box around your final answers and clearly

More information

Revision Guide for Chapter 15

Revision Guide for Chapter 15 Revision Guide for Chapter 15 Contents tudent s Checklist Revision otes Transformer... 4 Electromagnetic induction... 4 Generator... 5 Electric motor... 6 Magnetic field... 8 Magnetic flux... 9 Force on

More information

Chapter 4 Transients. Chapter 4 Transients

Chapter 4 Transients. Chapter 4 Transients Chapter 4 Transients Chapter 4 Transients 1. Solve first-order RC or RL circuits. 2. Understand the concepts of transient response and steady-state response. 1 3. Relate the transient response of first-order

More information

Phys102 Final-163 Zero Version Coordinator: Saleem Rao Tuesday, August 22, 2017 Page: 1. = m/s

Phys102 Final-163 Zero Version Coordinator: Saleem Rao Tuesday, August 22, 2017 Page: 1. = m/s Coordinator: Saleem Rao Tuesday, August 22, 2017 Page: 1 Q1. A 125 cm long string has a mass of 2.00 g and a tension of 7.00 N. Find the lowest resonant frequency of the string. A) 2.5 Hz B) 53.0 Hz C)

More information

Problem Solving 6: Ampere s Law and Faraday s Law. Part One: Ampere s Law

Problem Solving 6: Ampere s Law and Faraday s Law. Part One: Ampere s Law MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics: 8.02 Problem Solving 6: Ampere s Law and Faraday s Law Section Table Names Hand in one copy per group at the end of the Friday Problem Solving

More information

21 MAGNETIC FORCES AND MAGNETIC FIELDS

21 MAGNETIC FORCES AND MAGNETIC FIELDS CHAPTER 1 MAGNETIC FORCES AND MAGNETIC FIELDS ANSWERS TO FOCUS ON CONCEPTS QUESTIONS 1 (d) Right-Hand Rule No 1 gives the direction of the magnetic force as x for both drawings A and B In drawing C, the

More information

How an Induction Motor Works by Equations (and Physics)

How an Induction Motor Works by Equations (and Physics) How an Induction Motor Works by Equations (and Physics) The magnetic field in the air gap from the voltage applied to the stator: The stator has three sets of windings that are aligned at 10 degrees to

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics Spring 2014 Final Exam Equation Sheet. B( r) = µ o 4π

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics Spring 2014 Final Exam Equation Sheet. B( r) = µ o 4π MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2014 Final Exam Equation Sheet Force Law: F q = q( E ext + v q B ext ) Poynting Vector: S = ( E B) / µ 0 Force on Current Carrying

More information

University of California, Berkeley Physics H7B Spring 1999 (Strovink) SOLUTION TO PROBLEM SET 11 Solutions by P. Pebler

University of California, Berkeley Physics H7B Spring 1999 (Strovink) SOLUTION TO PROBLEM SET 11 Solutions by P. Pebler University of California Berkeley Physics H7B Spring 999 (Strovink) SOLUTION TO PROBLEM SET Solutions by P. Pebler Purcell 7.2 A solenoid of radius a and length b is located inside a longer solenoid of

More information

1 Fig. 3.1 shows the variation of the magnetic flux linkage with time t for a small generator. magnetic. flux linkage / Wb-turns 1.

1 Fig. 3.1 shows the variation of the magnetic flux linkage with time t for a small generator. magnetic. flux linkage / Wb-turns 1. 1 Fig. 3.1 shows the variation of the magnetic flux linkage with time t for a small generator. 2 magnetic 1 flux linkage / 0 10 2 Wb-turns 1 2 5 10 15 t / 10 3 s Fig. 3.1 The generator has a flat coil

More information

Outside the solenoid, the field lines are spread apart, and at any given distance from the axis, the field is weak.

Outside the solenoid, the field lines are spread apart, and at any given distance from the axis, the field is weak. Applications of Ampere s Law continued. 2. Field of a solenoid. A solenoid can have many (thousands) of turns, and perhaps many layers of windings. The figure shows a simple solenoid with just a few windings

More information

Synchronous machine with PM excitation Two-axis model

Synchronous machine with PM excitation Two-axis model Synchronous machine with PM excitation q Two-axis model q i q u q d i Q d Q D i d N S i D u d Voltage, flux-linkage and motion equations for a PM synchronous machine dd ud Ri s d q dt dq uq Ri s q d dt

More information

Inductance, RL Circuits, LC Circuits, RLC Circuits

Inductance, RL Circuits, LC Circuits, RLC Circuits Inductance, R Circuits, C Circuits, RC Circuits Inductance What happens when we close the switch? The current flows What does the current look like as a function of time? Does it look like this? I t Inductance

More information

Chapter 8. Chapter Spherical Pressure Vessels

Chapter 8. Chapter Spherical Pressure Vessels Chapter 8 Chapter 8-1-8-3 Spherical Pressure Vessels Here are examples of spherical pressure vessels. Let s determine how to analyze them. Consider Figures 8-2 and 8-3 below. 1 Figure 8-2 illustrates the

More information

Exam 2 Solutions. Note that there are several variations of some problems, indicated by choices in parentheses.

Exam 2 Solutions. Note that there are several variations of some problems, indicated by choices in parentheses. Exam 2 Solutions Note that there are several variations of some problems, indicated by choices in parentheses. Problem 1 Part of a long, straight insulated wire carrying current i is bent into a circular

More information

Physics 2112 Unit 18

Physics 2112 Unit 18 Physics 2112 Unit 18 Today s Concepts: A) Induction B) Circuits Electricity & Magnetism ecture 18, Slide 1 Where we are.. Just finished introducing magnetism Will now apply magnetism to AC circuits Unit

More information

Elementary Theory of DC Permanent Magnet Motors

Elementary Theory of DC Permanent Magnet Motors Much appreciation to David Cowden at Ga. Tech.: Web citation from 10/15/2004 http://www.srl.gatech.edu/education/me3110/primer/motors.htm Motors Introduction This section contains information about implementing

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

Advanced Structural Analysis EGF Cylinders Under Pressure

Advanced Structural Analysis EGF Cylinders Under Pressure Advanced Structural Analysis EGF316 4. Cylinders Under Pressure 4.1 Introduction When a cylinder is subjected to pressure, three mutually perpendicular principal stresses will be set up within the walls

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

Electrostatics. 4πε 2) + Q / 2 4) 4 Q

Electrostatics. 4πε 2) + Q / 2 4) 4 Q Two spheres A and B of radius a and b respectively are at the same potential The ratio of the surface charge density of A to B is: ) a / b ) b / a a / b b / a Two free protons are separated by a distance

More information

Chapter 22 Gauss s Law. Copyright 2009 Pearson Education, Inc.

Chapter 22 Gauss s Law. Copyright 2009 Pearson Education, Inc. Chapter 22 Gauss s Law 22-1 Electric Flux Electric flux: Electric flux through an area is proportional to the total number of field lines crossing the area. 22-1 Electric Flux Example 22-1: Electric flux.

More information

General Physics (PHYC 252) Exam 4

General Physics (PHYC 252) Exam 4 General Physics (PHYC 5) Exam 4 Multiple Choice (6 points). Circle the one best answer for each question. For Questions 1-3, consider a car battery with 1. V emf and internal resistance r of. Ω that is

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

Chapter 30 Inductance

Chapter 30 Inductance Chapter 30 Inductance In this chapter we investigate the properties of an inductor in a circuit. There are two kinds of inductance mutual inductance and self-inductance. An inductor is formed by taken

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

Chapter 1 Circuit Variables

Chapter 1 Circuit Variables Chapter 1 Circuit Variables 1.1 Electrical Engineering: An Overview 1.2 The International System of Units 1.3 Circuit Analysis: An Overview 1.4 Voltage and Current 1.5 The Ideal Basic Circuit Element 1.6

More information

Yell if you have any questions

Yell if you have any questions Class 36: Outline Hour 1: Concept Review / Overview PRS Questions Possible Exam Questions Hour : Sample Exam Yell if you have any questions P36-1 efore Starting All of your grades should now be posted

More information

Physics 102 Spring 2006: Final Exam Multiple-Choice Questions

Physics 102 Spring 2006: Final Exam Multiple-Choice Questions Last Name: First Name: Physics 102 Spring 2006: Final Exam Multiple-Choice Questions For questions 1 and 2, refer to the graph below, depicting the potential on the x-axis as a function of x V x 60 40

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

The self-inductance depends on the geometric shape of the coil. An inductor is a coil of wire used in a circuit to provide inductance is an inductor.

The self-inductance depends on the geometric shape of the coil. An inductor is a coil of wire used in a circuit to provide inductance is an inductor. Self Inductance and Mutual Inductance Script Self-Inductance Consider a coil carrying a current i. The current in the coil produces a magnetic field B that varies from point to point in the coil. The magnetic

More information

JRE SCHOOL OF Engineering

JRE SCHOOL OF Engineering JRE SCHOOL OF Engineering Class Test-1 Examinations September 2014 Subject Name Electromechanical Energy Conversion-II Subject Code EEE -501 Roll No. of Student Max Marks 30 Marks Max Duration 1 hour Date

More information

PROBLEMS - chapter 3 *

PROBLEMS - chapter 3 * OpenStax-CNX module: m28362 1 PROBLEMS - chapter 3 * NGUYEN Phuc This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 PROBLEMS This lecture note is based

More information

a. Clockwise. b. Counterclockwise. c. Out of the board. d. Into the board. e. There will be no current induced in the wire

a. Clockwise. b. Counterclockwise. c. Out of the board. d. Into the board. e. There will be no current induced in the wire Physics 1B Winter 2012: Final Exam For Practice Version A 1 Closed book. No work needs to be shown for multiple-choice questions. The first 10 questions are the makeup Quiz. The remaining questions are

More information

Handout 10: Inductance. Self-Inductance and inductors

Handout 10: Inductance. Self-Inductance and inductors 1 Handout 10: Inductance Self-Inductance and inductors In Fig. 1, electric current is present in an isolate circuit, setting up magnetic field that causes a magnetic flux through the circuit itself. This

More information

Assignment 7 Solutions

Assignment 7 Solutions Assignment 7 Solutions PY 106 1. A single-turn rectangular wire loop measures 6.00 cm wide by 10.0 cm long. The loop carries a current of 5.00 A. The loop is in a uniform magnetic field with B = 5.00 10

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

CHAPTER 5 SIMULATION AND TEST SETUP FOR FAULT ANALYSIS

CHAPTER 5 SIMULATION AND TEST SETUP FOR FAULT ANALYSIS 47 CHAPTER 5 SIMULATION AND TEST SETUP FOR FAULT ANALYSIS 5.1 INTRODUCTION This chapter describes the simulation model and experimental set up used for the fault analysis. For the simulation set up, the

More information

Physics 1302W.400 Lecture 33 Introductory Physics for Scientists and Engineering II

Physics 1302W.400 Lecture 33 Introductory Physics for Scientists and Engineering II Physics 1302W.400 Lecture 33 Introductory Physics for Scientists and Engineering II In today s lecture, we will discuss generators and motors. Slide 30-1 Announcement Quiz 4 will be next week. The Final

More information

Inductance. thevectorpotentialforthemagneticfield, B 1. ] d l 2. 4π I 1. φ 12 M 12 I 1. 1 Definition of Inductance. r 12

Inductance. thevectorpotentialforthemagneticfield, B 1. ] d l 2. 4π I 1. φ 12 M 12 I 1. 1 Definition of Inductance. r 12 Inductance 1 Definition of Inductance When electric potentials are placed on a system of conductors, charges move to cancel the electric field parallel to the conducting surfaces of the conductors. We

More information

Final on December Physics 106 R. Schad. 3e 4e 5c 6d 7c 8d 9b 10e 11d 12e 13d 14d 15b 16d 17b 18b 19c 20a

Final on December Physics 106 R. Schad. 3e 4e 5c 6d 7c 8d 9b 10e 11d 12e 13d 14d 15b 16d 17b 18b 19c 20a Final on December11. 2007 - Physics 106 R. Schad YOUR NAME STUDENT NUMBER 3e 4e 5c 6d 7c 8d 9b 10e 11d 12e 13d 14d 15b 16d 17b 18b 19c 20a 1. 2. 3. 4. This is to identify the exam version you have IMPORTANT

More information

Alternating Currents. The power is transmitted from a power house on high voltage ac because (a) Electric current travels faster at higher volts (b) It is more economical due to less power wastage (c)

More information

Physics 240 Fall 2005: Exam #3 Solutions. Please print your name: Please list your discussion section number: Please list your discussion instructor:

Physics 240 Fall 2005: Exam #3 Solutions. Please print your name: Please list your discussion section number: Please list your discussion instructor: Physics 4 Fall 5: Exam #3 Solutions Please print your name: Please list your discussion section number: Please list your discussion instructor: Form #1 Instructions 1. Fill in your name above. This will

More information

Engineering Unit 1: Engineering Principles

Engineering Unit 1: Engineering Principles Write your name here Surname Other names Pearson BTEC Level 3 Extended Certificate, Foundation Diploma, Diploma, Extended Diploma Centre Number Learner Registration Number Engineering Unit 1: Engineering

More information

Generators for wind power conversion

Generators for wind power conversion Generators for wind power conversion B. G. Fernandes Department of Electrical Engineering Indian Institute of Technology, Bombay Email : bgf@ee.iitb.ac.in Outline of The Talk Introduction Constant speed

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

Figure 1 A) 2.3 V B) +2.3 V C) +3.6 V D) 1.1 V E) +1.1 V Q2. The current in the 12- Ω resistor shown in the circuit of Figure 2 is:

Figure 1 A) 2.3 V B) +2.3 V C) +3.6 V D) 1.1 V E) +1.1 V Q2. The current in the 12- Ω resistor shown in the circuit of Figure 2 is: Term: 13 Wednesday, May 1, 014 Page: 1 Q1. What is the potential difference V B -V A in the circuit shown in Figure 1 if R 1 =70.0 Ω, R=105 Ω, R 3 =140 Ω, ε 1 =.0 V and ε =7.0 V? Figure 1 A).3 V B) +.3

More information

= e = e 3 = = 4.98%

= e = e 3 = = 4.98% PHYS 212 Exam 2 - Practice Test - Solutions 1E In order to use the equation for discharging, we should consider the amount of charge remaining after three time constants, which would have to be q(t)/q0.

More information

Transmission Lines and E. M. Waves Prof. R. K. Shevgaonkar Department of Electrical Engineering Indian Institute of Technology, Bombay

Transmission Lines and E. M. Waves Prof. R. K. Shevgaonkar Department of Electrical Engineering Indian Institute of Technology, Bombay Transmission Lines and E. M. Waves Prof. R. K. Shevgaonkar Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture 18 Basic Laws of Electromagnetics We saw in the earlier lecture

More information

A Generator! Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring / 22

A Generator! Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring / 22 A Generator! Pulling or pushing a wire through a magnetic field creates a motional EMF in the wire and a current I = E/R in the circuit. To keep the wire moving you must supply a force to overcome the

More information

Physics 126 Fall 2004 Practice Exam 1. Answer will be posted about Oct. 5.

Physics 126 Fall 2004 Practice Exam 1. Answer will be posted about Oct. 5. Physics 126 Fall 2004 Practice Exam 1. Answer will be posted about Oct. 5. 1. Which one of the following statements best explains why tiny bits of paper are attracted to a charged rubber rod? A) Paper

More information

PSI AP Physics C Sources of Magnetic Field. Multiple Choice Questions

PSI AP Physics C Sources of Magnetic Field. Multiple Choice Questions PSI AP Physics C Sources of Magnetic Field Multiple Choice Questions 1. Two protons move parallel to x- axis in opposite directions at the same speed v. What is the direction of the magnetic force on the

More information

Pulling or pushing a wire through a magnetic field creates a motional EMF in the wire and a current I = E/R in the circuit.

Pulling or pushing a wire through a magnetic field creates a motional EMF in the wire and a current I = E/R in the circuit. A Generator! Pulling or pushing a wire through a magnetic field creates a motional EMF in the wire and a current I = E/R in the circuit. Neil Alberding (SFU Physics) Physics 121: Optics, Electricity &

More information

Version 001 HW 22 EM Induction C&J sizemore (21301jtsizemore) 1

Version 001 HW 22 EM Induction C&J sizemore (21301jtsizemore) 1 Version 001 HW 22 EM Induction C&J sizemore (21301jtsizemore) 1 This print-out should have 35 questions. Multiple-choice questions may continue on the next column or page find all choices before answering.

More information

Physics 8.02 Exam Two Mashup Spring 2003

Physics 8.02 Exam Two Mashup Spring 2003 Physics 8.0 Exam Two Mashup Spring 003 Some (possibly useful) Relations: closedsurface da Q κ d = ε E A inside points from inside to outside b V = V V = E d s moving from a to b b a E d s = 0 V many point

More information

SUMMARY Phys 2523 (University Physics II) Compiled by Prof. Erickson. F e (r )=q E(r ) dq r 2 ˆr = k e E = V. V (r )=k e r = k q i. r i r.

SUMMARY Phys 2523 (University Physics II) Compiled by Prof. Erickson. F e (r )=q E(r ) dq r 2 ˆr = k e E = V. V (r )=k e r = k q i. r i r. SUMMARY Phys 53 (University Physics II) Compiled by Prof. Erickson q 1 q Coulomb s Law: F 1 = k e r ˆr where k e = 1 4π =8.9875 10 9 N m /C, and =8.85 10 1 C /(N m )isthepermittivity of free space. Generally,

More information

Determination of a Synchronous Generator Characteristics via Finite Element Analysis

Determination of a Synchronous Generator Characteristics via Finite Element Analysis SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 2, No. 2, November 25, 157-162 Determination of a Synchronous Generator Characteristics via Finite Element Analysis Zlatko Kolondzovski 1, Lidija Petkovska

More information

Automatic Control Systems. -Lecture Note 15-

Automatic Control Systems. -Lecture Note 15- -Lecture Note 15- Modeling of Physical Systems 5 1/52 AC Motors AC Motors Classification i) Induction Motor (Asynchronous Motor) ii) Synchronous Motor 2/52 Advantages of AC Motors i) Cost-effective ii)

More information

Louisiana State University Physics 2102, Exam 3 April 2nd, 2009.

Louisiana State University Physics 2102, Exam 3 April 2nd, 2009. PRINT Your Name: Instructor: Louisiana State University Physics 2102, Exam 3 April 2nd, 2009. Please be sure to PRINT your name and class instructor above. The test consists of 4 questions (multiple choice),

More information

Behaviour of synchronous machine during a short-circuit (a simple example of electromagnetic transients)

Behaviour of synchronous machine during a short-circuit (a simple example of electromagnetic transients) ELEC0047 - Power system dynamics, control and stability (a simple example of electromagnetic transients) Thierry Van Cutsem t.vancutsem@ulg.ac.be www.montefiore.ulg.ac.be/~vct October 2018 1 / 25 Objectives

More information

Electromagnetism Physics 15b

Electromagnetism Physics 15b Electromagnetism Physics 5b Lecture #9 DC Circuits Purcell 4.7 4. What We Did Last Time Define current and current density J J da S Charge conservation divj ρ or 0 in steady current t Carrier densities

More information

Exam 2 Solutions. = /10 = / = /m 3, where the factor of

Exam 2 Solutions. = /10 = / = /m 3, where the factor of PHY049 Fall 007 Prof. Yasu Takano Prof. Paul Avery Oct. 17, 007 Exam Solutions 1. (WebAssign 6.6) A current of 1.5 A flows in a copper wire with radius 1.5 mm. If the current is uniform, what is the electron

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.685 Electric Machines Class Notes 7: Permanent Magnet Brushless DC Motors September 5, 005 c 005 James

More information

Set of sure shot questions of Magnetic effect of Current for class XII CBSE Board Exam Reg.

Set of sure shot questions of Magnetic effect of Current for class XII CBSE Board Exam Reg. Set of sure shot questions of Magnetic effect of Current for class XII CBSE Board Exam. 2016- Reg. 1 Two Parallel Conducting wires carrying current in the same direction attract each other.why? I 1 A B

More information

PRACTICE EXAM 2 for Midterm 2

PRACTICE EXAM 2 for Midterm 2 PRACTICE EXAM 2 for Midterm 2 Multiple Choice Questions 1) In the circuit shown in the figure, all the lightbulbs are identical. Which of the following is the correct ranking of the brightness of the bulbs?

More information