ECE 411 Introduction to Electric Drives Fall Due Date: Thurs., Oct. 9. Required Homework #04 Lec : Induction Machine Performance

Size: px
Start display at page:

Download "ECE 411 Introduction to Electric Drives Fall Due Date: Thurs., Oct. 9. Required Homework #04 Lec : Induction Machine Performance"

Transcription

1 ECE 4 Introduction to Electric Drives Fall 204 Due Date: Thurs., Oct. 9 Name: Required Homework #04 Lec. 0-: Induction Machine Performance Note: Please fill in the answers on these sheets to simplify grading but attach separate sheets that include all calculations, graphs and code used to complete your homework so that the grader can assign partial credit when appropriate. A wye-connected 50hp, 460Volt (line-to-line rms), 60Hz, three-phase, 4-pole induction machine has the following equivalent circuit per-unit parameters: r = x = 0. r 2 = The machine is operating at rated voltage and frequency. x m = 2.5 x = 0. R 2 a) For the per-unit system appropriate for this machine, determine the base quantities for power, voltage, current, impedance, torque, electrical frequency, and mechanical frequency. Using the base quantities, covert the equivalent circuit per-unit values for the 50hp machine into actual values. m Base Quantities P = kw B V B = V rms 2 Z B = T B = N-m 2 = elec. rad/s B = mech. rad/s m b) Determine the steady-state values of rated slip S R, rated rotor speed I R, and rated power factor cos R mb Machine Parameters r = r = L = H L = H L m = H R = rr, rated torque T er, rated stator current. Find the rotor speed, torque, and current in both pu and actual units. S R = rr = elec. rad/s rmr = mech. rad/s rr = rmr = pu T er = N-m T er = pu I = pu I R = A rms R cos R = c) Determine the stator losses, rotor losses, and efficiency R for operation at rated output power (part b). Stator winding losses = Watts = pu Rotor winding losses = Watts = pu Core losses = Watts = pu = % R

2 ECE 4 Introduction to Electric Drives Fall 204 d) Find the slip for maximum motoring torque S mt (S<), stator current I MT, and the maximum torque T emax in pu, and compare with the approximate values calculated using the simplified equivalent circuit consisting of only X and r / 2 S and Eq s & Exact Approx S mt = S mt = I MT = pu I MT = pu T emax = pu T emax = pu e) Calculate the starting stator current I start (slip=.0) and starting torque T e _ start expressed in pu and as a multiple of the corresponding quantities at rated slip. Ignore rotor skin effect. Compare with the approximate values using Eq s & -5. f) Find the slip S g (<0) rated mechanical power input as a generator (i.e., e corresponding stator current amplitude I, input torque T e, and rotor speed Look at Fig for braking operation at speeds above 800rpm.) r T T I start e _ start I start e _ start Exact = pu = pu Approx = pu = pu T = -pu = -50hp = -37.3kW) and the r in pu. Assume V = pu. (Hint: S g = I = pu T = pu e = pu r

3 Contents Machine Parameters Part a) Find base value for pu conversion and the real machine parameters Part b) Find steady state slip value and corresponding rated values Part c) calculate stator losses, rotor losses and efficiency for rated operation Part d) find the slip for maximum torque and corresponding values Part e) calculate the starting condition Part f) generating mode operation End %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % University of Wisconsin-Madison % % ECE 4 Introduction to Electric Drives % % Homework #04 Solution % % Copyright: 204 Fall by B. Ge % % Go Badgers! % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clc clear close all format short g Machine Parameters r_pu = 0.022; r_2pu = 0.026; x_pu = 0.; x_2pu = 0.; x_mpu = 2.5; R_mpu = 2; P_r = 50*746; f_e = 60; Page of 8

4 P = 4; V_llrms = 460; Part a) Find base value for pu conversion and the real machine parameters P_B = P_r; % rated power as base V_B = V_llrms/sqrt(3); % rated voltage as base, phase rms value I_B = P_B/(3*V_B); Z_B = V_B/I_B; omega_b = 2*pi*f_e; omega_mb = omega_b/(p/2); T_B = P_B/omega_mB; r_ = r_pu*z_b; r_2 = r_2pu*z_b; x_ = x_pu*z_b; L_ = x_/omega_b; x_2 = x_2pu*z_b; L_2 = x_2/omega_b; x_m = x_mpu*z_b; L_m = x_m/omega_b; R_m = R_mpu*Z_B; disp('part a solution:') Page 2 of 8

5 disp([p_b r_;v_b r_2;z_b L_;T_B L_2;omega_B L_m;omega_mB R_m]) part a solution: Part b) Find steady state slip value and corresponding rated values % iterative method ss = r_2pu; % initial guess V_pu =.0; % rated voltage P_rpu =.0; % rated output err = e-0; % error control while R_eqpu = r_pu + i*x_pu + par(par(i*x_mpu, R_mpu), i*x_2pu + r_2pu/ss); % equivalent impedance I_pu = V_pu/R_eqpu; I_2pu = I_pu*par(i*x_mpu, R_mpu)/(par(i*x_mpu, R_mpu) + i*x_2pu + r_2pu/ss); T_epu = abs(i_2pu)^2*r_2pu/ss; P_pu = T_epu*( - ss); if abs(p_pu - P_rpu) < err % found break else % scaling initial guess ss = P_rpu*(ss/P_pu); Page 3 of 8

