Control of an Induction Motor Drive

Size: px
Start display at page:

Download "Control of an Induction Motor Drive"

Transcription

1 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 the motor and inverter models are introduced. Then, rotor-flux-oriented vector control is considered in Section 3. In order to build the link between the continuous-time design and the discrete-time implementation, all the control algorithms are implemented in the discrete-time domain based on the forward Euler approximation. After this assignment, you should be able to: 1. Explain the basic principles of a scalar-controlled induction motor drive. 2. Explain operation of a three-phase symmetrical suboscillation pulse-width modulator (PWM). 3. Explain fundamental principles and key functionalities of a rotor-flux-oriented vector controller. 4. Implement simple discretized algorithms in the Simulink software using MATLAB Function blocks. A report is to be written on this assignment in groups of two (or alone). Submit your report as a PDF file to the MyCourses portal (mycourses.aalto.fi) no later than on Wednesday, , at 23:59. In your report, answer briefly the questions given inside this kind of framed boxes. The report should be clearly and consistently written. The requested figures describing the models and simulation results should be included in the report. Submit also the requested Simulink models to MyCourses. These models will be used to check that you have built the models yourself. Guidance is available in room I256 on ˆ Tuesday, , at 8:15 1: ˆ Tuesday, , at 8:15 1: The assignment will be graded on a scale of (one point per problem). You are encouraged to discuss with other students but copying solutions from other groups is not allowed! The reports and models will be checked for plagiarism. 1/11

2 2 Scalar-Controlled Drive 2.1 Induction Motor Model A 2.2-kW induction motor is considered, cf. Table 1. The inverse-γ dynamic model shown in Fig. 1 is used. Download scalar.slx, init scalar.m, and fig scalar.m from the MyCourses portal. Open the Simulink model scalar.slx of a scalar-controlled drive, shown also in Fig. 2. The Induction Motor subsystem shown in Fig. 3 is first considered. The stator-flux linkage ψ s and the rotor-flux linkage s ψs are used as state variables in R the model according to Fig. 4(a). The space vectors are represented as complex-valued signals in the Simulink model. Unlike the most Simulink blocks, the Integrator block does not support complex signals, but this limitation can be easily circumvented as shown in Fig. 4(b). Study all the blocks in the Induction Motor subsystem and try to find out the equations used in the model. Notice that you cannot simulate the model yet, since some parts are missing. Table 1: Rating and parameters of the motor. Rated values Power P N 2.2 kw Voltage U N 4 V Frequency f N 5 Hz Current I N 5. A Speed n N 1436 r/min Parameters Stator resistance R s 3.7 Ω Rotor resistance R R 2.1 Ω Total leakage inductance L σ 21 mh Magnetizing inductance L M 224 mh Total moment of inertia J.16 kgm 2 u s s i s s R s dψ s s dt L σ L M R R dψ s R dt i s R jω m ψ s R Figure 1: Inverse-Γ model in stator coordinates. Figure 2: Simulink model of a scalar-controlled drive. The Unit Delay block models the one-sampling period computational delay, which exists in real systems. The Zero-Order Hold block models the sampling. The red color is associated with discrete-times signals and blocks (if the Sample Time Colors option is enabled). However, before the first simulation, the color coding does not properly work yet. 2/11

3 Figure 3: Induction Motor subsystem. The first input of the subsystem is the vector u s,abc = [u a, u b, u c ] T containing the phase voltages (with respect to an arbitrary potential, since the zero-sequence voltage disappears in the space-vector transformation). The second input is the load torque T L. The first output is the vector i s,abc = [i a, i b, i c ] T containing the phase currents. The second output is the mechanical angular speed ω M of the rotor. (a) (b) Figure 4: (a) Voltage Equations subsystem. (b) Integrator (Complex Signal) subsystem, formed using two standard Integrator blocks. 1. Derive the stator current i s s and the rotor current i s R as functions of the stator flux ψ s and the rotor flux s ψs. Implement these equations inside the Flux Equations subsystem. You can use Gain and Sum blocks. Furthermore, implement the R calculation of T M inside the Electromagnetic Torque subsystem. 2. Calculate the rated torque T N of the motor based on the data given in Table 1. Set this numerical value for the parameter Final value in the Step block, which determines the load torque T L. Determine also the number p of pole pairs and set it in the mask of the Induction Motor subsystem. Furthermore, calculate the peak value of the rated phase-to-neutral voltage. Give all these values in your report. 3/11

4 2.2 PWM and Inverter Model Study all the blocks in the Inverter and Scalar Control subsystems and find out the theory behind the model. Double-click the MATLAB Function blocks in order to see their discretetime algorithms. In the following, some additional explanation is given. u s s,ref PWM N i a i b i c a b c Motor n d a, d b, d c u an 1 t (a) u bn t u cn t (b) T s T s (c) t Figure 5: (a) Three-phase inverter. (b) Inverter subsystem, which also includes the triangle comparison. The duty ratios of each phase are packed to the vector: d abc = [d a, d b, d c ] T. (c) Example waveforms in the symmetrical suboscillation method. The induction motor is fed using a three-phase inverter, whose equivalent circuit is shown in Fig. 5(a). In this assignment, the DC-bus voltage is assumed to be constant and power switches are assumed to be ideal. The Simulink implementation of the inverter is shown in Fig. 5(b), where the triangle comparison is also included. The triangle wave varying between... 1 has been implemented with the Repeating Sequence block. The pulse-width modulator (PWM) calculates the duty ratios d a, d b, and d c for each phase based on the reference voltage vector u s s,ref. By comparing these duty ratios to the triangle wave, the switching states of the power switches are obtained as illustrated in Fig. 5(c). The calculation of the duty ratios based on the symmetrical suboscillation method is implemented using the MATLAB Function block inside the PWM subsystem. This algorithm is mathematically equivalent to the one considered in the compendium (even if the implementation is slightly different). You can open it by double-clicking the MATLAB Function block: function [d abc,uss ref lim] = pwm(uss ref,udc) %#codegen % Components of the voltage space vector ualpha ref = real(uss ref); ubeta ref = imag(uss ref); % Phase voltage references 4/11

