Motor control using FPGA

Size: px
Start display at page:

Download "Motor control using FPGA"

Transcription

1 Motor control using FPGA MOTIVATION In the previous chapter you learnt ways to interface external world signals with an FPGA. The next chapter discusses digital design and control implementation of different motors stepper, permanent magnet DC motor, brushless DC motor, permanent magnet synchronous motor (PMSM) and permanent magnet reluctance motor. For the robot controller application chosen in this book, the electric motor is the actuator of the control scheme. There are many types of electric motors available that can be used for robot applications. The control scheme used for each motor type may be unique, but the overall control approach for motion control is similar across motor drives. A motor controller is a device or group of devices that serves to govern in some predetermined manner the performance of an electric motor. A motor controller might include a manual or automatic means for starting and stopping the motor, selecting forward or reverse rotation, selecting and regulating the speed, regulating or limiting the torque, and protecting against overloads and faults. There are various types of motors. The type of motor used for robot joint axis control varies. Simple robots use the stepper and DC motor for joint control. Contemporary industrial robots use AC servomotors such as a permanent magnet synchronous motor (PMSM) for axis control. So, it becomes necessary to learn about the different motors and their control techniques.

2 Types of motor (Source : Wikipedia ) PREREQUISITES A basic understanding of what is meant by motors is required. SUGGESTED TIME 8 hrs LEARNING OBJECTIVES In this module we will be learning about: motor drivers, position loops and speed loops Stepper Motor Controller different types of Motors. READING MATERIAL Motor control

3 Introduction to Motor Drives Robots make tremous use of electric motor drives as actuators. Electric motors as actuators for robot joint movement have proved to better than hydraulic and pneumatic actuators. Moreover, electric motor based control schemes are cleaner and easier to execute. Previously, robots had used brushed DC motors as actuators. Although the control of DC motors is basic, it is not favoured because of frequent maintenance and probable risk due to sparking of brushes. Today many robot manufacturers use AC servomotors instead of DC motors. Implementation of complex algorithms is possible due to fast digital circuits. These are required to control AC motors. To get a whole picture, this module besides FPGA-based control of DC motors, includes control techniques used for AC servomotors. Every motor drive gives basic functionality for: Setting of speed reference Control of motor direction (forward or reverse) Run/Jog operating controls Setting of acceleration/deceleration rate Emergency stop using dynamic or regenerative braking. Digital Block Diagram for Robot Axis Control The robot axis motion control is made up of three control loops. All these three loops work in tandem to move the robot axis to the position directed by the profile generator. The output of the position controller is made to be the reference for the speed loop. Likewise, the output of the speed controller becomes the reference for the motor current/torque loop. The controller s task for all loops is to decrease the error between the reference and feedback values.

4 Control loops of motor control system Position Loop The position loop is the outermost loop. For the robot control system, it shows the position of each axis of the robot for the robot control system. The inverse kinematics algorithm calculates the desired value of rotation, θn required for each axis, and this is the reference to the position loop. The profile generator is a widely used reference for the position loop. Since the time constant of physical movement of the robot axis is of the order of milliseconds, a software based approach can be utilised for profile generation. Shown below is the software code which explains the profile generation for one axis of the robot controller. A free running timer peripheral is employed to produce periodic interrupts. The process can dep on this to run the position control algorithm. Control loops of a motor control system are given below: On interrupt /* from timer */ { Q1 = encoder_counter1 /* current pos of axis 1 */ Q1s = setpoint_register1 /* set point Q1s axis one */ /* error generating junction */ e1 = Q1s - Q1 /* PID controller */

5 i = i_old + ( e1 + e1_old )/2; /* integrator */ i_old = i; d = e1 - e1_old; /* derivative term */ e1_old = e1; c = (kp * e) + (kp * i) + (kd * d); } Speed Loop The task of the speed control loop is to rectify the speed error by sampling the speed reference and measure speed variable periodically. The speed error is provided to a controller to create a reference for the current loop. Both software and hardware approaches can be used for this update time requirement since the update time of a speed loop controller varies from 1 10 ms. Digital block diagram of control loop Power Module of Motor The output of the torque-current controller gives a set point to the power module of the firing control circuit. The sampling period of the firing circuit differs with the type of power module topology. A zero crossing of the input waveform supplied by a synchronizing transformer is utilised to update the sampling period for each firing circuit for a single-phase rectifier circuit. The time taken for a 50-Hz input voltage to the rectifier is 3.33 ms. The power devices of the bridge are

6 switched at a frequency around 20 khz to produce a sinusoidal PWM voltage using a three-phase bridge. Case Studies for Motor Control The kind of motor used for robot joint axis control varies. For example, simple robots use the stepper and DC motor for joint control while contemporary industrial robots use AC servomotors such as a permanent magnet synchronous motor (PMSM) for axis control. The following section analyses different motors and their control techniques. Stepper Motor Controller A stepper motor is an electric machine which rotates in discrete angular increments. Shown below is a cross-sectional view of the motor. The angular increment is used to compute the number of steps required to complete one revolution. Since stepper motors move to a commanded number of steps, many stepper motor applications do not need position sensing. This lessens the complexity of stepper motor movements. Stepper motors are made use of in diverse applications as in printers, plotters, X Y tables, image scanners, copiers, medical apparatus and other devices. Illustration of stepper motor Cross-sectional view of the stepper motor From the stand point of digital control, the stator poles of the stepper motor need to be regularly excited to initiate movement of the permanent magnet rotor. The excitation table of a motor differs from choices that give single step movement with one or two winding excitation. Simultaneous excitation of two windings gives greater torque as related to one winding. Half step excitation that increases the resolution of the movement is shown in tables. Stepper motor full step, single-phase excitation