6 I_rpu = abs(i_pu); T_erpu = T_epu; omega_rr = ( - ss)*omega_b; omega_rmr = ( - ss)*omega_mb; T_eR = T_erpu*T_B; I_R = abs(i_rpu)*i_b; pf = cos(angle(i_pu)); % power factor disp('part b solution:') disp([nan NaN ss;omega_rr omega_rmr -ss;nan T_eR T_erpu;NaN I_R abs(i_rpu);nan NaN pf]) part b solution: NaN NaN NaN NaN NaN NaN Part c) calculate stator losses, rotor losses and efficiency for rated operation P_statpu = abs(i_pu)^2*r_pu; P_stat = P_statpu*P_B; P_rotopu = abs(i_2pu)^2*r_2pu; P_roto = P_rotopu*P_B; V_mpu = V_pu - I_pu*(r_pu + i*x_pu); % voltage across magnetizing branch P_corepu = abs(v_mpu)^2/r_mpu; P_core = P_corepu*P_B; eta = P_rpu/(P_rpu + P_statpu + P_rotopu + P_corepu); disp('part c solution:') disp([p_stat P_statpu;P_roto P_rotopu;P_core P_corepu;NaN eta]) part c solution: Page 4 of 8

7 NaN Part d) find the slip for maximum torque and corresponding values % Approximate T_emax_appr = V_pu^2/(2*(x_pu + x_2pu)); s_mt_appr = r_2pu/(x_pu + x_2pu); I_mt_appr = V_pu/(sqrt(2)*(x_pu + x_2pu)); % Exact, iterative method % please ref. to % other method like bisection search, interpolation are also acceptable sr = 0.0; sl =.0; err = e-0; % error control while sm = 0.68*sl *sr; st = 0.382*sl *sr; R_eqpu = r_pu + i*x_pu + par(par(i*x_mpu, R_mpu), i*x_2pu + r_2pu/sm); I_pu = V_pu/R_eqpu; I_2pu = I_pu*par(i*x_mpu, R_mpu)/(par(i*x_mpu, R_mpu) + i*x_2pu + r_2pu/sm); T_epum = abs(i_2pu)^2*r_2pu/sm; R_eqpu = r_pu + i*x_pu + par(par(i*x_mpu, R_mpu), i*x_2pu + r_2pu/st); I_pu = V_pu/R_eqpu; I_2pu = I_pu*par(i*x_mpu, R_mpu)/(par(i*x_mpu, R_mpu) + i*x_2pu + r_2pu/st); T_eput = abs(i_2pu)^2*r_2pu/st; if T_epum > T_eput sr = st; else sl = sm; if abs(sr - sl) < err Page 5 of 8

8 break s_mt_exac = (sr + sl)/2; R_eqpu = r_pu + i*x_pu + par(par(i*x_mpu, R_mpu), i*x_2pu + r_2pu/s_mt_exac); I_mt_exac = V_pu/R_eqpu; I_2mt_exac = I_mt_exac*par(i*x_mpu, R_mpu)/(par(i*x_mpu, R_mpu) + i*x_2pu + r_2pu/s_mt_exac); T_emax_exac = abs(i_2mt_exac)^2*r_2pu/s_mt_exac; disp('part d solution:') disp([s_mt_exac s_mt_appr;abs(i_mt_exac) I_mt_appr;T_emax_exac T_emax_appr]) part d solution: Part e) calculate the starting condition % Approximate % please ref. to lecture notes I_start_appr = V_pu/(x_pu + x_2pu); T_estart_appr = V_pu^2/((x_pu + x_2pu)^2)*r_2pu; % Exact ss =.0; R_eqpu = r_pu + i*x_pu + par(par(i*x_mpu, R_mpu), i*x_2pu + r_2pu/ss); I_start_exac = V_pu/R_eqpu; I_2start_exac = I_start_exac*par(i*x_mpu, R_mpu)/(par(i*x_mpu, R_mpu) + i*x_2pu + r_2pu/ss); T_estart_exac = abs(i_2start_exac)^2*r_2pu/ss; disp('part e solution:') disp([abs(i_start_exac) abs(i_start_exac)/i_rpu;t_estart_exac T_estart_exac/T_erpu;NaN I_start_appr;NaN T_estart_appr]) Page 6 of 8

9 part e solution: NaN NaN Part f) generating mode operation % same iterative method as part b) V_pu =.0; P_rpu = -.0; ss = -r_2pu; err = e-0; % error control while R_eqpu = r_pu + i*x_pu + par(par(i*x_mpu, R_mpu), i*x_2pu + r_2pu/ss); I_pu = V_pu/R_eqpu; I_2pu = I_pu*par(i*x_mpu, R_mpu)/(par(i*x_mpu, R_mpu) + i*x_2pu + r_2pu/ss); T_epu = abs(i_2pu)^2*r_2pu/ss; P_pu = T_epu*( - ss); if abs(p_pu - P_rpu) < err break else ss = P_rpu*(ss/P_pu); disp('part f solution:') disp([ss;-abs(i_pu);t_epu;-ss]) part f solution: Page 7 of 8