5 ua ref = ualpha ref; ub ref =.5*( ualpha ref + sqrt(3)*ubeta ref); uc ref =.5*( ualpha ref sqrt(3)*ubeta ref); % Vector of phase voltage references u abc ref = [ua ref; ub ref; uc ref]; % Symmetrization of the references by adding the zero sequence voltage u =.5*(max(u abc ref) + min(u abc ref)); u abc ref = u abc ref u; % Clamping of the reference voltages such that no phase error is caused. % If all phase voltage reference are realizable (below Udc/2), m = 1 holds. m = max([2*u abc ref/udc; 1]); u abc ref = u abc ref/m; % Duty cycles, which can be directly used for triangle comparison, % if the triangle wave varies between...1 d abc =.5 + u abc ref/udc; % Realized voltage vector is calculated from the clamped duty ratios. % If the PWM does not saturate, uss ref lim = uss ref holds. The realized % voltage vector is needed, e.g., for the current controller antiwindup. uss ref lim = 2/3*(d abc(1) + d abc(2)*exp(1j*2*pi/3)... + d abc(3)*exp(1j*4*pi/3))*udc; This algorithm (as well as other discrete-time algorithms) is calculated once per sampling period. Generally, MATLAB Function blocks are very convenient, when programming discrete-time algorithms for simulation models or rapid-prototyping systems. Programming real-time algorithms with the C language is actually quite similar (but the complex variables have to be implemented by using their real and imaginary components and there are many other practical limitations). 2.3 Scalar Control A simple scalar-controlled drive shown in Fig. 6(a) is considered. The stator-voltage magnitude is determined based on the approximate steady-state voltage equation u s,ref = ω s,ref ψ s,ref (1) where ω s,ref is the reference of the stator angular frequency and ψ s,ref is constant in the base-speed range. The compensation for the R s i s voltage drop has been omitted in (1) for simplicity. The reference voltage vector in stator coordinates is u s s,ref = u s,ref e jϑs (2) where the angle is ϑ s = ω s,ref dt (3) In order to write the discrete-time counterpart of this algorithm, only (3) needs to be discretized. Using the forward Euler approximation, the whole algorithm becomes u s s,ref(k) = ψ s,ref ω s,ref (k)e jϑs(k) ϑ s (k + 1) = ϑ s (k) + T s ω s,ref (k) (4a) (4b) 5/11

6 ψ s,ref ω s,ref Scalar control u s s,ref PWM M (a) (b) Figure 6: (a) Scalar control. (b) Voltage Reference subsystem. The discrete state ϑ s (k) is stored in the Unit Delay block, which can be considered as a memory here. where k is the discrete-time index and T s is the sampling period. 3. Open the MATLAB Function inside the Voltage Reference subsystem, cf. Fig. 6(b). The calculation of ϑ s (k + 1) is readily implemented: function [uss ref,thetas new]=scalar(ws ref,thetas,psis ref,ts) %#codegen % Voltage vector % Note: 1j is the imaginary unit in the MATLAB software % uss ref =... % Complete this % Update (integrate) the voltage angle thetas new = thetas + Ts*ws ref; Complete the missing part of the algorithm (4) and save the function. Open the initialization file init scalar.m and run it. Simulate the model. After simulation, run the fig scalar.m file, which plots three figures. The results in the first figure should look similar to those shown in Fig. 7. If they look different, you should debug your model. 4. The drive operates at the stator frequency ω s = 2π 4 rad/s in no-load condition. The constant ψ s,ref =.95 Vs is used. Using the analytical motor model in Fig. 1, calculate the peak value of the fundamental-wave stator current in no-load steady-state condition. Compare this result to the simulated current in the same condition. (Tip: Calculate first the stator impedance in this condition and then divide the stator voltage by this impedance. It might be a good idea to write a brief m-file script for this calculation.) 5. Decrease the switching frequency to f sw = 2 khz, i.e., change the value of the sampling period Ts in the workspace and simulate the model again. Plot all three figures and attach them to your report. Comment on differences between this case and the case in Problem 3. Submit this version of your simulation model to MyCourses. 6/11