7 Stepper motor full step, two-phase excitation Example: Write a Verilog HDL code that controls the speed and direction of a stepper motor working in single-phase excitation, as given in the table. The code gives excitation to two of the four coils of the stepper motor stator. The FSM makes sure that the proper sequence is followed for coil excitation. The direction of rotation is varied by changing the sequence of coil supply denoted by coil_supply_f and coil_supply_r. Verilog code for control of a stepper motor module stepper (input clk, rst, dir, output [3:0] coil _ supply); define reset 3 d0 define step1 3 d1 define step2 3,d2

8 define step3 3 d3 define step4 3 d4 reg [2:0] ps,ns; //present state (ps) and next state (ns) registers wire clk _ spd; reg [3:0] coil _ supply _f, coil _ supply _r ; assign clk _ spd = clk; // Based on desired motor speed, the clk _ spd is set ( posedge rst or posedge clk _ spd ) // state transition begin if ( rst ) ps <= reset; else ps <= ns; ( ps ) //select of next state and change of output begin Case ( ps ) reset : begin ns <= step 1; coil _ supply _ f <= 4 b0000; coil _ supply _ r <= 4 b0000; step1 : begin ns < = step2; coil _ supply _ f < = 4 b0011; // 4 bdcba winding coil _ supply _ r <= 4 b1001; step2 : begin

9 ns < = step3; coil _ supply _ f < = 4 b0110; coil _ supply _ r <= 4 b1100; step3 : begin ns < = step4; coil _ supply _ f < = 4 b1100; coil _ supply _ r <= 4 b0110; step4 : begin ns <= reset; coil _ supply _ f <= 4 b1001; coil _ supply _ f <= 4 b0011; Default begin case ns <= reset; coil _ supply _ f <= 4 b0000; coil _ supply _ f <= 4 b0000; assign coil _ supply = ( dir == 1 b1)? Coil _ supply _ f: coil _ supply _ r module Permanent Magnet DC Motor One of the most widely used motors is the permanent magnet DC motor. Its feature of providing a speed proportional to the applied voltage makes it very easy to control. An H-bridge configuration is used to give four-quadrant speed control to DC motors. The control scheme is made up of a free running counter

10 that produces a ramp signal. This ramp is utilised for setting the duty cycle of the PWM signal. The counter value is compared with a control voltage (Vc). If the value of Vc is higher, then the duty cycle will be higher of the PWM voltage. The voltage across the motor terminals is the average value of the duty cycle of the PWM. Permanent magnet DC motor control using a field programmable device

11 Change in PWM duty cycle based on the value of the control voltage Vc Verilog code for PWM control of a PMDC motor module pwm (input wire [7:0] vc, input clk, input rst, output reg pwm); reg [7:0] counter; (posedge clk) being if(rst) counter = 8 h00; else if (counter <vc) being pwm = 1 b1; counter = counter +1; else

12 being pwm = 1 b0; counter = counter +1; module The Verilog code above shows a counter circuit along with comparator logic. For values of Vc less than the counter value, the PWM output is set at logic 1, else it is set at logic 0. A section of the synthesis report below shows identification of an 8-bit counter, 8-bit comparator and a 1-bit register for the PWM output signal. Synthesis report of a PWM controller for a PMDC motor Dead Time Control The power device bridge is vulnerable to shoot-through faults, when devices on the same leg turn on together. To avoid shoot-through problems, a finite delay is

13 integrated in the turn on and turn off of the upper and lower devices of a power bridge. Several DSPs inted for motor applications have exclusive hardware for dead time control. A programmable dead time timer is interlocked with the drive ok permissive. Dead time delay logic and HDL implementation to give delayed output of a device triggering signal are described. Logic for implementing a dead band for a PMDC motor H-bridge Given below is the HDL code which is made up of the logic, to control the upper device of a given leg. To get the control signal of the upper device the input signal A is multiplied by a time (dead-time) delayed signal da. Dead time for the circuit can be altered by changing the constant (6 h3c), which is used for comparison with the count value.

14 The reader is urged to write an HDL code which will control the upper and lower devices of the three legs of a power bridge (since dead-time is often used as a component in motor control, try to design using a re-usable instance based approach). Verilog code for setting dead time between devices on the same leg of an H-bridge module deadtime (input rst, a, clk, output upper_sw); reg [5:0] counter; reg da; (posedge clk or posedge rst) being if(rst) begin da<=0; count<=0; else if(a) begin count <= count +1; if(count == 6 h3c) da <= 1 b1; else if (~a) begin

15 count <=0; da <= 1 b0; assign upper_sw = a && da; module

Design of double loop-locked system for brush-less DC motor based on DSP

Design of double loop-locked system for brush-less DC motor based on DSP International Conference on Advanced Electronic Science and Technology (AEST 2016) Design of double loop-locked system for brush-less DC motor based on DSP Yunhong Zheng 1, a 2, Ziqiang Hua and Li Ma 3

More information

Laboratory Exercise 1 Microcontroller Board with Driver Board

Laboratory Exercise 1 Microcontroller Board with Driver Board Laboratory Exercise 1 Microcontroller Board with Driver Board The purpose of this lab exercises is to demonstrate how the Microcontroller Board can be used to control motors connected to the Driver Board

More information

MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits

MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits PH-315 MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits Portland State University Summary Four sequential digital waveforms are used to control a stepper motor. The main objective

More information

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G P R O F. S L A C K L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G G B S E E E @ R I T. E D U B L D I N G 9, O F F I C E 0 9-3 1 8 9 ( 5 8 5 ) 4 7 5-5 1 0

More information

Lab Exercise 9: Stepper and Servo Motors

Lab Exercise 9: Stepper and Servo Motors ME 3200 Mechatronics Laboratory Lab Exercise 9: Stepper and Servo Motors Introduction In this laboratory exercise, you will explore some of the properties of stepper and servomotors. These actuators are

More information

Upgrading from Stepper to Servo