10 End format short Published with MATLAB R204a Page 8 of 8

MODELING AND SIMULATION OF ENGINE DRIVEN INDUCTION GENERATOR USING HUNTING NETWORK METHOD

MODELING AND SIMULATION OF ENGINE DRIVEN INDUCTION GENERATOR USING HUNTING NETWORK METHOD MODELING AND SIMULATION OF ENGINE DRIVEN INDUCTION GENERATOR USING HUNTING NETWORK METHOD K. Ashwini 1, G. N. Sreenivas 1 and T. Giribabu 2 1 Department of Electrical and Electronics Engineering, JNTUH

More information

University of Jordan Faculty of Engineering & Technology Electric Power Engineering Department

University of Jordan Faculty of Engineering & Technology Electric Power Engineering Department University of Jordan Faculty of Engineering & Technology Electric Power Engineering Department EE471: Electrical Machines-II Tutorial # 2: 3-ph Induction Motor/Generator Question #1 A 100 hp, 60-Hz, three-phase

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

Introduction to Synchronous. Machines. Kevin Gaughan

Introduction to Synchronous. Machines. Kevin Gaughan Introduction to Synchronous Machines Kevin Gaughan The Synchronous Machine An AC machine (generator or motor) with a stator winding (usually 3 phase) generating a rotating magnetic field and a rotor carrying

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

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

Measurements of a 37 kw induction motor. Rated values Voltage 400 V Current 72 A Frequency 50 Hz Power 37 kw Connection Star

Measurements of a 37 kw induction motor. Rated values Voltage 400 V Current 72 A Frequency 50 Hz Power 37 kw Connection Star Measurements of a 37 kw induction motor Rated values Voltage 4 V Current 72 A Frequency 5 Hz Power 37 kw Connection Star Losses of a loaded machine Voltage, current and power P = P -w T loss in Torque

More information

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

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

More information

3- BASICS. YTransformation. for balanced load. \V ab 120 = \V bc. \V ab 240 = \V ca \I a 120 = \I b \I a 240 = \I c V ab I a

3- BASICS. YTransformation. for balanced load. \V ab 120 = \V bc. \V ab 240 = \V ca \I a 120 = \I b \I a 240 = \I c V ab I a 3- BASICS YTransformation for balanced load Z =3Z Y Balanced 3- Systems \V ab 10 = \V bc \V ab 40 = \V ca \I a 10 = \I b \I a 40 = \I c V ab I a = p 3 V an = p 3 I ab \V ab 30 = \V an \I ab 30 = \I a S

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

Induction Motors. The single-phase induction motor is the most frequently used motor in the world

Induction Motors. The single-phase induction motor is the most frequently used motor in the world Induction Motor The single-phase induction motor is the most frequently used motor in the world Most appliances, such as washing machines and refrigerators, use a single-phase induction machine Highly

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

Dynamics of the synchronous machine

Dynamics of the synchronous machine ELEC0047 - Power system dynamics, control and stability Dynamics of the synchronous machine Thierry Van Cutsem t.vancutsem@ulg.ac.be www.montefiore.ulg.ac.be/~vct October 2018 1 / 38 Time constants and

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

ECEN 667 Power System Stability Lecture 18: Voltage Stability, Load Models

ECEN 667 Power System Stability Lecture 18: Voltage Stability, Load Models ECEN 667 Power System Stability Lecture 18: Voltage Stability, Load Models Prof. Tom Overbye Dept. of Electrical and Computer Engineering Texas A&M University, overbye@tamu.edu 1 Announcements Read Chapter

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

Prince Sattam bin Abdulaziz University College of Engineering. Electrical Engineering Department EE 3360 Electrical Machines (II)

Prince Sattam bin Abdulaziz University College of Engineering. Electrical Engineering Department EE 3360 Electrical Machines (II) Chapter # 4 Three-Phase Induction Machines 1- Introduction (General Principles) Generally, conversion of electrical power into mechanical power takes place in the rotating part of an electric motor. In

More information

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

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

More information

Electric Machinery Fundamentals

Electric Machinery Fundamentals Solutions Manual to accompany Chapman Electric Machinery Fundamentals Fifth Edition Stephen J. Chapman BAE Systems Australia i Solutions Manual to accompany Electric Machinery Fundamentals, Fifth Edition

More information

Electrical Machines and Energy Systems: Operating Principles (Part 2) SYED A Rizvi

Electrical Machines and Energy Systems: Operating Principles (Part 2) SYED A Rizvi Electrical Machines and Energy Systems: Operating Principles (Part 2) SYED A Rizvi AC Machines Operating Principles: Synchronous Motor In synchronous motors, the stator of the motor has a rotating magnetic

More information

ECE 325 Electric Energy System Components 7- Synchronous Machines. Instructor: Kai Sun Fall 2015

ECE 325 Electric Energy System Components 7- Synchronous Machines. Instructor: Kai Sun Fall 2015 ECE 325 Electric Energy System Components 7- Synchronous Machines Instructor: Kai Sun Fall 2015 1 Content (Materials are from Chapters 16-17) Synchronous Generators Synchronous Motors 2 Synchronous Generators