7 Torque (Nm) Angular speed (rad/s) ELEC-E842 Control of Electric Drives and Power Converters Home Assignment Electrical rotor speed Stator frequency Electromagnetic torque Load torque Time (s) Figure 7: Example simulation results of the scalar-controlled motor, when the switching frequency is f sw = 1/(2T s ) = 4 khz. 3 Rotor-Flux-Oriented Vector Control 3.1 Structure Rotor-flux-oriented vector control shown in Fig. 8 is considered. The estimate ˆϑ s of the rotor-flux angle is obtained using the current model in estimated rotor-flux coordinates. Download vector.slx, init vector.m, and fig vector.m from the MyCourses portal. Open the model vector.slx, copy its contents to the previous scalar control model, and save the model with a new name. Connect the blocks according to Fig. 9. The Vector Control subsystem is shown in Fig. 1. Notice that you cannot simulate the model yet, since some parts are missing. ω M,ref Speed controller T M,ref ψ R,ref Current reference i s,ref Current controller u s,ref u a,ref, u b,ref, u c,ref dq abc PWM ˆϑ s i s ˆω s dq i a, i b, i c Flux estimator ω m abc p ω M M Figure 8: Simplified block diagram of rotor-flux-oriented vector control. 7/11

8 6. Open the MATLAB Function inside the abc dq subsystem. Complete the transformation from the phase currents i a, i b, i c to the space vector i s in estimated rotor flux coordinates: function is = abc dq(is abc,thetas) %#codegen % Phase currents %ia = is abc(1); ib = is abc(2); ic = is abc(3); % Space vector transformation and coordinate transformation % is =... % Complete this Save the function. Present the algorithm also in your report. 3.2 Current Controller A PI-type current controller with active damping and antiwindup is used, di dt = i s,ref i s + 1 k p (u s u s,ref ) u s,ref = k p ( is,ref i s ) + ki I + (jˆω s L σ R a ) i s u s = PWM(u s,ref ) (5a) (5b) (5c) where PWM( ) represents the symmetrical suboscillation PWM algorithm (including coordinate transformations) and the gains are R a = α c L σ R s, k p = α c L σ, and k i = α 2 cl σ. Go through the discrete-time implementation in the MATLAB Function inside the Current Controller and PWM subsystem. Figure 9: Connection of the Vector Control block with the Inverter and Induction Motor blocks. The Repeating Sequence source includes a reference for a ramped speed reversal, which will be needed in one later problem. 8/11

9 Figure 1: Vector Control subsystem. 3.3 Current Reference 7. Open the MATLAB Function inside the Current Reference subsystem. Complete the calculation of the current reference i s,ref as a function of the torque reference T M,ref and the rotor-flux reference ψ R,ref (assumed here to be constant): function is ref = curr ref(tm ref,psir ref,lm,p) %#codegen % Current references in estimated rotor flux coordinates % id ref =... % Complete this % iq ref =... % Complete this is ref = id ref + 1j*iq ref; Save the function. Present the algorithm also in your report. 3.4 Flux Estimator The rotor flux of the induction motor can be estimated in many ways. Here, a simple flux estimator (known as the current model) in synchronous coordinates is used. The rotor-flux magnitude is estimated as d ˆψ R dt = R R ( i d ˆψ R L M The angular frequency of the rotor flux is estimated as ) (6) ˆω s = ω m + R Ri q ˆψ R (7) 9/11

10 The estimate ˆϑ s for the flux angle is obtained by integrating ˆω s. A discrete-time version of this estimator is to be implemented. 8. Open the MATLAB Function inside the Flux Estimator subsystem. Complete the calculation of ˆω s and ˆψ R : function [ws,thetas new,psir new]... = estimator(is,wm,thetas,psir,rr,lm,ts) %#codegen % Current components id = real(is); iq = imag(is); % Angular frequency of the rotor flux if(psir > ) % Avoid division by zero %ws =...; % Complete this else ws = wm; end % Update the states %psir new =...; thetas new = thetas + Ts*ws; % Complete this % Rotor flux angle 3.5 Simulations and Analysis When commenting the simulation results, try to link them to the theory. Brief, accurate, and relevant comments are preferred. Try to avoid lengthy or unclear explanations. 9. Open the initialization file init vector.m and run it. Simulate the model. After simulation, run the fig vector.m file, which plots three figures. The simulation results of the first figure should look similar to those shown in Fig. 11. If they look different, you should debug your model. Attach the three figures in your report. 1. The drive operates at the mechanical angular speed ω M = 2π 2 rad/s in the rated-load condition. The rotor-flux magnitude is ψ R =.9 Vs. Using the analytical equations, calculate i d, i q, and i s. Calculate also u d, u q, and u s. Compare the analytical results to the simulated currents and voltages (i.e., the realizable voltage us ref lim) in the same condition. 11. Change the actual rotor resistance in the motor model to 12% of the original value, but do not change the values in the control system. Simulate the model. Test also the rotor resistance 15% of the original value. Show the results and comment on them in your report. After this problem, change the resistance value back to the original one. 1/11

11 Torque (Nm) Electr. angular speed (rad/s) ELEC-E842 Control of Electric Drives and Power Converters Home Assignment Change the speed reference to increase stepwise already in the beginning of the simulation (i.e., the motor is not magnetized before starting) and simulate the model. Show the results and comment on them in your report. After this problem, restore the speed reference back to the original state. 13. Increase the current-controller bandwidth to α c = 2π 6 rad/s (see the file init vector.m) and simulate the model. Show the results and comment on them in your report. What happens if you also double the sampling frequency? After this problem, change these values back to the original ones. 14. Change the speed reference step to ω M,ref = 2π 4 rad/s. Show the results and comment on them in your report. 15. Set the load-torque step to zero. Switch the speed reference to the Repeating Sequence block, simulation time to 2 s, and simulate the model. Show the results and comment on them in your report Rotor speed Reference Electromagnetic torque Reference Time (s) Figure 11: Example simulation results of the vector-controlled motor. Give us Feedback In order to improve this assignment, please give us feedback. In order to estimate the student workload, we would also be happy to know how many hours did you use to do this assignment. All other comments are also welcome. 11/11