Upgrading from Stepper to Servo Upgrading from Stepper to Servo Switching to Servos Provides Benefits, Here s How to Reduce the Cost and Challenges Byline: Scott Carlberg, Motion Product Marketing Manager, Yaskawa America, Inc. The customers

More information

ServoStep technology

ServoStep technology What means "ServoStep" "ServoStep" in Ever Elettronica's strategy resumes seven keypoints for quality and performances in motion control applications: Stepping motors Fast Forward Feed Full Digital Drive

More information

Free Programmable Signal Processing inside a High Performance Servo Amplifier

Free Programmable Signal Processing inside a High Performance Servo Amplifier 1 Free Programmable Signal Processing inside a High Performance Servo Amplifier J. O. Krah S. Geiger G. Jaskowski Seidel Servo Drives / Kollmorgen 40489 Düsseldorf Abstract The availability of digital

More information

combine regular DC-motors with a gear-box and an encoder/potentiometer to form a position control loop can only assume a limited range of angular

combine regular DC-motors with a gear-box and an encoder/potentiometer to form a position control loop can only assume a limited range of angular Embedded Control Applications II MP10-1 Embedded Control Applications II MP10-2 week lecture topics 10 Embedded Control Applications II - Servo-motor control - Stepper motor control - The control of a

More information

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin 2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control October 5, 2009 Dr. Harrison H. Chin Formal Labs 1. Microcontrollers Introduction to microcontrollers Arduino microcontroller

More information

Design of Joint Controller Circuit for PA10 Robot Arm

Design of Joint Controller Circuit for PA10 Robot Arm Design of Joint Controller Circuit for PA10 Robot Arm Sereiratha Phal and Manop Wongsaisuwan Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand.

More information

Step vs. Servo Selecting the Best

Step vs. Servo Selecting the Best Step vs. Servo Selecting the Best Dan Jones Over the many years, there have been many technical papers and articles about which motor is the best. The short and sweet answer is let s talk about the application.

More information

PART 2 - ACTUATORS. 6.0 Stepper Motors. 6.1 Principle of Operation

PART 2 - ACTUATORS. 6.0 Stepper Motors. 6.1 Principle of Operation 6.1 Principle of Operation PART 2 - ACTUATORS 6.0 The actuator is the device that mechanically drives a dynamic system - Stepper motors are a popular type of actuators - Unlike continuous-drive actuators,

More information

Sensors and Sensing Motors, Encoders and Motor Control

Sensors and Sensing Motors, Encoders and Motor Control Sensors and Sensing Motors, Encoders and Motor Control Todor Stoyanov Mobile Robotics and Olfaction Lab Center for Applied Autonomous Sensor Systems Örebro University, Sweden todor.stoyanov@oru.se 13.11.2014

More information

ACTUATORS AND SENSORS. Joint actuating system. Servomotors. Sensors

ACTUATORS AND SENSORS. Joint actuating system. Servomotors. Sensors ACTUATORS AND SENSORS Joint actuating system Servomotors Sensors JOINT ACTUATING SYSTEM Transmissions Joint motion low speeds high torques Spur gears change axis of rotation and/or translate application

More information

DC motor control using arduino

DC motor control using arduino DC motor control using arduino 1) Introduction: First we need to differentiate between DC motor and DC generator and where we can use it in this experiment. What is the main different between the DC-motor,

More information

CHAPTER 2 CURRENT SOURCE INVERTER FOR IM CONTROL

CHAPTER 2 CURRENT SOURCE INVERTER FOR IM CONTROL 9 CHAPTER 2 CURRENT SOURCE INVERTER FOR IM CONTROL 2.1 INTRODUCTION AC drives are mainly classified into direct and indirect converter drives. In direct converters (cycloconverters), the AC power is fed

More information

PWM, ALT, HALT, HAST.

PWM, ALT, HALT, HAST. CLOSED LOOP IMPLEMENTATION OF SPEED CONTROL OF A BRUSHED PMDC MOTOR OF AN X-RAY SYSTEM AND VALIDATION OF RELIABILITY OF THE CONTROLLER Mutum Meenakshi Devi 1, V Chayapathy 2 Dept. of Electrical and Electronics

More information

HARDWARE IMPLEMENTATION OF DIGITAL SIGNAL CONTROLLER FOR THREE PHASE VECTOR CONTROLLED INDUCTION MOTOR

HARDWARE IMPLEMENTATION OF DIGITAL SIGNAL CONTROLLER FOR THREE PHASE VECTOR CONTROLLED INDUCTION MOTOR HARDWARE IMPLEMENTATION OF DIGITAL SIGNAL CONTROLLER FOR THREE PHASE VECTOR CONTROLLED INDUCTION MOTOR SOHEIR M. A. ALLAHON, AHMED A. ABOUMOBARKA, MAGD A. KOUTB, H. MOUSA Engineer,Faculty of Electronic

More information

Administrative Notes. DC Motors; Torque and Gearing; Encoders; Motor Control. Today. Early DC Motors. Friday 1pm: Communications lecture

Administrative Notes. DC Motors; Torque and Gearing; Encoders; Motor Control. Today. Early DC Motors. Friday 1pm: Communications lecture At Actuation: ti DC Motors; Torque and Gearing; Encoders; Motor Control RSS Lecture 3 Wednesday, 11 Feb 2009 Prof. Seth Teller Administrative Notes Friday 1pm: Communications lecture Discuss: writing up

More information

Design of A Closed Loop Speed Control For BLDC Motor

Design of A Closed Loop Speed Control For BLDC Motor International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 3, Issue 11 (November 214), PP.17-111 Design of A Closed Loop Speed Control For BLDC

More information

Speed Control of BLDC Motor Using FPGA