More information

LAB REPORT: THREE-PHASE INDUCTION MACHINE

LAB REPORT: THREE-PHASE INDUCTION MACHINE LAB REPORT: THREE-PHASE INDUCTION MACHINE ANDY BENNETT 1. Summary This report details the operation, modelling and characteristics of a three-phase induction machine. It attempts to provide a concise overview

More information

Parameter Estimation of Three Phase Squirrel Cage Induction Motor

Parameter Estimation of Three Phase Squirrel Cage Induction Motor International Conference On Emerging Trends in Mechanical and Electrical Engineering RESEARCH ARTICLE OPEN ACCESS Parameter Estimation of Three Phase Squirrel Cage Induction Motor Sonakshi Gupta Department

More information

Electric Machines I Three Phase Induction Motor. Dr. Firas Obeidat

Electric Machines I Three Phase Induction Motor. Dr. Firas Obeidat Electric Machines I Three Phase Induction Motor Dr. Firas Obeidat 1 Table of contents 1 General Principles 2 Construction 3 Production of Rotating Field 4 Why Does the Rotor Rotate 5 The Slip and Rotor

More information

INDUCTION MOTOR MODEL AND PARAMETERS

INDUCTION MOTOR MODEL AND PARAMETERS APPENDIX C INDUCTION MOTOR MODEL AND PARAMETERS C.1 Dynamic Model of the Induction Motor in Stationary Reference Frame A three phase induction machine can be represented by an equivalent two phase machine

More information

Lecture Set 8 Induction Machines

Lecture Set 8 Induction Machines Lecture Set 8 Induction Machine S.D. Sudhoff Spring 2018 Reading Chapter 6, Electromechanical Motion Device, Section 6.1-6.9, 6.12 2 Sample Application Low Power: Shaded pole machine (mall fan) Permanent

More information

Steady State Performance of Doubly Fed Induction Generator Used in Wind Power Generation

Steady State Performance of Doubly Fed Induction Generator Used in Wind Power Generation Steady State Performance of Doubly Fed Induction Generator Used in Wind Power Generation Indubhushan Kumar Mewar University Department of Electrical Engineering Chittorgarh, Rajasthan-312902 Abstract:

More information

ECEN 460 Exam 1 Fall 2018

ECEN 460 Exam 1 Fall 2018 ECEN 460 Exam 1 Fall 2018 Name: KEY UIN: Section: Score: Part 1 / 40 Part 2 / 0 Part / 0 Total / 100 This exam is 75 minutes, closed-book, closed-notes. A standard calculator and one 8.5 x11 note sheet

More information

Equivalent Circuits with Multiple Damper Windings (e.g. Round rotor Machines)

Equivalent Circuits with Multiple Damper Windings (e.g. Round rotor Machines) Equivalent Circuits with Multiple Damper Windings (e.g. Round rotor Machines) d axis: L fd L F - M R fd F L 1d L D - M R 1d D R fd R F e fd e F R 1d R D Subscript Notations: ( ) fd ~ field winding quantities

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

SSC-JE EE POWER SYSTEMS: GENERATION, TRANSMISSION & DISTRIBUTION SSC-JE STAFF SELECTION COMMISSION ELECTRICAL ENGINEERING STUDY MATERIAL

SSC-JE EE POWER SYSTEMS: GENERATION, TRANSMISSION & DISTRIBUTION SSC-JE STAFF SELECTION COMMISSION ELECTRICAL ENGINEERING STUDY MATERIAL 1 SSC-JE STAFF SELECTION COMMISSION ELECTRICAL ENGINEERING STUDY MATERIAL Power Systems: Generation, Transmission and Distribution Power Systems: Generation, Transmission and Distribution Power Systems:

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

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

3 d Calculate the product of the motor constant and the pole flux KΦ in this operating point. 2 e Calculate the torque.

3 d Calculate the product of the motor constant and the pole flux KΦ in this operating point. 2 e Calculate the torque. Exam Electrical Machines and Drives (ET4117) 11 November 011 from 14.00 to 17.00. This exam consists of 5 problems on 4 pages. Page 5 can be used to answer problem 4 question b. The number before a question

More information

AN EFFICIENT APPROACH FOR ANALYSIS OF ISOLATED SELF EXCITED INDUCTION GENERATOR

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

More information

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

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

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

Electrical Machines and Energy Systems: Operating Principles (Part 1) SYED A Rizvi

Electrical Machines and Energy Systems: Operating Principles (Part 1) SYED A Rizvi Electrical Machines and Energy Systems: Operating Principles (Part 1) SYED A Rizvi AC Machines Operating Principles: Rotating Magnetic Field The key to the functioning of AC machines is the rotating magnetic

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

ECE 5670/6670 Lab 8. Torque Curves of Induction Motors. Objectives

ECE 5670/6670 Lab 8. Torque Curves of Induction Motors. Objectives ECE 5670/6670 Lab 8 Torque Curves of Induction Motors Objectives The objective of the lab is to measure the torque curves of induction motors. Acceleration experiments are used to reconstruct approximately

More information

A Comparative Analysis of Three Phase Induction Motor Performance Evaluation