Lecture 8: Sensorless Synchronous Motor Drives

Lecture 8: Sensorless Synchronous Motor Drives 1 / 22 Lecture 8: Sensorless Synchronous Motor Drives ELEC-E8402 Control of Electric Drives and Power Converters (5 ECTS) Marko Hinkkanen Spring 2017 2 / 22 Learning Outcomes After this lecture and exercises

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.7 International Journal of Advance Engineering and Research Development Volume 4, Issue 5, May-07 e-issn (O): 348-4470 p-issn (P): 348-6406 Mathematical modeling

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

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

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

International Journal of Advance Engineering and Research Development SIMULATION OF FIELD ORIENTED CONTROL OF PERMANENT MAGNET SYNCHRONOUS MOTOR

International Journal of Advance Engineering and Research Development SIMULATION OF FIELD ORIENTED CONTROL OF PERMANENT MAGNET SYNCHRONOUS MOTOR Scientific Journal of Impact Factor(SJIF): 3.134 e-issn(o): 2348-4470 p-issn(p): 2348-6406 International Journal of Advance Engineering and Research Development Volume 2,Issue 4, April -2015 SIMULATION

More information

Lecture 7: Synchronous Motor Drives

Lecture 7: Synchronous Motor Drives 1 / 46 Lecture 7: Synchronous Motor Drives ELEC-E8402 Control of Electric Drives and Power Converters (5 ECTS) Marko Hinkkanen Spring 2017 2 / 46 Learning Outcomes After this lecture and exercises you

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

Sensorless Speed Control for PMSM Based On the DTC Method with Adaptive System R. Balachandar 1, S. Vinoth kumar 2, C. Vignesh 3

Sensorless Speed Control for PMSM Based On the DTC Method with Adaptive System R. Balachandar 1, S. Vinoth kumar 2, C. Vignesh 3 Sensorless Speed Control for PMSM Based On the DTC Method with Adaptive System R. Balachandar 1, S. Vinoth kumar 2, C. Vignesh 3 P.G Scholar, Sri Subramanya College of Engg & Tech, Palani, Tamilnadu, India

More information

Project 1: Analysis of an induction machine using a FEM based software EJ Design of Electrical Machines

Project 1: Analysis of an induction machine using a FEM based software EJ Design of Electrical Machines Project : Analysis of an induction machine using a FEM based software General instructions In this assignment we will analyze an induction machine using Matlab and the freely available finite element software

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

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

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

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

Modelling of Closed Loop Speed Control for Pmsm Drive

Modelling of Closed Loop Speed Control for Pmsm Drive Modelling of Closed Loop Speed Control for Pmsm Drive Vikram S. Sathe, Shankar S. Vanamane M. Tech Student, Department of Electrical Engg, Walchand College of Engineering, Sangli. Associate Prof, Department

More information

A Direct Torque Controlled Induction Motor with Variable Hysteresis Band

A Direct Torque Controlled Induction Motor with Variable Hysteresis Band UKSim 2009: th International Conference on Computer Modelling and Simulation A Direct Torque Controlled Induction Motor with Variable Hysteresis Band Kanungo Barada Mohanty Electrical Engineering Department,

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

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

Research on Control Method of Brushless DC Motor Based on Continuous Three-Phase Current