Speed Control of BLDC Motor Using FPGA Speed Control of BLDC Motor Using FPGA Jisha Kuruvilla 1, Basil George 2, Deepu K 3, Gokul P.T 4, Mathew Jose 5 Assistant Professor, Dept. of EEE, Mar Athanasius College of Engineering, Kothamangalam,

More information

The DC Machine Laboration 3

The DC Machine Laboration 3 EIEN25 - Power Electronics: Devices, Converters, Control and Applications The DC Machine Laboration 3 Updated February 19, 2018 1. Before the lab, look through the manual and make sure you are familiar

More information

Sensors and Sensing Motors, Encoders and Motor Control

Sensors and Sensing Motors, Encoders and Motor Control Sensors and Sensing Motors, Encoders and Motor Control Todor Stoyanov Mobile Robotics and Olfaction Lab Center for Applied Autonomous Sensor Systems Örebro University, Sweden todor.stoyanov@oru.se 05.11.2015

More information

Job Sheet 2 Servo Control

Job Sheet 2 Servo Control Job Sheet 2 Servo Control Electrical actuators are replacing hydraulic actuators in many industrial applications. Electric servomotors and linear actuators can perform many of the same physical displacement

More information

AN Industrial Stepper Motor Driver. Application Note Abstract. Introduction. Stepper Motor Control Method

AN Industrial Stepper Motor Driver. Application Note Abstract. Introduction. Stepper Motor Control Method Industrial Stepper Motor Driver AN43679 Author: Dino Gu, Bill Jiang, Jemmey Huang Associated Project: Yes Associated Part Family: CY8C27x43, CY8C29x66 GET FREE SAMPLES HERE Software Version: PSoC Designer

More information

Design of stepper motor position control system based on DSP. Guan Fang Liu a, Hua Wei Li b

Design of stepper motor position control system based on DSP. Guan Fang Liu a, Hua Wei Li b nd International Conference on Machinery, Electronics and Control Simulation (MECS 17) Design of stepper motor position control system based on DSP Guan Fang Liu a, Hua Wei Li b School of Electrical Engineering,

More information

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 65 CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 4.1 INTRODUCTION Many control strategies are available for the control of IMs. The Direct Torque Control (DTC) is one of the most

More information

Application Information

Application Information Application Information Allegro Motor Driving with Angular Sensor IC By Christophe Lutz, Andrea Foletto, Kamyar Khosravi, Masahira Kurihara, Charles Keefer, and Ryan Bradley, Allegro Microsystems France,

More information

EXPERIMENT 6: Advanced I/O Programming

EXPERIMENT 6: Advanced I/O Programming EXPERIMENT 6: Advanced I/O Programming Objectives: To familiarize students with DC Motor control and Stepper Motor Interfacing. To utilize MikroC and MPLAB for Input Output Interfacing and motor control.

More information

Detect stepper motor stall with back EMF technique (Part 1)

Detect stepper motor stall with back EMF technique (Part 1) Detect stepper motor stall with back EMF technique (Part 1) Learn about this method that takes advantage of constant motor parameters and overcomes limitations of traditional stall detection of current

More information

CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE

CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE 23 CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE 2.1 PID CONTROLLER A proportional Integral Derivative controller (PID controller) find its application in industrial control system. It

More information

I hope you have completed Part 2 of the Experiment and is ready for Part 3.

I hope you have completed Part 2 of the Experiment and is ready for Part 3. I hope you have completed Part 2 of the Experiment and is ready for Part 3. In part 3, you are going to use the FPGA to interface with the external world through a DAC and a ADC on the add-on card. You

More information

A COMPARISON STUDY OF THE COMMUTATION METHODS FOR THE THREE-PHASE PERMANENT MAGNET BRUSHLESS DC MOTOR

A COMPARISON STUDY OF THE COMMUTATION METHODS FOR THE THREE-PHASE PERMANENT MAGNET BRUSHLESS DC MOTOR A COMPARISON STUDY OF THE COMMUTATION METHODS FOR THE THREE-PHASE PERMANENT MAGNET BRUSHLESS DC MOTOR Shiyoung Lee, Ph.D. Pennsylvania State University Berks Campus Room 120 Luerssen Building, Tulpehocken

More information

Assembly Language. Topic 14 Motion Control. Stepper and Servo Motors

Assembly Language. Topic 14 Motion Control. Stepper and Servo Motors Assembly Language Topic 14 Motion Control Stepper and Servo Motors Objectives To gain an understanding of the operation of a stepper motor To develop a means to control a stepper motor To gain an understanding

More information

Type of loads Active load torque: - Passive load torque :-

Type of loads Active load torque: - Passive load torque :- Type of loads Active load torque: - Active torques continues to act in the same direction irrespective of the direction of the drive. e.g. gravitational force or deformation in elastic bodies. Passive

More information

HPVFP High Performance Full Function Vector Frequency Inverter

HPVFP High Performance Full Function Vector Frequency Inverter Advanced User Manual HPVFP High Performance Full Function Vector Frequency Inverter HP VER 1.00 1. HPVFP Parameter Set Overview...3 1.1. About this section...3 1.2. Parameter Structure Overview...3 1.3.

More information

Page ENSC387 - Introduction to Electro-Mechanical Sensors and Actuators: Simon Fraser University Engineering Science

Page ENSC387 - Introduction to Electro-Mechanical Sensors and Actuators: Simon Fraser University Engineering Science Motor Driver and Feedback Control: The feedback control system of a dc motor typically consists of a microcontroller, which provides drive commands (rotation and direction) to the driver. The driver is

More information

DMCode-MS(BL) MATLAB Library

DMCode-MS(BL) MATLAB Library Technosoft is a Third Party of Texas Instruments supporting the TMS320C28xx and TMS320F24xx DSP controllers of the C2000 family To help you get your project started rapidly, Technosoft offers the DMCode-MS(BL)

More information