A Comparative Analysis of Three Phase Induction Motor Performance Evaluation RESEARCH ARTICLE International Journal of Engineering and Techniques - Volume 2 Issue 3, May June 216 OPEN ACCESS A Comparative Analysis of Three Phase Induction Motor Performance Evaluation 1 France O.

More information

AC Induction Motor Stator Resistance Estimation Algorithm

AC Induction Motor Stator Resistance Estimation Algorithm 7th WSEAS International Conference on Electric Power Systems, High Voltages, Electric Machines, Venice, Italy, November 21-23, 27 86 AC Induction Motor Stator Resistance Estimation Algorithm PETR BLAHA

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

Lecture 1: Induction Motor

Lecture 1: Induction Motor 1 / 22 Lecture 1: Induction Motor ELEC-E8402 Control of Electric Drives and Power Converters (5 ECTS) Marko Hinkkanen Aalto University School of Electrical Engineering Spring 2016 2 / 22 Learning Outcomes

More information

Integrator Windup

Integrator Windup 3.5.2. Integrator Windup 3.5.2.1. Definition So far we have mainly been concerned with linear behaviour, as is often the case with analysis and design of control systems. There is, however, one nonlinear

More information

CHAPTER 3 INFLUENCE OF STATOR SLOT-SHAPE ON THE ENERGY CONSERVATION ASSOCIATED WITH THE SUBMERSIBLE INDUCTION MOTORS

CHAPTER 3 INFLUENCE OF STATOR SLOT-SHAPE ON THE ENERGY CONSERVATION ASSOCIATED WITH THE SUBMERSIBLE INDUCTION MOTORS 38 CHAPTER 3 INFLUENCE OF STATOR SLOT-SHAPE ON THE ENERGY CONSERVATION ASSOCIATED WITH THE SUBMERSIBLE INDUCTION MOTORS 3.1 INTRODUCTION The electric submersible-pump unit consists of a pump, powered by

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

MATLAB SIMULINK Based DQ Modeling and Dynamic Characteristics of Three Phase Self Excited Induction Generator

MATLAB SIMULINK Based DQ Modeling and Dynamic Characteristics of Three Phase Self Excited Induction Generator 628 Progress In Electromagnetics Research Symposium 2006, Cambridge, USA, March 26-29 MATLAB SIMULINK Based DQ Modeling and Dynamic Characteristics of Three Phase Self Excited Induction Generator A. Kishore,

More information

Fachgebiet Leistungselektronik und Elektrische Antriebstechnik. Test Examination: Mechatronics and Electrical Drives

Fachgebiet Leistungselektronik und Elektrische Antriebstechnik. Test Examination: Mechatronics and Electrical Drives Prof. Dr. Ing. Joachim Böcker Test Examination: Mechatronics and Electrical Drives 8.1.214 First Name: Student number: Last Name: Course of Study: Exercise: 1 2 3 Total (Points) (2) (2) (2) (6) Duration:

More information

ECE 422/522 Power System Operations & Planning/ Power Systems Analysis II 2 Synchronous Machine Modeling

ECE 422/522 Power System Operations & Planning/ Power Systems Analysis II 2 Synchronous Machine Modeling ECE 422/522 Power System Operations & Planning/ Power Systems Analysis II 2 Synchronous achine odeling Spring 214 Instructor: Kai Sun 1 Outline Synchronous achine odeling Per Unit Representation Simplified

More information

Lecture 9: Space-Vector Models

Lecture 9: Space-Vector Models 1 / 30 Lecture 9: Space-Vector Models ELEC-E8405 Electric Drives (5 ECTS) Marko Hinkkanen Autumn 2017 2 / 30 Learning Outcomes After this lecture and exercises you will be able to: Include the number of

More information

Overview: Induction Motors. Review Questions. Why the Rotor Moves: Motor Speed

Overview: Induction Motors. Review Questions. Why the Rotor Moves: Motor Speed Overview: nduction Motor Motor operation & Slip Speed-torque relationhip Equivalent circuit model Tranformer Motor efficiency Starting induction motor Smith College, EGR 35 ovember 5, 04 Review Quetion

More information

Induction Motor Drive

Induction Motor Drive Induction Motor Drive 1. Brief review of IM theory.. IM drive characteritic with: Variable input voltage Variable rotor reitance Variable rotor power Variable voltage and variable frequency, VVVF drive

More information

Chapter 6. Induction Motors. Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Chapter 6. Induction Motors. Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 6 Induction Motors 1 The Development of Induced Torque in an Induction Motor Figure 6-6 The development of induced torque in an induction motor. (a) The rotating stator field B S induces a voltage

More information

Experimental and Finite Element Analysis of an Electronic Pole-Change Drive

Experimental and Finite Element Analysis of an Electronic Pole-Change Drive Experimental and Finite Element Analysis of an Electronic Pole-Change Drive Mohamed Osama Thomas A. Lipo General Electric Company University of Wisconsin - Madison Corporate Research and Development Center

More information

Motor-CAD combined electromagnetic and thermal model (January 2015)

Motor-CAD combined electromagnetic and thermal model (January 2015) Motor-CAD combined electromagnetic and thermal model (January 2015) Description The Motor-CAD allows the machine performance, losses and temperatures to be calculated for a BPM machine. In this tutorial