Research on Control Method of Brushless DC Motor Based on Continuous Three-Phase Current 6th International onference on Measurement, Instrumentation and Automation (IMIA 017 Research on ontrol Method of Brushless D Motor Based on ontinuous hree-phase urrent Li Ding 1,Mingliang Hu, Jun Zhao

More information

The Application of Anti-windup PI Controller, SIPIC on FOC of PMSM

The Application of Anti-windup PI Controller, SIPIC on FOC of PMSM Electrical and Electronic Engineering 2016, 6(3): 39-48 DOI: 10.5923/j.eee.20160603.01 The Application of Anti-windup PI Controller, SIPIC on FOC of PMSM Hoo Choon Lih School of Engineering, Taylor s University,

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

SRV02-Series Rotary Experiment # 1. Position Control. Student Handout

SRV02-Series Rotary Experiment # 1. Position Control. Student Handout SRV02-Series Rotary Experiment # 1 Position Control Student Handout SRV02-Series Rotary Experiment # 1 Position Control Student Handout 1. Objectives The objective in this experiment is to introduce the

More information

Mathematical Modelling of Permanent Magnet Synchronous Motor with Rotor Frame of Reference

Mathematical Modelling of Permanent Magnet Synchronous Motor with Rotor Frame of Reference Mathematical Modelling of Permanent Magnet Synchronous Motor with Rotor Frame of Reference Mukesh C Chauhan 1, Hitesh R Khunt 2 1 P.G Student (Electrical),2 Electrical Department, AITS, rajkot 1 mcchauhan1@aits.edu.in

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

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

DESIGN AND MODELLING OF SENSORLESS VECTOR CONTROLLED INDUCTION MOTOR USING MODEL REFERENCE ADAPTIVE SYSTEMS

DESIGN AND MODELLING OF SENSORLESS VECTOR CONTROLLED INDUCTION MOTOR USING MODEL REFERENCE ADAPTIVE SYSTEMS DESIGN AND MODELLING OF SENSORLESS VECTOR CONTROLLED INDUCTION MOTOR USING MODEL REFERENCE ADAPTIVE SYSTEMS Janaki Pakalapati 1 Assistant Professor, Dept. of EEE, Avanthi Institute of Engineering and Technology,

More information

Research on Permanent Magnet Linear Synchronous Motor Control System Simulation *

Research on Permanent Magnet Linear Synchronous Motor Control System Simulation * Available online at www.sciencedirect.com AASRI Procedia 3 (2012 ) 262 269 2012 AASRI Conference on Modeling, Identification and Control Research on Permanent Magnet Linear Synchronous Motor Control System

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

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

Anakapalli Andhra Pradesh, India I. INTRODUCTION

Anakapalli Andhra Pradesh, India I. INTRODUCTION Robust MRAS Based Sensorless Rotor Speed Measurement of Induction Motor against Variations in Stator Resistance Using Combination of Back Emf and Reactive Power Methods Srikanth Mandarapu Pydah College

More information

CHAPTER 2 MODELLING OF INTERIOR PERMANENT MAGNET SYNCHRONOUS MOTOR

CHAPTER 2 MODELLING OF INTERIOR PERMANENT MAGNET SYNCHRONOUS MOTOR 21 CHAPTER 2 MODELLING OF INTERIOR PERMANENT MAGNET SYNCHRONOUS MOTOR 2.1 INTRODUCTION The need for adjustable speed drives in industrial applications has been increasing progressively. The variable speed

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

Independent Control of Speed and Torque in a Vector Controlled Induction Motor Drive using Predictive Current Controller and SVPWM

Independent Control of Speed and Torque in a Vector Controlled Induction Motor Drive using Predictive Current Controller and SVPWM Independent Control of Speed and Torque in a Vector Controlled Induction Motor Drive using Predictive Current Controller and SVPWM Vandana Peethambaran 1, Dr.R.Sankaran 2 Assistant Professor, Dept. of

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

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

Digital Control of Electric Drives. Induction Motor Vector Control. Czech Technical University in Prague Faculty of Electrical Engineering

Digital Control of Electric Drives. Induction Motor Vector Control. Czech Technical University in Prague Faculty of Electrical Engineering Digital Control of Electric Drives Induction Motor Vector Control Czech Technical University in Prague Faculty of Electrical Engineering BE1M14DEP O. Zoubek, J. Zdenek 1 Induction Motor Control Methods

More information

Simulations and Control of Direct Driven Permanent Magnet Synchronous Generator

Simulations and Control of Direct Driven Permanent Magnet Synchronous Generator Simulations and Control of Direct Driven Permanent Magnet Synchronous Generator Project Work Dmitry Svechkarenko Royal Institute of Technology Department of Electrical Engineering Electrical Machines and

More information

Speed Sensor less Control and Estimation Based on Mars for Pmsm under Sudden Load Change

Speed Sensor less Control and Estimation Based on Mars for Pmsm under Sudden Load Change International Journal of Engineering Inventions e-issn: 2278-7461, p-isbn: 2319-6491 Volume 2, Issue 3 (February 2013) PP: 77-86 Speed Sensor less Control and Estimation Based on Mars for Pmsm under Sudden

More information

Discrete-Time Current Control of Synchronous Motor Drives

Discrete-Time Current Control of Synchronous Motor Drives Hafiz Asad Ali Awan Discrete-Time Current Control of Synchronous Motor Drives School of Electrical Engineering Thesis submitted for examination for the degree of Master of Science in Technology. Espoo

More information

Sensorless DTC-SVM of Induction Motor by Applying Two Neural Controllers

Sensorless DTC-SVM of Induction Motor by Applying Two Neural Controllers Sensorless DTC-SVM of Induction Motor by Applying Two Neural Controllers Abdallah Farahat Mahmoud Dept. of Electrical Engineering, Al-Azhar University, Qena, Egypt engabdallah2012@azhar.edu.eg Adel S.

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

970 IEEE TRANSACTIONS ON INDUSTRY APPLICATIONS, VOL. 48, NO. 3, MAY/JUNE 2012

970 IEEE TRANSACTIONS ON INDUSTRY APPLICATIONS, VOL. 48, NO. 3, MAY/JUNE 2012 970 IEEE TRANSACTIONS ON INDUSTRY APPLICATIONS, VOL. 48, NO. 3, MAY/JUNE 2012 Control Method Suitable for Direct-Torque-Control-Based Motor Drive System Satisfying Voltage and Current Limitations Yukinori

More information

Deriving a Fast and Accurate PMSM Motor Model from Finite Element Analysis The MathWorks, Inc. 1

Deriving a Fast and Accurate PMSM Motor Model from Finite Element Analysis The MathWorks, Inc. 1 Deriving a Fast and Accurate PMSM Motor Model from Finite Element Analysis Dakai Hu, Ph.D Haiwei Cai, Ph.D MathWorks Application Engineer ANSYS Application Engineer 2017 The MathWorks, Inc. 1 Motivation

More information

Finite Element Based Transformer Operational Model for Dynamic Simulations

Finite Element Based Transformer Operational Model for Dynamic Simulations 496 Progress In Electromagnetics Research Symposium 2005, Hangzhou, China, August 22-26 Finite Element Based Transformer Operational Model for Dynamic Simulations O. A. Mohammed 1, Z. Liu 1, S. Liu 1,

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

Mechatronics Engineering. Li Wen

Mechatronics Engineering. Li Wen Mechatronics Engineering Li Wen Bio-inspired robot-dc motor drive Unstable system Mirko Kovac,EPFL Modeling and simulation of the control system Problems 1. Why we establish mathematical model of the control

More information

Novel DTC-SVM for an Adjustable Speed Sensorless Induction Motor Drive

Novel DTC-SVM for an Adjustable Speed Sensorless Induction Motor Drive Novel DTC-SVM for an Adjustable Speed Sensorless Induction Motor Drive Nazeer Ahammad S1, Sadik Ahamad Khan2, Ravi Kumar Reddy P3, Prasanthi M4 1*Pursuing M.Tech in the field of Power Electronics 2*Working

More information

Simulation of Direct Torque Control of Induction motor using Space Vector Modulation Methodology

Simulation of Direct Torque Control of Induction motor using Space Vector Modulation Methodology International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Simulation of Direct Torque Control of Induction motor using Space Vector Modulation Methodology Arpit S. Bhugul 1, Dr. Archana

More information

SIMULATION OF STEADY-STATE PERFORMANCE OF THREE PHASE INDUCTION MOTOR BY MATLAB

SIMULATION OF STEADY-STATE PERFORMANCE OF THREE PHASE INDUCTION MOTOR BY MATLAB olume No.0, Issue No. 08, August 014 ISSN (online): 48 7550 SIMULATION OF STEADY-STATE PERFORMANCE OF THREE PHASE INDUCTION MOTOR BY MATLAB Harish Kumar Mishra 1, Dr.Anurag Tripathi 1 Research Scholar,

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

An adaptive sliding mode control scheme for induction motor drives

An adaptive sliding mode control scheme for induction motor drives An adaptive sliding mode control scheme for induction motor drives Oscar Barambones, Patxi Alkorta, Aitor J. Garrido, I. Garrido and F.J. Maseda ABSTRACT An adaptive sliding-mode control system, which

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

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

DIRECT TORQUE CONTROL OF PERMANENT MAGNET SYNCHRONOUS MOTOR USING TWO LEVEL INVERTER- SURVEY PAPER

DIRECT TORQUE CONTROL OF PERMANENT MAGNET SYNCHRONOUS MOTOR USING TWO LEVEL INVERTER- SURVEY PAPER DIRECT TORQUE CONTROL OF PERMANENT MAGNET SYNCHRONOUS MOTOR USING TWO LEVEL INVERTER- SURVEY PAPER 1 PREETI SINGH, BHUPAL SINGH 1 M.Tech (scholar) Electrical Power & Energy System, lecturer Ajay Kumar

More information

Direct Quadrate (D-Q) Modeling of 3-Phase Induction Motor Using MatLab / Simulink

Direct Quadrate (D-Q) Modeling of 3-Phase Induction Motor Using MatLab / Simulink Direct Quadrate (D-Q) Modeling of 3-Phase Induction Motor Using MatLab / Simulink Sifat Shah, A. Rashid, MKL Bhatti COMSATS Institute of Information and Technology, Abbottabad, Pakistan Abstract This paper

More information

SPEED CONTROL OF PMSM BY USING DSVM -DTC TECHNIQUE

SPEED CONTROL OF PMSM BY USING DSVM -DTC TECHNIQUE SPEED CONTROL OF PMSM BY USING DSVM -DTC TECHNIQUE J Sinivas Rao #1, S Chandra Sekhar *2, T Raghu #3 1 Asst Prof, Dept Of EEE, Anurag Engineering College, AP, INDIA 3 Asst Prof, Dept Of EEE, Anurag Engineering

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

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

Digitization of Vector Control Algorithm Using FPGA

Digitization of Vector Control Algorithm Using FPGA Digitization of Vector Control Algorithm Using FPGA M. P. Priyadarshini[AP] 1, K. G. Dharani[AP] 2, D. Kavitha[AP] 3 DEPARTMENT OF ECE, MVJ COLLEGE OF ENGINEERING, BANGALORE Abstract: The paper is concerned

More information

DTC Based Induction Motor Speed Control Using 10-Sector Methodology For Torque Ripple Reduction

DTC Based Induction Motor Speed Control Using 10-Sector Methodology For Torque Ripple Reduction DTC Based Induction Motor Speed Control Using 10-Sector Methodology For Torque Ripple Reduction S. Pavithra, Dinesh Krishna. A. S & Shridharan. S Netaji Subhas Institute of Technology, Delhi University

More information

Laboratory 11 Control Systems Laboratory ECE3557. State Feedback Controller for Position Control of a Flexible Joint

Laboratory 11 Control Systems Laboratory ECE3557. State Feedback Controller for Position Control of a Flexible Joint Laboratory 11 State Feedback Controller for Position Control of a Flexible Joint 11.1 Objective The objective of this laboratory is to design a full state feedback controller for endpoint position control

More information

Digital Object Identifier: /ICELMACH URL:

Digital Object Identifier: /ICELMACH URL: J. Beerten, J. Vervecen, and J. Driesen, Prediction-based ripple reduction in direct torque control of an induction machine, Proc. IEEE International Conference on Electrical Machines ICEM 8, Villamoura,

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

FEEDBACK CONTROL SYSTEMS

FEEDBACK CONTROL SYSTEMS FEEDBAC CONTROL SYSTEMS. Control System Design. Open and Closed-Loop Control Systems 3. Why Closed-Loop Control? 4. Case Study --- Speed Control of a DC Motor 5. Steady-State Errors in Unity Feedback Control

More information

A new FOC technique based on predictive current control for PMSM drive

A new FOC technique based on predictive current control for PMSM drive ISSN 1 746-7, England, UK World Journal of Modelling and Simulation Vol. 5 (009) No. 4, pp. 87-94 A new FOC technique based on predictive current control for PMSM drive F. Heydari, A. Sheikholeslami, K.

More information

Predictive control for PMSM

Predictive control for PMSM Predictive control for PMSM Parameter estimator i * p Predictive controller u* u + + Converter u' Machine (electrical) i u NL Non-linearities compensator Master s Thesis PED4-944 Carlos Gómez Suárez January

More information

Inertia Identification and Auto-Tuning. of Induction Motor Using MRAS

Inertia Identification and Auto-Tuning. of Induction Motor Using MRAS Inertia Identification and Auto-Tuning of Induction Motor Using MRAS Yujie GUO *, Lipei HUANG *, Yang QIU *, Masaharu MURAMATSU ** * Department of Electrical Engineering, Tsinghua University, Beijing,

More information

Model Predictive Torque and Flux Control Minimizing Current Distortions

Model Predictive Torque and Flux Control Minimizing Current Distortions Model Predictive Torque and Flux Control Minimizing Current istortions Petros Karamanakos, Member, IEEE, and Tobias Geyer, Senior Member, IEEE Abstract A new model predictive torque and flux controller

More information

Robust sliding mode speed controller for hybrid SVPWM based direct torque control of induction motor

Robust sliding mode speed controller for hybrid SVPWM based direct torque control of induction motor ISSN 1 746-7233, England, UK World Journal of Modelling and Simulation Vol. 3 (2007) No. 3, pp. 180-188 Robust sliding mode speed controller for hybrid SVPWM based direct torque control of induction motor

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

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

Robust Speed Controller Design for Permanent Magnet Synchronous Motor Drives Based on Sliding Mode Control

Robust Speed Controller Design for Permanent Magnet Synchronous Motor Drives Based on Sliding Mode Control Available online at www.sciencedirect.com ScienceDirect Energy Procedia 88 (2016 ) 867 873 CUE2015-Applied Energy Symposium and Summit 2015: ow carbon cities and urban energy systems Robust Speed Controller

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

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

2016 Kappa Electronics Motor Control Training Series Kappa Electronics LLC. -V th. Dave Wilson Co-Owner Kappa Electronics.

2016 Kappa Electronics Motor Control Training Series Kappa Electronics LLC. -V th. Dave Wilson Co-Owner Kappa Electronics. 2016 Kappa Electronics Motor Control Training Series 2016 Kappa Electronics C V th CoOwner Kappa Electronics www.kappaiq.com Benefits of Field Oriented Control NewtonMeters Maximum Torque Per Amp (MTPA)

More information

Parameter Prediction and Modelling Methods for Traction Motor of Hybrid Electric Vehicle

Parameter Prediction and Modelling Methods for Traction Motor of Hybrid Electric Vehicle Page 359 World Electric Vehicle Journal Vol. 3 - ISSN 232-6653 - 29 AVERE Parameter Prediction and Modelling Methods for Traction Motor of Hybrid Electric Vehicle Tao Sun, Soon-O Kwon, Geun-Ho Lee, Jung-Pyo

More information

Transient Analysis of Doubly Fed Wind Power Induction Generator Using Coupled Field-Circuit Model

Transient Analysis of Doubly Fed Wind Power Induction Generator Using Coupled Field-Circuit Model Publication P2 Seman, S., Kanerva, S., Niiranen, J., Arkkio, A. 24. Transient Analysis of Wind Power Doubly Fed Induction Generator Using Coupled Field Circuit Model, Proceedings of ICEM 24, 5-8 September

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

Mathematical Modelling of an 3 Phase Induction Motor Using MATLAB/Simulink

Mathematical Modelling of an 3 Phase Induction Motor Using MATLAB/Simulink 2016 IJSRSET Volume 2 Issue 3 Print ISSN : 2395-1990 Online ISSN : 2394-4099 Themed Section: Engineering and Technology Mathematical Modelling of an 3 Phase Induction Motor Using MATLAB/Simulink ABSTRACT

More information

Implementation of Twelve-Sector based Direct Torque Control for Induction motor

Implementation of Twelve-Sector based Direct Torque Control for Induction motor International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 2 Issue 4 ǁ April. 2013 ǁ PP.32-37 Implementation of Twelve-Sector based Direct Torque Control

More information

Modeling Free Acceleration of a Salient Synchronous Machine Using Two-Axis Theory

Modeling Free Acceleration of a Salient Synchronous Machine Using Two-Axis Theory 1 Modeling ree Acceleration of a Salient Synchronous Machine Using Two-Axis Theory Abdullah H. Akca and Lingling an, Senior Member, IEEE Abstract This paper investigates a nonlinear simulation model of

More information

Speed Control of Induction Motor Drives using Nonlinear Adaptive Controller

Speed Control of Induction Motor Drives using Nonlinear Adaptive Controller Speed Control of Induction Motor Drives using Nonlinear Adaptive Controller 1 Sarojini.P, 2 Mr. R Issan Raj M.E Control and Instrumentation Engineering Valliammai Engineering College Kancheepuram District

More information

Module 4. Single-phase AC Circuits

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

More information

Comparative Analysis of Speed Control of Induction Motor by DTC over Scalar Control Technique

Comparative Analysis of Speed Control of Induction Motor by DTC over Scalar Control Technique Comparative Analysis of Speed Control of Induction Motor by DTC over Scalar Control Technique S.Anuradha 1, N.Amarnadh Reddy 2 M.Tech (PE), Dept. of EEE, VNRVJIET, T.S, India 1 Assistant Professor, Dept.

More information

Quanser NI-ELVIS Trainer (QNET) Series: QNET Experiment #02: DC Motor Position Control. DC Motor Control Trainer (DCMCT) Student Manual

Quanser NI-ELVIS Trainer (QNET) Series: QNET Experiment #02: DC Motor Position Control. DC Motor Control Trainer (DCMCT) Student Manual Quanser NI-ELVIS Trainer (QNET) Series: QNET Experiment #02: DC Motor Position Control DC Motor Control Trainer (DCMCT) Student Manual Table of Contents 1 Laboratory Objectives1 2 References1 3 DCMCT Plant

More information

the machine makes analytic calculation of rotor position impossible for a given flux linkage and current value.

the machine makes analytic calculation of rotor position impossible for a given flux linkage and current value. COMPARISON OF FLUX LINKAGE ESTIMATORS IN POSITION SENSORLESS SWITCHED RELUCTANCE MOTOR DRIVES Erkan Mese Kocaeli University / Technical Education Faculty zmit/kocaeli-turkey email: emese@kou.edu.tr ABSTRACT

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

Modelling and Simulation of Direct Self-Control Systems*

Modelling and Simulation of Direct Self-Control Systems* Int. J. Engng Ed. Vol. 19, No., pp. ±, 003 099-19X/91 $3.00+0.00 Printed in Great Britain. # 003 TEMPUS Publications. Modelling and Simulation of Direct Self-Control Systems* K. L. SHI, T. F. CHAN, Y.

More information

NONLINEAR MPPT CONTROL OF SQUIRREL CAGE INDUCTION GENERATOR-WIND TURBINE

NONLINEAR MPPT CONTROL OF SQUIRREL CAGE INDUCTION GENERATOR-WIND TURBINE NONLINEAR MPPT CONTROL OF SQUIRREL CAGE INDUCTION GENERATOR-WIND TURBINE 1 M. BENCHAGRA, 2 M. MAAROUFI. 3 M. OUASSAID 1, 2 Department of Electrical Engineering, Mohammadia School of Engineering- BP 767-Rabat-

More information

Sensorless Control for High-Speed BLDC Motors With Low Inductance and Nonideal Back EMF

Sensorless Control for High-Speed BLDC Motors With Low Inductance and Nonideal Back EMF Sensorless Control for High-Speed BLDC Motors With Low Inductance and Nonideal Back EMF P.Suganya Assistant Professor, Department of EEE, Bharathiyar Institute of Engineering for Women Salem (DT). Abstract

More information

Chapter 8: Converter Transfer Functions

Chapter 8: Converter Transfer Functions Chapter 8. Converter Transfer Functions 8.1. Review of Bode plots 8.1.1. Single pole response 8.1.2. Single zero response 8.1.3. Right half-plane zero 8.1.4. Frequency inversion 8.1.5. Combinations 8.1.6.

More information

ISSN: (Online) Volume 2, Issue 2, February 2014 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 2, Issue 2, February 2014 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 2, Issue 2, February 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Paper / Case Study Available online at:

More information

Simplified EKF Based Sensorless Direct Torque Control of Permanent Magnet Brushless AC Drives

Simplified EKF Based Sensorless Direct Torque Control of Permanent Magnet Brushless AC Drives International Journal of Automation and Computing (24) 35-4 Simplified EKF Based Sensorless Direct Torque Control of Permanent Magnet Brushless AC Drives Yong Liu, Ziqiang Zhu, David Howe Department of

More information

Offline Parameter Identification of an Induction Machine Supplied by Impressed Stator Voltages

Offline Parameter Identification of an Induction Machine Supplied by Impressed Stator Voltages POSTER 2016, PRAGUE MAY 24 1 Offline Parameter Identification of an Induction Machine Supplied by Impressed Stator Voltages Tomáš KOŠŤÁL Dept. of Electric Drives and Traction, Czech Technical University,

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

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

Vector Controlled Power Generation in a Point Absorber Based Wave Energy Conversion System

Vector Controlled Power Generation in a Point Absorber Based Wave Energy Conversion System Vector Controlled Power Generation in a Point Absorber Based Wave Energy Conversion System Jisha Thomas Chandy 1 and Mr. Vishnu J 2 1,2 Electrical & Electronics Dept of Engineering, Sree Buddha College

More information

A Multirate Field Construction Technique for Efficient Modeling of the Fields and Forces within Inverter-Fed Induction Machines

A Multirate Field Construction Technique for Efficient Modeling of the Fields and Forces within Inverter-Fed Induction Machines A Multirate Field Construction Technique for Efficient Modeling of the Fields and Forces within Inverter-Fed Induction Machines Dezheng Wu, Steve Peare School of Electrical and Computer Engineering Purdue

More information

Improved efficiency of a fan drive system without using an encoder or current sensors

Improved efficiency of a fan drive system without using an encoder or current sensors Improved efficiency of a fan drive system without using an encoder or current sensors Tian-Hua Liu, Jyun-Jie Huang Department of Electrical Engineering, National Taiwan University of Science Technology,

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