Nicolò Antonante Kristian Bergaplass Mumba Collins

Nicolò Antonante Kristian Bergaplass Mumba Collins Norwegian University of Science and Technology TET4190 Power Electronics for Renewable Energy Mini-project 19 Power Electronics in Motor Drive Application Nicolò Antonante Kristian Bergaplass Mumba Collins

More information

Fuzzy logic control implementation in sensorless PM drive systems

Fuzzy logic control implementation in sensorless PM drive systems Philadelphia University, Jordan From the SelectedWorks of Philadelphia University, Jordan Summer April 2, 2010 Fuzzy logic control implementation in sensorless PM drive systems Philadelphia University,

More information

Datasheet of the MEZ Stepper Servo Drive MEZ 2D VDC, 8.2A Peak, Closed-loop, No Tuning. Version

Datasheet of the MEZ Stepper Servo Drive MEZ 2D VDC, 8.2A Peak, Closed-loop, No Tuning. Version Datasheet of the MEZ Stepper Servo Drive MEZ D880 4-75VDC, 8.A Peak, Closed-loop, No Tuning Version 0.1.1 http://www.motionking.com Features Step and direction control Closed position loop for no loss

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 11 Motor Control

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 11 Motor Control EEE34 Microcontroller Applications Department of Electrical Engineering Lecture Motor Control Week 3 EEE34 Microcontroller Applications In this Lecture. Interface 85 with the following output Devices Optoisolator

More information

National Infotech. Electrical Drive Trainers. Developed By: : Authorized Dealer : Embedded System Solutions

National Infotech. Electrical Drive Trainers. Developed By: : Authorized Dealer : Embedded System Solutions National Infotech A way to Power Electronics and Embedded System Solutions Electrical Drive Trainers In every industry there are industrial processes where electrical motors are used as a part of process

More information

Analog Devices: High Efficiency, Low Cost, Sensorless Motor Control.

Analog Devices: High Efficiency, Low Cost, Sensorless Motor Control. Analog Devices: High Efficiency, Low Cost, Sensorless Motor Control. Dr. Tom Flint, Analog Devices, Inc. Abstract In this paper we consider the sensorless control of two types of high efficiency electric

More information

CHAPTER 6 THREE-LEVEL INVERTER WITH LC FILTER

CHAPTER 6 THREE-LEVEL INVERTER WITH LC FILTER 97 CHAPTER 6 THREE-LEVEL INVERTER WITH LC FILTER 6.1 INTRODUCTION Multi level inverters are proven to be an ideal technique for improving the voltage and current profile to closely match with the sinusoidal

More information

Module 7. Electrical Machine Drives. Version 2 EE IIT, Kharagpur 1

Module 7. Electrical Machine Drives. Version 2 EE IIT, Kharagpur 1 Module 7 Electrical Machine Drives Version 2 EE IIT, Kharagpur 1 Lesson 34 Electrical Actuators: Induction Motor Drives Version 2 EE IIT, Kharagpur 2 Instructional Objectives After learning the lesson

More information

EE152 Final Project Report

EE152 Final Project Report LPMC (Low Power Motor Controller) EE152 Final Project Report Summary: For my final project, I designed a brushless motor controller that operates with 6-step commutation with a PI speed loop. There are

More information

Study on a Simplified Converter Topology for Fault Tolerant Motor Drives

Study on a Simplified Converter Topology for Fault Tolerant Motor Drives Study on a Simplified Converter Topology for Fault Tolerant Motor Drives L. Szabó, M. Ruba and D. Fodorean Technical University of Cluj, Department of Electrical Machines, Cluj, Romania Abstract Some of

More information

Basic NC and CNC. Dr. J. Ramkumar Professor, Department of Mechanical Engineering Micro machining Lab, I.I.T. Kanpur

Basic NC and CNC. Dr. J. Ramkumar Professor, Department of Mechanical Engineering Micro machining Lab, I.I.T. Kanpur Basic NC and CNC Dr. J. Ramkumar Professor, Department of Mechanical Engineering Micro machining Lab, I.I.T. Kanpur Micro machining Lab, I.I.T. Kanpur Outline 1. Introduction to CNC machine 2. Component

More information

ME375 Lab Project. Bradley Boane & Jeremy Bourque April 25, 2018

ME375 Lab Project. Bradley Boane & Jeremy Bourque April 25, 2018 ME375 Lab Project Bradley Boane & Jeremy Bourque April 25, 2018 Introduction: The goal of this project was to build and program a two-wheel robot that travels forward in a straight line for a distance

More information

6.111 Lecture # 19. Controlling Position. Some General Features of Servos: Servomechanisms are of this form:

6.111 Lecture # 19. Controlling Position. Some General Features of Servos: Servomechanisms are of this form: 6.111 Lecture # 19 Controlling Position Servomechanisms are of this form: Some General Features of Servos: They are feedback circuits Natural frequencies are 'zeros' of 1+G(s)H(s) System is unstable if

More information

Digital PWM Techniques and Commutation for Brushless DC Motor Control Applications: Review

Digital PWM Techniques and Commutation for Brushless DC Motor Control Applications: Review Digital PWM Techniques and Commutation for Brushless DC Motor Control Applications: Review Prof. S.L. Tade 1, Ravindra Sor 2 & S.V. Kinkar 3 Professor, Dept. of E&TC, PCCOE, Pune, India 1 Scientist, ARDE-DRDO,

More information

AutoBench 1.1. software benchmark data book.

AutoBench 1.1. software benchmark data book. AutoBench 1.1 software benchmark data book Table of Contents Angle to Time Conversion...2 Basic Integer and Floating Point...4 Bit Manipulation...5 Cache Buster...6 CAN Remote Data Request...7 Fast Fourier

More information

Computer Numeric Control