More information

EE155/255 Green Electronics

EE155/255 Green Electronics EE155/255 Green Electronics Electric Motors 10/16/17 Prof. William Dally Computer Systems Laboratory Stanford University Course Logistics Solar day is Monday 10/23 HW 3 is due today HW 4 out, due next

More information

ROEVER COLLEGE OF ENGINEERING & TECHNOLOGY ELAMBALUR, PERAMBALUR DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING ELECTRICAL MACHINES I

ROEVER COLLEGE OF ENGINEERING & TECHNOLOGY ELAMBALUR, PERAMBALUR DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING ELECTRICAL MACHINES I ROEVER COLLEGE OF ENGINEERING & TECHNOLOGY ELAMBALUR, PERAMBALUR-621220 DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING ELECTRICAL MACHINES I Unit I Introduction 1. What are the three basic types

More information

AC Electric Machines. Objectives. Introduction. 1. To understand what the meant by the term ac circuit. 2. To understand how to analyze ac circuits.

AC Electric Machines. Objectives. Introduction. 1. To understand what the meant by the term ac circuit. 2. To understand how to analyze ac circuits. AC Electric Machines Objectives 1. To understand what the meant by the term ac circuit.. To understand how to analyze ac circuits. 3. To understand the basic construction and operation of an ac machine.

More information

EE 742 Chapter 3: Power System in the Steady State. Y. Baghzouz

EE 742 Chapter 3: Power System in the Steady State. Y. Baghzouz EE 742 Chapter 3: Power System in the Steady State Y. Baghzouz Transmission Line Model Distributed Parameter Model: Terminal Voltage/Current Relations: Characteristic impedance: Propagation constant: π

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

Control of an Induction Motor Drive

Control of an Induction Motor Drive Control of an Induction Motor Drive 1 Introduction This assignment deals with control of an induction motor drive. First, scalar control (or Volts-per-Hertz control) is studied in Section 2, where also

More information

DESIGN OF ELECTRICAL APPARATUS SOLVED PROBLEMS

DESIGN OF ELECTRICAL APPARATUS SOLVED PROBLEMS DESIGN OF ELECTRICAL APPARATUS SOLVED PROBLEMS 1. A 350 KW, 500V, 450rpm, 6-pole, dc generator is built with an armature diameter of 0.87m and core length of 0.32m. The lap wound armature has 660 conductors.

More information

The Nottingham eprints service makes this work by researchers of the University of Nottingham available open access under the following conditions.

The Nottingham eprints service makes this work by researchers of the University of Nottingham available open access under the following conditions. Mezani, Smail and Hamiti, Tahar and Belguerras, Lamia and Lubin, Thierry and Gerada, Christopher (215) Computation of wound rotor induction machines based on coupled finite elements and circuit equation

More information

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

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

More information

ECE2210 Final given: Fall 13

ECE2210 Final given: Fall 13 ECE22 Final given: Fall 3. (23 pts) a) Draw the asymptotic Bode plot (the straight-line approximation) of the transfer function below. Accurately draw it on the graph provided. You must show the steps

More information

Mathematical MATLAB Model and Performance Analysis of Asynchronous Machine

Mathematical MATLAB Model and Performance Analysis of Asynchronous Machine Mathematical MATLAB Model and Performance Analysis of Asynchronous Machine Bikram Dutta 1, Suman Ghosh 2 Assistant Professor, Dept. of EE, Guru Nanak Institute of Technology, Kolkata, West Bengal, India

More information

ELEC Introduction to power and energy systems. The per unit system. Thierry Van Cutsem

ELEC Introduction to power and energy systems. The per unit system. Thierry Van Cutsem ELEC0014 - Introduction to power and energy systems The per unit system Thierry Van Cutsem t.vancutsem@ulg.ac.be www.montefiore.ulg.ac.be/~vct October 2018 1 / 12 Principle The per unit system Principle

More information

UNIVERSITY OF SWAZILAND FACULTY OF SCIENCE DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING. MAIN EXAMINATION May 2013

UNIVERSITY OF SWAZILAND FACULTY OF SCIENCE DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING. MAIN EXAMINATION May 2013 UNIVERSITY OF SWAZILAND FACULTY OF SCIENCE DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING MAIN EXAMINATION May 2013 TITLE OF PAPER: Fundamentals of Power Engineering COURSE CODE: EE 351 TIME ALLOWED:

More information

Q. 1 Q. 25 carry one mark each.

Q. 1 Q. 25 carry one mark each. Q. 1 Q. 25 carry one mark each. Q.1 Given ff(zz) = gg(zz) + h(zz), where ff, gg, h are complex valued functions of a complex variable zz. Which one of the following statements is TUE? (A) If ff(zz) is

More information

Direct Flux Vector Control Of Induction Motor Drives With Maximum Efficiency Per Torque

Direct Flux Vector Control Of Induction Motor Drives With Maximum Efficiency Per Torque Direct Flux Vector Control Of Induction Motor Drives With Maximum Efficiency Per Torque S. Rajesh Babu 1, S. Sridhar 2 1 PG Scholar, Dept. Of Electrical & Electronics Engineering, JNTUACEA, Anantapuramu,