Computer Numeric Control Computer Numeric Control TA202A 2017-18(2 nd ) Semester Prof. J. Ramkumar Department of Mechanical Engineering IIT Kanpur Computer Numeric Control A system in which actions are controlled by the direct

More information

Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU

Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU Application Note Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU AN026002-0608 Abstract This application note describes a controller for a 200 W, 24 V Brushless DC (BLDC) motor used to power

More information

Application Note. Brushless DC Motor Control AN-1114

Application Note. Brushless DC Motor Control AN-1114 Application Note AN-1114 Abstract In this application note a GreenPAK configuration applicable for a single-phase BLDC motor is introduced. This application note comes complete with design files which

More information

Stepping motor controlling apparatus

Stepping motor controlling apparatus Stepping motor controlling apparatus Ngoc Quy, Le*, and Jae Wook, Jeon** School of Information and Computer Engineering, SungKyunKwan University, 300 Chunchundong, Jangangu, Suwon, Gyeonggi 440746, Korea

More information

AC Drive Technology. An Overview for the Converting Industry. Siemens Industry, Inc All rights reserved.

AC Drive Technology. An Overview for the Converting Industry.  Siemens Industry, Inc All rights reserved. AC Drive Technology An Overview for the Converting Industry www.usa.siemens.com/converting Siemens Industry, Inc. 2016 All rights reserved. Answers for industry. AC Drive Technology Drive Systems AC Motors

More information

Application of a Software Configurable Digital Servo Amplifier to an Electric Machine Control Course

Application of a Software Configurable Digital Servo Amplifier to an Electric Machine Control Course Paper 175, ENG 105 Application of a Software Configurable Digital Servo Amplifier to an Electric Machine Control Course Shiyoung Lee, Ph.D. Pennsylvania State University Berks Campus sul28@psu.edu Abstract

More information

Contributions Concerning the Command of the Brushless D.C. Servomotor

Contributions Concerning the Command of the Brushless D.C. Servomotor Proceedings of the th WSEAS International Conference on SYSTEMS, Vouliagmeni, Athens, Greece, July -, (pp-) Contributions Concerning the Command of the Brushless D.C. Servomotor GHEORGHE BALUTA and NIKOLAOS

More information

A HARDWARE DC MOTOR EMULATOR VAGNER S. ROSA 1, VITOR I. GERVINI 2, SEBASTIÃO C. P. GOMES 3, SERGIO BAMPI 4

A HARDWARE DC MOTOR EMULATOR VAGNER S. ROSA 1, VITOR I. GERVINI 2, SEBASTIÃO C. P. GOMES 3, SERGIO BAMPI 4 A HARDWARE DC MOTOR EMULATOR VAGNER S. ROSA 1, VITOR I. GERVINI 2, SEBASTIÃO C. P. GOMES 3, SERGIO BAMPI 4 Abstract Much work have been done lately to develop complex motor control systems. However they

More information

Hello, and welcome to this presentation of the FlexTimer or FTM module for Kinetis K series MCUs. In this session, you ll learn about the FTM, its

Hello, and welcome to this presentation of the FlexTimer or FTM module for Kinetis K series MCUs. In this session, you ll learn about the FTM, its Hello, and welcome to this presentation of the FlexTimer or FTM module for Kinetis K series MCUs. In this session, you ll learn about the FTM, its main features and the application benefits of leveraging

More information

Motion Control Glossary

Motion Control Glossary This section contains a description of many of the terms used in the design and application of motion control products and programmable devices. Although other reference books and definitions exist, these

More information

3-in-1 Air Condition Solution

3-in-1 Air Condition Solution 3-in-1 Air Condition Solution FTF-IND-F0476 Zhou Xuwei Application Engineer M A Y. 2 0 1 4 TM External Use Agenda Abstract Application Development Sensorless PMSM FOC Timing & PFC Timing Start Up Realization

More information

Shenzhen Alpha Inverter Co., Ltd. AS100 AC Servo Drive

Shenzhen Alpha Inverter Co., Ltd. AS100 AC Servo Drive Shenzhen Alpha Inverter Co., Ltd. AS100 AC Servo Drive 1 Feature AS100 series AC servo system consists of the all-digital AC servo drive and the permanent-magnet servo motor. AS100 AC servo drive adopts

More information

CHAPTER 4 FUZZY BASED DYNAMIC PWM CONTROL

CHAPTER 4 FUZZY BASED DYNAMIC PWM CONTROL 47 CHAPTER 4 FUZZY BASED DYNAMIC PWM CONTROL 4.1 INTRODUCTION Passive filters are used to minimize the harmonic components present in the stator voltage and current of the BLDC motor. Based on the design,

More information

Design and Construction of Synchronizing Check Relay

Design and Construction of Synchronizing Check Relay Design and Construction of Synchronizing Check Relay M.J.A.A.I.Jayawardene,, R.W.Jayawickrama, M.D.R.K.Karunarathna,S.A.P.U.Karunaratne, W.S.Lakmal Abstract This document contains an introduction about

More information

Active Vibration Isolation of an Unbalanced Machine Tool Spindle

Active Vibration Isolation of an Unbalanced Machine Tool Spindle Active Vibration Isolation of an Unbalanced Machine Tool Spindle David. J. Hopkins, Paul Geraghty Lawrence Livermore National Laboratory 7000 East Ave, MS/L-792, Livermore, CA. 94550 Abstract Proper configurations

More information

Code No: M0326 /R07 Set No. 1 1. Define Mechatronics and explain the application of Mechatronics in CNC Machine tools and Computer Integrated Manufacturing (CIM). 2. (a) What are the various Filters that

More information

IRT Mini Evo. Technical Manual. quality IN MOTION. quality IN MOTION