More information

EE155/255 Green Electronics

EE155/255 Green Electronics EE155/255 Green Electronics Electric Motors 10/19/16 Prof. William Dally Computer Systems Laboratory Stanford University This week is flipped Course Logistics Discussion on 10/17, Motors on 10/19, Isolated

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

From now, we ignore the superbar - with variables in per unit. ψ ψ. l ad ad ad ψ. ψ ψ ψ

From now, we ignore the superbar - with variables in per unit. ψ ψ. l ad ad ad ψ. ψ ψ ψ From now, we ignore the superbar - with variables in per unit. ψ 0 L0 i0 ψ L + L L L i d l ad ad ad d ψ F Lad LF MR if = ψ D Lad MR LD id ψ q Ll + Laq L aq i q ψ Q Laq LQ iq 41 Equivalent Circuits for

More information

ECE 585 Power System Stability

ECE 585 Power System Stability Homework 1, Due on January 29 ECE 585 Power System Stability Consider the power system below. The network frequency is 60 Hz. At the pre-fault steady state (a) the power generated by the machine is 400

More information

EFFECTS OF LOAD AND SPEED VARIATIONS IN A MODIFIED CLOSED LOOP V/F INDUCTION MOTOR DRIVE

EFFECTS OF LOAD AND SPEED VARIATIONS IN A MODIFIED CLOSED LOOP V/F INDUCTION MOTOR DRIVE Nigerian Journal of Technology (NIJOTECH) Vol. 31, No. 3, November, 2012, pp. 365 369. Copyright 2012 Faculty of Engineering, University of Nigeria. ISSN 1115-8443 EFFECTS OF LOAD AND SPEED VARIATIONS

More information

Time-Harmonic Modeling of Squirrel-Cage Induction Motors: A Circuit-Field Coupled Approach

Time-Harmonic Modeling of Squirrel-Cage Induction Motors: A Circuit-Field Coupled Approach Time-Harmonic Modeling of Squirrel-Cage Induction Motors: A Circuit-Field Coupled Approach R. Escarela-Perez 1,3 E. Melgoza 2 E. Campero-Littlewood 1 1 División de Ciencias Básicas e Ingeniería, Universidad

More information

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

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

More information

ECE 202 Fall 2013 Final Exam

ECE 202 Fall 2013 Final Exam ECE 202 Fall 2013 Final Exam December 12, 2013 Circle your division: Division 0101: Furgason (8:30 am) Division 0201: Bermel (9:30 am) Name (Last, First) Purdue ID # There are 18 multiple choice problems

More information

ECE 2210 Final given: Spring 15 p1

ECE 2210 Final given: Spring 15 p1 ECE 2 Final given: Spring 15 Closed Book, Closed notes except preprinted yellow sheet, Calculators OK. Show all work to receive credit. Circle answers, show units, and round off reasonably 1. (15 pts)

More information

Three phase induction motor using direct torque control by Matlab Simulink

Three phase induction motor using direct torque control by Matlab Simulink Three phase induction motor using direct torque control by Matlab Simulink Arun Kumar Yadav 1, Dr. Vinod Kumar Singh 2 1 Reaserch Scholor SVU Gajraula Amroha, U.P. 2 Assistant professor ABSTRACT Induction

More information

Permanent Magnet Wind Generator Technology for Battery Charging Wind Energy Systems

Permanent Magnet Wind Generator Technology for Battery Charging Wind Energy Systems Permanent Magnet Wind Generator Technology for Battery Charging Wind Energy Systems Casper J. J. Labuschagne, Maarten J. Kamper Electrical Machines Laboratory Dept of Electrical and Electronic Engineering

More information

UNIT I INTRODUCTION Part A- Two marks questions

UNIT I INTRODUCTION Part A- Two marks questions ROEVER COLLEGE OF ENGINEERING & TECHNOLOGY ELAMBALUR, PERAMBALUR-621220 DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING DESIGN OF ELECTRICAL MACHINES UNIT I INTRODUCTION 1. Define specific magnetic

More information

MULTI-SLICE FINITE ELEMENT MODELLING OF INDUCTION MOTORS CONSIDERING BROKEN BARS AND INTER-BAR CURRENTS

MULTI-SLICE FINITE ELEMENT MODELLING OF INDUCTION MOTORS CONSIDERING BROKEN BARS AND INTER-BAR CURRENTS MULTI-SLICE FINITE ELEMENT MODELLING OF INDUCTION MOTORS CONSIDERING BROKEN BARS AND INTER-BAR CURRENTS J. Gyselinck 1, J. Sprooten 1, L. Vandevelde 2 and X.M. López-Fernández 3 1 Department of Electrical

More information

EEE3405 ELECTRICAL ENGINEERING PRINCIPLES 2 - TEST

EEE3405 ELECTRICAL ENGINEERING PRINCIPLES 2 - TEST ATTEMPT ALL QUESTIONS (EACH QUESTION 20 Marks, FULL MAKS = 60) Given v 1 = 100 sin(100πt+π/6) (i) Find the MS, period and the frequency of v 1 (ii) If v 2 =75sin(100πt-π/10) find V 1, V 2, 2V 1 -V 2 (phasor)