IRT Mini Evo. Technical Manual. quality IN MOTION.   quality IN MOTION IRT quality IN MOTION www.irtsa.com 2000 Mini Evo Technical Manual IRT quality IN MOTION Contents 1. INTRODUCTION 3 2. DESCRIPTION 5 3. TECHNICAL DATA 7 3.1 GENERAL DATA FOR ALL TYPES 7 3.2 SPECIFIC DATA

More information

Microcontroller Based Closed Loop Speed and Position Control of DC Motor

Microcontroller Based Closed Loop Speed and Position Control of DC Motor International Journal of Engineering and Advanced Technology (IJEAT) ISSN: 2249 8958, Volume-3, Issue-5, June 2014 Microcontroller Based Closed Loop Speed and Position Control of DC Motor Panduranga Talavaru,

More information

SPEED CONTROL OF BRUSHLES DC MOTOR

SPEED CONTROL OF BRUSHLES DC MOTOR SPEED CONTROL OF BRUSHLES DC MOTOR Kajal D. Parsana 1, Prof. H.M. Karkar 2, Prof. I.N. Trivedi 3 1 Department of Electrical Engineering, Atmiya Institute of Technology & Science, Rajkot, India. kajal.parsana@gmail.com

More information

SIMULATION AND IMPLEMENTATION OF CURRENT CONTROL OF BLDC MOTOR BASED ON A COMMON DC SIGNAL

SIMULATION AND IMPLEMENTATION OF CURRENT CONTROL OF BLDC MOTOR BASED ON A COMMON DC SIGNAL SIMULATION AND IMPLEMENTATION OF CURRENT CONTROL OF BLDC MOTOR BASED ON A COMMON DC SIGNAL J.Karthikeyan* Dr.R.Dhanasekaran** * Research Scholar, Anna University, Coimbatore ** Research Supervisor, Anna

More information

A Subsidiary of Regal-Beloit Corporation. AC Inverter Terminology

A Subsidiary of Regal-Beloit Corporation. AC Inverter Terminology AP200-9/01 Acceleration The rate of change in velocity as a function of time. Acceleration usually refers to increasing velocity and deceleration to decreasing velocity. Acceleration Boost During acceleration,

More information

FUJI Inverter. Standard Specifications

FUJI Inverter. Standard Specifications FUJI Inverter o Standard Specifications Norminal applied motor The rated output of a general-purpose motor, stated in kw. That is used as a standard motor. Rated capacity The rating of an output capacity,

More information

A VARIABLE SPEED PFC CONVERTER FOR BRUSHLESS SRM DRIVE

A VARIABLE SPEED PFC CONVERTER FOR BRUSHLESS SRM DRIVE A VARIABLE SPEED PFC CONVERTER FOR BRUSHLESS SRM DRIVE Mrs. M. Rama Subbamma 1, Dr. V. Madhusudhan 2, Dr. K. S. R. Anjaneyulu 3 and Dr. P. Sujatha 4 1 Professor, Department of E.E.E, G.C.E.T, Y.S.R Kadapa,

More information

Actuators. EECS461, Lecture 5, updated September 16,

Actuators. EECS461, Lecture 5, updated September 16, Actuators The other side of the coin from sensors... Enable a microprocessor to modify the analog world. Examples: - speakers that transform an electrical signal into acoustic energy (sound) - remote control

More information

Where: (J LM ) is the load inertia referred to the motor shaft. 8.0 CONSIDERATIONS FOR THE CONTROL OF DC MICROMOTORS. 8.

Where: (J LM ) is the load inertia referred to the motor shaft. 8.0 CONSIDERATIONS FOR THE CONTROL OF DC MICROMOTORS. 8. Where: (J LM ) is the load inertia referred to the motor shaft. 8.0 CONSIDERATIONS FOR THE CONTROL OF DC MICROMOTORS 8.1 General Comments Due to its inherent qualities the Escap micromotor is very suitable

More information

ANALYSIS OF POWER QUALITY IMPROVEMENT OF BLDC MOTOR DRIVE USING CUK CONVERTER OPERATING IN DISCONTINUOUS CONDUCTION MODE

ANALYSIS OF POWER QUALITY IMPROVEMENT OF BLDC MOTOR DRIVE USING CUK CONVERTER OPERATING IN DISCONTINUOUS CONDUCTION MODE ANALYSIS OF POWER QUALITY IMPROVEMENT OF BLDC MOTOR DRIVE USING CUK CONVERTER OPERATING IN DISCONTINUOUS CONDUCTION MODE Bhushan P. Mokal 1, Dr. K. Vadirajacharya 2 1,2 Department of Electrical Engineering,Dr.

More information

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

BLuAC5 Brushless Universal Servo Amplifier

BLuAC5 Brushless Universal Servo Amplifier BLuAC5 Brushless Universal Servo Amplifier Description The BLu Series servo drives provide compact, reliable solutions for a wide range of motion applications in a variety of industries. BLu Series drives

More information

Actuators in Automatic Control System

Actuators in Automatic Control System Actuators in Automatic Control System Measurement & Control Systems Transducers Measurement Process Actuators Data processing Requirement analyses Decision making Control actions CONTROL action requires

More information

RAPID CONTROL PROTOTYPING FOR ELECTRIC DRIVES

RAPID CONTROL PROTOTYPING FOR ELECTRIC DRIVES RAPID CONTROL PROTOTYPING FOR ELECTRIC DRIVES Lukáš Pohl Doctoral Degree Programme (2), FEEC BUT E-mail: xpohll01@stud.feec.vutbr.cz Supervised by: Petr Blaha E-mail: blahap@feec.vutbr.cz Abstract: This

More information

Power systems Protection course

Power systems Protection course Al-Balqa Applied University Power systems Protection course Department of Electrical Energy Engineering 1 Part 5 Relays 2 3 Relay Is a device which receive a signal from the power system thought CT and

More information

JetMove 1xx, 2xx, D203 at the JetControl Drive

JetMove 1xx, 2xx, D203 at the JetControl Drive JetMove 1xx, 2xx, D203 at the JetControl Drive 60874950 Introduction Item # 60874950 Revision 2.11.4 November 2012 / Printed in Germany Jetter AG reserves the right to make alterations to its products

More information

Robot Actuators. Motors and Control. Stepper Motor Basics. Increased Resolution. Stepper motors. DC motors AC motors. Physics review: Nature is lazy.

Robot Actuators. Motors and Control. Stepper Motor Basics. Increased Resolution. Stepper motors. DC motors AC motors. Physics review: Nature is lazy. obot Actuators tepper motors Motors and Control DC motors AC motors Physics review: ature is lazy. Things seek lowest energy states. iron core vs. magnet magnetic fields tend to line up Electric fields

More information

5. ELECTRIC DRIVES. 5.1 General description

5. ELECTRIC DRIVES. 5.1 General description 5. ELECTRIC DRIVES 5.1 General description Electric drive is an electromechanical system (mechatronic system) intended to set into motion technological equipment. They consist of an electric motor (motors),

More information

Using CME 2 with AccelNet

Using CME 2 with AccelNet Using CME 2 with AccelNet Software Installation Quick Copy (with Amplifier file) Quick Setup (with motor data) Offline Virtual Amplifier (with no amplifier connected) Screen Guide Page 1 Table of Contents

More information

Section CSI non-slaient pole synchronous motor drive

Section CSI non-slaient pole synchronous motor drive Section 4.4 - CS non-slaient pole synchronous motor drive 4.4.1 Perormance with current-source inverter (CS) drive Current-source driven synchronous motor drives generally give higher dynamic response

More information

Sistemi per il controllo motori

Sistemi per il controllo motori Sistemi per il controllo motori TALENTIS 4ª SESSIONE - 28 MAGGIO 2018 Speaker: Ing. Giuseppe Scuderi Automation and Motion control team Central Lab Prodotti ST per il controllo motori 2 Applicazioni e

More information

BLuAC5 Brushless Universal Servo Amplifier

BLuAC5 Brushless Universal Servo Amplifier BLuAC5 Brushless Universal Servo Amplifier Description The BLu Series servo drives provide compact, reliable solutions for a wide range of motion applications in a variety of industries. BLu Series drives

More information

Feedback Devices. By John Mazurkiewicz. Baldor Electric

Feedback Devices. By John Mazurkiewicz. Baldor Electric Feedback Devices By John Mazurkiewicz Baldor Electric Closed loop systems use feedback signals for stabilization, speed and position information. There are a variety of devices to provide this data, such

More information

ElectroCraft CompletePower Plus Universal Servo Drives

ElectroCraft CompletePower Plus Universal Servo Drives www.electrocraft.com ElectroCraft CompletePower Plus Universal Servo Drives Product Datasheets for ELECTROCRAFT CompletePower Plus UNIVERSAL DRIVE About ElectroCraft ElectroCraft, Inc. is a global provider

More information

Impact of PWM Control Frequency onto Efficiency of a 1 kw Permanent Magnet Synchronous Motor

Impact of PWM Control Frequency onto Efficiency of a 1 kw Permanent Magnet Synchronous Motor http://dx.doi.org/10.5755/j01.eie.22.6.17216 ELEKTRONIKA IR ELEKTROTECHNIKA, ISSN 1392-1215, VOL. 22, NO. 6, 2016 Impact of PWM Control Frequency onto Efficiency of a 1 kw Permanent Magnet Synchronous

More information

A Sequencing LSI for Stepper Motors PCD4511/4521/4541

A Sequencing LSI for Stepper Motors PCD4511/4521/4541 A Sequencing LSI for Stepper Motors PCD4511/4521/4541 The PCD4511/4521/4541 are excitation control LSIs designed for 2-phase stepper motors. With just one of these LSIs and a stepper motor driver IC (e.g.

More information

IEEE TRANSACTIONS ON POWER ELECTRONICS, VOL. 14, NO. 3, MAY A Sliding Mode Current Control Scheme for PWM Brushless DC Motor Drives

IEEE TRANSACTIONS ON POWER ELECTRONICS, VOL. 14, NO. 3, MAY A Sliding Mode Current Control Scheme for PWM Brushless DC Motor Drives IEEE TRANSACTIONS ON POWER ELECTRONICS, VOL. 14, NO. 3, MAY 1999 541 A Sliding Mode Current Control Scheme for PWM Brushless DC Motor Drives Jessen Chen and Pei-Chong Tang Abstract This paper proposes

More information

Tarocco Closed Loop Motor Controller

Tarocco Closed Loop Motor Controller Contents Safety Information... 3 Overview... 4 Features... 4 SoC for Closed Loop Control... 4 Gate Driver... 5 MOSFETs in H Bridge Configuration... 5 Device Characteristics... 6 Installation... 7 Motor

More information

3-Phase Switched Reluctance Motor Control with Encoder Using DSP56F80x. 1. Introduction. Contents. Freescale Semiconductor, I

3-Phase Switched Reluctance Motor Control with Encoder Using DSP56F80x. 1. Introduction. Contents. Freescale Semiconductor, I nc. Order by AN1937/D (Motorola Order Number) Rev. 0, 9/02 3-Phase Switched Reluctance Motor Control with Encoder Using DSP56F80x Design of a Motor Control Application Based on the Motorola Software Development

More information

ISSN Vol.05,Issue.01, January-2017, Pages:

ISSN Vol.05,Issue.01, January-2017, Pages: WWW.IJITECH.ORG ISSN 2321-8665 Vol.05,Issue.01, January-2017, Pages:0028-0032 Digital Control Strategy for Four Quadrant Operation of Three Phase BLDC Motor with Load Variations MD. HAFEEZUDDIN 1, KUMARASWAMY

More information