More information

Solution of Tutorial 3 Synchronous Motor Drives

Solution of Tutorial 3 Synchronous Motor Drives chool of lectrical ngineering & Telecommunications, UNW lectric Drive ystems olution of Tutorial 3 ynchronous Motor Drives Question. R 0, XO 72at the base speed corresponding to 50 Hz operation. 6600 fo

More information

Dynamic Modeling of Surface Mounted Permanent Synchronous Motor for Servo motor application

Dynamic Modeling of Surface Mounted Permanent Synchronous Motor for Servo motor application 797 Dynamic Modeling of Surface Mounted Permanent Synchronous Motor for Servo motor application Ritu Tak 1, Sudhir Y Kumar 2, B.S.Rajpurohit 3 1,2 Electrical Engineering, Mody University of Science & Technology,

More information

DEVELOPMENT OF DIRECT TORQUE CONTROL MODELWITH USING SVI FOR THREE PHASE INDUCTION MOTOR

DEVELOPMENT OF DIRECT TORQUE CONTROL MODELWITH USING SVI FOR THREE PHASE INDUCTION MOTOR DEVELOPMENT OF DIRECT TORQUE CONTROL MODELWITH USING SVI FOR THREE PHASE INDUCTION MOTOR MUKESH KUMAR ARYA * Electrical Engg. Department, Madhav Institute of Technology & Science, Gwalior, Gwalior, 474005,

More information

A GENERALISED OPERATIONAL EQUIVALENT CIRCUIT OF INDUCTION MACHINES FOR TRANSIENT/DYNAMIC STUDIES UNDER DIFFERENT OPERATING CONDITIONS

A GENERALISED OPERATIONAL EQUIVALENT CIRCUIT OF INDUCTION MACHINES FOR TRANSIENT/DYNAMIC STUDIES UNDER DIFFERENT OPERATING CONDITIONS A GENERALISED OPERATIONAL EQUIVALENT CIRCUIT OF INDUCTION MACHINES FOR TRANSIENT/DYNAMIC STUDIES UNDER DIFFERENT OPERATING CONDITIONS S. S. Murthy Department of Electrical Engineering Indian Institute

More information

PERFORMANCE ANALYSIS OF DIRECT TORQUE CONTROL OF 3-PHASE INDUCTION MOTOR

PERFORMANCE ANALYSIS OF DIRECT TORQUE CONTROL OF 3-PHASE INDUCTION MOTOR PERFORMANCE ANALYSIS OF DIRECT TORQUE CONTROL OF 3-PHASE INDUCTION MOTOR 1 A.PANDIAN, 2 Dr.R.DHANASEKARAN 1 Associate Professor., Department of Electrical and Electronics Engineering, Angel College of

More information

A Novel Adaptive Estimation of Stator and Rotor Resistance for Induction Motor Drives

A Novel Adaptive Estimation of Stator and Rotor Resistance for Induction Motor Drives A Novel Adaptive Estimation of Stator and Rotor Resistance for Induction Motor Drives Nagaraja Yadav Ponagani Asst.Professsor, Department of Electrical & Electronics Engineering Dhurva Institute of Engineering

More information

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

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

More information

The synchronous machine (detailed model)

The synchronous machine (detailed model) ELEC0029 - Electric Power System Analysis The synchronous machine (detailed model) Thierry Van Cutsem t.vancutsem@ulg.ac.be www.montefiore.ulg.ac.be/~vct February 2018 1 / 6 Objectives The synchronous

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

Modelling and Simulating a Three-Phase Induction Motor

Modelling and Simulating a Three-Phase Induction Motor MURDOCH UNIVERSITY SCHOOL OF ENGINEERING AND INFORMATION TECHNOLOGY Modelling and Simulating a Three-Phase Induction Motor ENG460 Engineering Thesis Benjamin Willoughby 3/3/2014 Executive Summary This

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

THREE PHASE SYSTEMS Part 1

THREE PHASE SYSTEMS Part 1 ERT105: ELECTRCAL TECHNOLOGY CHAPTER 3 THREE PHASE SYSTEMS Part 1 1 Objectives Become familiar with the operation of a three phase generator and the magnitude and phase relationship. Be able to calculate

More information

Mathematical Modeling and Dynamic Simulation of a Class of Drive Systems with Permanent Magnet Synchronous Motors

Mathematical Modeling and Dynamic Simulation of a Class of Drive Systems with Permanent Magnet Synchronous Motors Applied and Computational Mechanics 3 (2009) 331 338 Mathematical Modeling and Dynamic Simulation of a Class of Drive Systems with Permanent Magnet Synchronous Motors M. Mikhov a, a Faculty of Automatics,

More information

NEPTUNE -code: KAUVG11ONC Prerequisites:... Knowledge description:

NEPTUNE -code: KAUVG11ONC Prerequisites:... Knowledge description: Subject name: Electrical Machines Credits: 9 Requirement : Course director: Dr. Vajda István Position: Assessment and verification procedures: NEPTUNE -code: KAUVG11ONC Prerequisites:... Number of hours:

More information