EE 370L Controls Laboratory. Laboratory Exercise #E1 Motor Control

Size: px
Start display at page:

Download "EE 370L Controls Laboratory. Laboratory Exercise #E1 Motor Control"

Transcription

1 1. Learning Objectives EE 370L Controls Laboratory Laboratory Exercise #E1 Motor Control Department of Electrical and Computer Engineering University of Nevada, at Las Vegas To demonstrate the concept of motor control. In order to do this we must first determine the transfer function for the motor and amplifier hardware. 2. Equipment Usage 1. In this laboratory exercise, you will use MATLAB and SIMULINK software to model a DC motor and controller. 2. In this laboratory, we will be dealing with the feedback system and a specifically designed tachometer and monitoring system.

2 3. Fundamentals

3

4

5

6 4. Matlab Commands A common actuator in control systems is the DC motor. It directly provides rotary motion and, coupled with wheels or drums and cables, can provide transitional motion. The electric circuit of the armature and the free body diagram of the rotor are shown in the following figure: For this example, we will assume the following values for the physical parameters. * moment of inertia of the rotor (J) = 0.01 kg.m^2/s^2 * damping ratio of the mechanical system (b) = 0.1 Nms * electromotive force constant (K=Ke=Kt) = 0.01 Nm/Amp * electric resistance (R) = 1 ohm * electric inductance (L) = 0.5 H * input (V): Source Voltage * output (theta): position of shaft * The rotor and shaft are assumed to be rigid The motor torque, T, is related to the armature current, i, by a constant factor Kt. The back emf, e, is related to the rotational velocity by the following equations:

7 In SI units (which we will use), Kt (armature constant) is equal to Ke (motor constant). Building the Model This system will be modeled by summing the torques acting on the rotor inertia and integrating the acceleration to give the velocity. Also, Kirchoff's laws will be applied to the armature circuit. Open Simulink and open a new model window. First, we will model the integrals of the rotational acceleration and of the rate of change of armature current. Insert an Integrator block (from the Linear block library) and draw lines to and from its input and output terminals. Label the input line "d2/dt2(theta)" and the output line "d/dt(theta)" as shown below. To add such a label, double click in the empty space just above the line. Insert another Integrator block above the previous one and draw lines to and from its input and output terminals. Label the input line "d/dt(i)" and the output line "i".

8 Next, we will start to model both Newton's law and Kirchoff's law. These laws applied to the motor system give the following equations: The angular acceleration is equal to 1/J multiplied by the sum of two terms (one pos., one neg.). Similarly, the derivative of current is equal to 1/L multiplied by the sum of three terms (one pos., two neg.). Insert two Gain blocks, (from the Linear block library) one attached to each of the integrators. Edit the gain block corresponding to angular acceleration by double-clicking it and changing its value to "1/J". Change the label of this Gain block to "inertia" by clicking on the word "Gain" underneath the block. Similarly, edit the other Gain's value to "1/L" and it's label to Inductance. Insert two Sum blocks (from the Linear block library), one attached by a line to each of the Gain blocks. Edit the signs of the Sum block corresponding to rotation to "+-" since one term is positive and one is negative. Edit the signs of the other Sum block to "-+-" to represent the signs of the terms in Kirchoff's equation.

9 Now, we will add in the torques which are represented in Newton's equation. First, we will add in the damping torque. Insert a gain block below the inertia block, select it by single-clicking on it, and select Flip from the Format menu (or type Ctrl-F) to flip it left-to-right. Set the gain value to "b" and rename this block to "damping". Tap a line (hold Ctrl while drawing) off the rotational integrator's output and connect it to the input of the damping gain block. Draw a line from the damping gain output to the negative input of the rotational Sum block. Next, we will add in the torque from the armature. Insert a gain block attached to the positive input of the rotational Sum block with a line. Edit its value to "K" to represent the motor constant and Label it "Kt". Continue drawing the line leading from the current integrator and connect it to the Kt gain block.

10 Now, we will add in the voltage terms which are represented in Kirchoff's equation. First, we will add in the voltage drop across the coil resistance. Insert a gain block above the inductance block, and flip it left-to-right. Set the gain value to "R" and rename this block to "Resistance". Tap a line (hold Ctrl while drawing) off the current integrator's output and connect it to the input of the resistance gain block. Draw a line from the resistance gain output to the upper negative input of the current equation Sum block. Next, we will add in the back emf from the motor. Insert a gain block attached to the other negative input of the current Sum block with a line. Edit its value to "K" to represent the motor constant and Label it "Ke". Tap a line off the rotational integrator output and connect it to the Ke gain block.

11 The third voltage term in the Kirchoff equation is the control input, V. We will apply a step input. Insert a Step block (from the Sources block library) and connect it with a line to the positive input of the current Sum block. To view the output speed, insert a Scope (from the Sinks block library) connected to the output of the rotational integrator. To provide an appropriate unit step input at t=0, double-click the Step block and set the Step Time to "0".

12 Open-loop response To simulate this system, first, an appropriate simulation time must be set. Select Parameters from the Simulation menu and enter "3" in the Stop Time field. 3 seconds is long enough to view the open-loop response. The physical parameters must now be set. Run the following commands at the MATLAB prompt: J=0.01; b=0.1; K=0.01; R=1; L=0.5; Run the simulation (Ctrl-t or Start on the Simulation menu). When the simulation is finished, double-click on the scope and hit its autoscale button. You should see the following output. Extracting a Linear Model into MATLAB A linear model of the system (in state space or transfer function form) can be extracted from a Simulink model into MATLAB. This is done through the use of In and Out Connection blocks and the MATLAB function linmod. First, replace the Step Block and Scope Block with an In Connection Block and an Out Connection Block, respectively (these blocks can be found in the Connections block library). This defines the input and output of the system for the extraction process.

13 Save your file as "motormod.mdl" (select Save As from the File menu). MATLAB will extract the linear model from the saved model file, not from the open model window. At the MATLAB prompt, enter the following commands: [A,B,C,D]=linmod('motormodel') [num,den]=ss2tf(a,b,c,d) You should see the following output, providing both state-space and transfer function models of the system. A = B = 0 2 C = 1 0 D = 0

14 num = den = To verify the model extraction, we will generate an open-loop step response of the extracted transfer function in MATLAB. Enter the following command in MATLAB. step(num,den); You should see the following plot which is equivalent to the Scope's output. Implementing Lag Compensator Control In the motor speed control root locus example a Lag Compensator was designed with the following transfer function. To implement this in Simulink, we will contain the open-loop system from earlier in this page in a Subsystem block. Create a new model window in Simulink.

15 Drag a Subsystem block from the Connections block library into your new model window. Double click on this block. You will see a blank window representing the contents of the subsystem (which is currently empty). Open your previously saved model of the Motor Speed system, motormod.mdl. Select all from the Edit menu (or Ctrl-A), and select Copy from the Edit menu (or Ctrl-C). Select the blank subsystem window from your new model and select Paste from the Edit menu (or Ctrl-V). You should see your original system in this new subsystem window. Close this window. You should now see input and output terminals on the Subsystem block. Name this block "plant model". Now, we will insert a Lag Compensator into a closed-loop around the plant model. First, we will feed back the plant output. Draw a line extending from the plant output. Insert a Sum block and assign "+-" to its inputs. Tap a line of the output line and draw it to the negative input of the Sum block.

16 The output of the Sum block will provide the error signal. We will feed this into a Lag Compensator. Insert a Transfer Function Block after the summer and connect them with a line. Edit this block and change the Numerator field to "[50 50]" and the Denominator field to "[1 0.01]". Label this block "Lag Compensator". Finally, we will apply a step input and view the output on a scope. Attach a step block to the free input of the feedback Sum block and attach a Scope block to the plant output. Double-click the Step block and set the Step Time to "0".

17 You can download our version of the closed-loop system here. Closed-loop response To simulate this system, first, an appropriate simulation time must be set. Select Parameters from the Simulation menu and enter "3" in the Stop Time field. The design requirements included a settling time of less than 2 sec, so we simulate for 3 sec to view the output. The physical parameters must now be set. Run the following commands at the MATLAB prompt: J=0.01; b=0.1; K=0.01; R=1; L=0.5; Run the simulation (Ctrl-t or Start on the Simulation menu). When the simulation is finished, double-click on the scope and hit its autoscale button. You should see the following output.

18 5. Prelab Task 1: Construct Simulink model of the model and perform the closed loop simulation of the motor with Lag compensator as shown above. 6. Experiment Task 1: Construct a Motor Speed Controller as shown below and find closed loop time constant of the circuit. Open the feedback loop and find the open loop time constant of the circuit. Calculate the component values following the design procedures as shown below: 1) Determine the gain: Gain, G = -R 2 /R 1. Input control voltage shall capable of producing the needed output voltage to drive the motor. Gain of -10 is chosen in the schematic. 2) Determine the winding resistance, R M, by measuring with ohmmeter. 3) Find the series resistor R S < R M R 1 /R 2 ((12*1K)/10K = 1.2, used a 1 ohm resistor in the schematic). R 2 10K 4) Calculate R 3 : R 3 R R 12 10K 5K M 2 R S R 1 1 1K Note: To find the time constant, apply a step input and measure the output response. Open loop step response of the motor follows a single pole behavior as follows:

19 B G(s) B A s A 1 s A At 0.63*B/A, t = 1/A. From this time constant, we can measure the B/A Task 2: Construct a Motor Speed Controller with tachometer feedback as shown below: The tachometer works essentially as a voltage generator, with the output voltage proportional to the magnitude of the angular velocity of the input shaft. Tachometers are used in control systems in many ways; they can be used as a speed indicator to provide shaft-speed readout or to provide speed feedback signal in the case of speed control systems. A schematic diagram of the tachometer is given below.

20 Servo motor [MT150F]: Motor produces a torque of the order of 8 oz-in (600 gm-cm) at 2A input current. The inertia is about 3x10 5 Kg m 2. The output shaft may be fitted with a brake disc and/or an inertia disc to load the motor. A second shaft on the side of the motor is coupled to the main shaft by 30:1 gears (the smaller shaft rotates slower than the main shaft). The tachometer with terminals +, - and common (ground) is attached to the motor. The transfer function of the motor is: (s) K M 1 1 K M E(s) b 1 s m 1 s m where, (s) E(s) K M K M b m output speed Laplace transform input voltage Laplace transform motor constant (torque units/volt) motor torque constant [(rad/sec)/volt] motor shaft viscous friction coefficient [torque units/(rad/sec)] motor time constant (sec) Motor output speed as a function of input is as follows: (t) K M b t t (1 e m ) K (1 e m ) M a) Apply a square wave at the reference input from +2.5V to -2.5V, observe the overshoot (overshoot in the range of 30% expected). b) Design a PID controller to have the overshoot less than 10%. 7. Submission 1) Compare the performance of two feedback systems and summarize your findings.

Using MATLAB/ Simulink in the designing of Undergraduate Electric Machinery Courses

Using MATLAB/ Simulink in the designing of Undergraduate Electric Machinery Courses Using MATLAB/ Simulink in the designing of Undergraduate Electric Machinery Courses Mostafa.A. M. Fellani, Daw.E. Abaid * Control Engineering department Faculty of Electronics Technology, Beni-Walid, Libya

More information

Application Notes. Calculating Mechanical Power Requirements. P rot = T x W

Application Notes. Calculating Mechanical Power Requirements. P rot = T x W Application Notes Motor Calculations Calculating Mechanical Power Requirements Torque - Speed Curves Numerical Calculation Sample Calculation Thermal Calculations Motor Data Sheet Analysis Search Site

More information

CHAPTER THREE DC MOTOR OVERVIEW AND MATHEMATICAL MODEL

CHAPTER THREE DC MOTOR OVERVIEW AND MATHEMATICAL MODEL CHAPTER THREE DC MOTOR OVERVIEW AND MATHEMATICAL MODEL 3.1 Introduction Almost every mechanical movement that we see around us is accomplished by an electric motor. Electric machines are a means of converting

More information

Figure1: Kone EcoDisc electric elevator drive [2]

Figure1: Kone EcoDisc electric elevator drive [2] Implementation of an Elevator s Position-Controlled Electric Drive 1 Ihedioha Ahmed C. and 2 Anyanwu A.M 1 Enugu State University of Science and Technology Enugu, Nigeria 2 Transmission Company of Nigeria

More information

View Numbers and Units

View Numbers and Units To demonstrate the usefulness of the Working Model 2-D program, sample problem 16.1was used to determine the forces and accelerations of rigid bodies in plane motion. In this problem a cargo van with a

More information

Application Information

Application Information Moog Components Group manufactures a comprehensive line of brush-type and brushless motors, as well as brushless controllers. The purpose of this document is to provide a guide for the selection and application

More information

Application Note CTAN #234

Application Note CTAN #234 Application Note CTAN #234 The Application Note is pertinent to the Unidrive SP Family A Guide to Tuning the Unidrive SP Introduction: The Unidrive SP provides a number of features that greatly assist

More information

Modelling of electronic throttle body for position control system development

Modelling of electronic throttle body for position control system development Chapter 4 Modelling of electronic throttle body for position control system development 4.1. INTRODUCTION Based on the driver and other system requirements, the estimated throttle opening angle has to

More information

StepSERVO Tuning Guide

StepSERVO Tuning Guide StepSERVO Tuning Guide www.applied-motion.com Goal: Using the Step-Servo Quick Tuner software, this guide will walk the user through the tuning parameters to assist in achieving the optimal motor response

More information

Appendix A: Motion Control Theory

Appendix A: Motion Control Theory Appendix A: Motion Control Theory Objectives The objectives for this appendix are as follows: Learn about valve step response. Show examples and terminology related to valve and system damping. Gain an

More information

Closed Loop Control of Separately Excited DC Motor

Closed Loop Control of Separately Excited DC Motor Closed Loop Control of Separately Excited DC Motor Vikramarajan Jambulingam Electrical and Electronics Engineering, VIT University, India. Abstract: In this project the mathematical model for closed loop

More information

Reduction of Self Induced Vibration in Rotary Stirling Cycle Coolers

Reduction of Self Induced Vibration in Rotary Stirling Cycle Coolers Reduction of Self Induced Vibration in Rotary Stirling Cycle Coolers U. Bin-Nun FLIR Systems Inc. Boston, MA 01862 ABSTRACT Cryocooler self induced vibration is a major consideration in the design of IR

More information

Simscape Getting Started Guide. R2014a

Simscape Getting Started Guide. R2014a Simscape Getting Started Guide R2014a How to Contact MathWorks www.mathworks.com Web comp.soft-sys.matlab Newsgroup www.mathworks.com/contact_ts.html Technical Support suggest@mathworks.com bugs@mathworks.com

More information

ME 466 PERFORMANCE OF ROAD VEHICLES 2016 Spring Homework 3 Assigned on Due date:

ME 466 PERFORMANCE OF ROAD VEHICLES 2016 Spring Homework 3 Assigned on Due date: PROBLEM 1 For the vehicle with the attached specifications and road test results a) Draw the tractive effort [N] versus velocity [kph] for each gear on the same plot. b) Draw the variation of total resistance

More information

Mechatronics Chapter 10 Actuators 10-3

Mechatronics Chapter 10 Actuators 10-3 MEMS1049 Mechatronics Chapter 10 Actuators 10-3 Electric Motor DC Motor DC Motor DC Motor DC Motor DC Motor Motor terminology Motor field current interaction Motor commutator It consists of a ring of

More information

Iowa State University Electrical and Computer Engineering. E E 452. Electric Machines and Power Electronic Drives

Iowa State University Electrical and Computer Engineering. E E 452. Electric Machines and Power Electronic Drives Electrical and Computer Engineering E E 452. Electric Machines and Power Electronic Drives Laboratory #12 Induction Machine Parameter Identification Summary The squirrel-cage induction machine equivalent

More information

Modeling the Neuro-Fuzzy Control with the Dynamic Model of the Permanent Magnet DC Motor

Modeling the Neuro-Fuzzy Control with the Dynamic Model of the Permanent Magnet DC Motor SISY 2006 4 th Serbian-Hungarian Joint Symposium on Intelligent Systems Modeling the Neuro-Fuzzy Control with the Dynamic Model of the Permanent Magnet DC Motor Ottó Búcsú, Gábor Kávai, István Kecskés,

More information

Mathematical Modelling and Simulation Of Semi- Active Suspension System For An 8 8 Armoured Wheeled Vehicle With 11 DOF

Mathematical Modelling and Simulation Of Semi- Active Suspension System For An 8 8 Armoured Wheeled Vehicle With 11 DOF Mathematical Modelling and Simulation Of Semi- Active Suspension System For An 8 8 Armoured Wheeled Vehicle With 11 DOF Sujithkumar M Sc C, V V Jagirdar Sc D and MW Trikande Sc G VRDE, Ahmednagar Maharashtra-414006,

More information

Force-feedback control of steering wheels

Force-feedback control of steering wheels Scuola universitaria professionale della Svizzera italiana Dipartimento Tecnologie Innovative Mechatronics laboratory Force-feedback control of steering wheels Scope Tasks Keywords Force-feedback control

More information

Using CompactRIO to Build a Virtual Driver of Hybrid Wheeled Vehicle Gabriel Kost 1,a, Andrzej Nierychlok 1,b*

Using CompactRIO to Build a Virtual Driver of Hybrid Wheeled Vehicle Gabriel Kost 1,a, Andrzej Nierychlok 1,b* Solid State Phenomena Online: 2013-03-11 ISSN: 1662-9779, Vol. 198, pp 606-611 doi:10.4028/www.scientific.net/ssp.198.606 2013 Trans Tech Publications, Switzerland Using CompactRIO to Build a Virtual Driver

More information

PERFORMANCE ANALYSIS OF BLDC MOTOR SPEED CONTROL USING PI CONTROLLER

PERFORMANCE ANALYSIS OF BLDC MOTOR SPEED CONTROL USING PI CONTROLLER PERFORMANCE ANALYSIS OF BLDC MOTOR SPEED CONTROL USING PI CONTROLLER Karishma P.Wankhede 1, K. Vadirajacharya 2 1 M.Tech.II Yr, 2 Associate Professor,Electrical Engineering Department Dr. BabasahebAmbedkar

More information

EECS 461 Final Project: Adaptive Cruise Control

EECS 461 Final Project: Adaptive Cruise Control EECS 461 Final Project: Adaptive Cruise Control 1 Overview Many automobiles manufactured today include a cruise control feature that commands the car to travel at a desired speed set by the driver. In

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPT OF MECHANICAL ENGINEERING

MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPT OF MECHANICAL ENGINEERING MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPT OF MECHANICAL ENGINEERING 2.004 Dynamics and Control II Laboratory Note: Description of the Experimental Rotational Plant 1 INTRODUCTION In the first series of

More information

Data Sheet. Size 1 and 2 Stepper Motors. 7.5 stepper motors Size 1 (RS stock no ) Size 2 (RS stock no ) Data Pack B

Data Sheet. Size 1 and 2 Stepper Motors. 7.5 stepper motors Size 1 (RS stock no ) Size 2 (RS stock no ) Data Pack B Data Pack B Issued November 005 1504569 Data Sheet Size 1 and Stepper Motors 7.5 stepper motors Size 1 (S stock no. 33-947) Size (S stock no. 33-953) Two 7.5 stepper motors each with four 1Vdc windings

More information

Motor Technologies Motor Sizing 101

Motor Technologies Motor Sizing 101 Motor Technologies Motor Sizing 101 TN-2003 REV 161221 PURPOSE This technical note addresses basic motor sizing with simple calculations that can be done to generally size any motor application. It will

More information

CHAPTER 3 DESIGN OF THE LIMITED ANGLE BRUSHLESS TORQUE MOTOR

CHAPTER 3 DESIGN OF THE LIMITED ANGLE BRUSHLESS TORQUE MOTOR 33 CHAPTER 3 DESIGN OF THE LIMITED ANGLE BRUSHLESS TORQUE MOTOR 3.1 INTRODUCTION This chapter presents the design of frameless Limited Angle Brushless Torque motor. The armature is wound with toroidal

More information

Omni Series Motors. Applimotion Motors & Actuators TORQUE. Low-Profile Direct Drive Motors for the World s Machines and Robots PRODUCT DATA SHEET

Omni Series Motors. Applimotion Motors & Actuators TORQUE. Low-Profile Direct Drive Motors for the World s Machines and Robots PRODUCT DATA SHEET TORQUE Motors & Actuators PRODUCT DATA SHEET Omni Series Motors Low-Profile Direct Drive Motors for the World s Machines and Robots The Omni Series enables OEMs to design high performance, reliable, small

More information

3. DESCRIPTION OF SHAKING TABLE SYSTEM COMPONENTS

3. DESCRIPTION OF SHAKING TABLE SYSTEM COMPONENTS 17 3. DESCRIPTION OF SHAKING TABLE SYSTEM COMPONENTS 3.1. INTRODUCTION The earthquake simulator is a system that consists of several components which must be designed to effectively work together. Each

More information

Features IN THIS CHAPTER

Features IN THIS CHAPTER CHAPTER THREE 3Special Features IN THIS CHAPTER Motor Braking Regeneration Solutions Sharing the Power Bus: V Bus+ and V Bus- Current Foldback (I T Limit) Front Panel Test Points Resolver Alignment ➂ Special

More information

Tutorials Tutorial 3 - Automotive Powertrain and Vehicle Simulation

Tutorials Tutorial 3 - Automotive Powertrain and Vehicle Simulation Tutorials Tutorial 3 - Automotive Powertrain and Vehicle Simulation Objective This tutorial will lead you step by step to a powertrain model of varying complexity. The start will form a simple engine model.

More information

SECTION A DYNAMICS. Attempt any two questions from this section

SECTION A DYNAMICS. Attempt any two questions from this section SECTION A DYNAMICS Question 1 (a) What is the difference between a forced vibration and a free or natural vibration? [2 marks] (b) Describe an experiment to measure the effects of an out of balance rotating

More information

Vehicle Dynamics and Drive Control for Adaptive Cruise Vehicles

Vehicle Dynamics and Drive Control for Adaptive Cruise Vehicles Vehicle Dynamics and Drive Control for Adaptive Cruise Vehicles Dileep K 1, Sreepriya S 2, Sreedeep Krishnan 3 1,3 Assistant Professor, Dept. of AE&I, ASIET Kalady, Kerala, India 2Associate Professor,

More information

Electric Drives Experiment 3 Experimental Characterization of a DC Motor s Mechanical Parameters and its Torque-Speed Behavior

Electric Drives Experiment 3 Experimental Characterization of a DC Motor s Mechanical Parameters and its Torque-Speed Behavior Electric Drives Experiment 3 Experimental Characterization of a DC Motor s Mechanical Parameters and its Torque-Speed Behavior 3.1 Objective The objective of this activity is to experimentally measure

More information

Unit 8 ~ Learning Guide Name:

Unit 8 ~ Learning Guide Name: Unit 8 ~ Learning Guide Name: Instructions: Using a pencil, complete the following notes as you work through the related lessons. Show ALL work as is explained in the lessons. You are required to have

More information

Technical Guide No. 7. Dimensioning of a Drive system

Technical Guide No. 7. Dimensioning of a Drive system Technical Guide No. 7 Dimensioning of a Drive system 2 Technical Guide No.7 - Dimensioning of a Drive system Contents 1. Introduction... 5 2. Drive system... 6 3. General description of a dimensioning

More information

4. Electromechanical Systems. Karadeniz Technical University Department of Electrical and Electronics Engineering Trabzon, Turkey.

4. Electromechanical Systems. Karadeniz Technical University Department of Electrical and Electronics Engineering Trabzon, Turkey. Karadeniz Technical University Department of Electrical and Electronics Engineering 61080 Trabzon, Turkey Chapter 3-4-1 Modelling of Physical Systems 4. Electromechanical Systems Bu ders notları sadece

More information

CHAPTER 4 MODELING OF PERMANENT MAGNET SYNCHRONOUS GENERATOR BASED WIND ENERGY CONVERSION SYSTEM

CHAPTER 4 MODELING OF PERMANENT MAGNET SYNCHRONOUS GENERATOR BASED WIND ENERGY CONVERSION SYSTEM 47 CHAPTER 4 MODELING OF PERMANENT MAGNET SYNCHRONOUS GENERATOR BASED WIND ENERGY CONVERSION SYSTEM 4.1 INTRODUCTION Wind energy has been the subject of much recent research and development. The only negative

More information

Robot components: Actuators

Robot components: Actuators Robotics 1 Robot components: Actuators Prof. Alessandro De Luca Robotics 1 1 Robot as a system program of tasks commands Robot actions working environment mechanical units supervision units sensor units

More information

Silencer Series Brushless DC Motors

Silencer Series Brushless DC Motors TYPICAL APPLICATIONS Medical equipment - pumps, blowers and electric scooters and wheelchairs Automatic door and window openers Computer-controlled embroidery machines Scanners Packaging equipment and

More information

A SIMPLIFIED METHOD FOR ENERGIZING THE SOLENOID COIL BASED ON ELECTROMAGNETIC RELAYS

A SIMPLIFIED METHOD FOR ENERGIZING THE SOLENOID COIL BASED ON ELECTROMAGNETIC RELAYS A SIMPLIFIED METHOD FOR ENERGIZING THE SOLENOID COIL BASED ON ELECTROMAGNETIC RELAYS Munaf Fathi Badr Mechanical Engineering Department, College of Engineering Mustansiriyah University, Baghdad, Iraq E-Mail:

More information

Robot components: Actuators

Robot components: Actuators Robotics 1 Robot components: Actuators Prof. Alessandro De Luca Robotics 1 1 Robot as a system program of tasks commands Robot actions working environment mechanical units supervision units sensor units

More information

Robot Arm with Conveyor Belts

Robot Arm with Conveyor Belts Robot Arm with Conveyor Belts This example models a robotic arm and two conveyor belts. One conveyor belts bring blocks to the robot. The robot grabs the block, flips it over and transfers it to another

More information

Exercise 2-1. The Separately-Excited DC Motor N S EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Simplified equivalent circuit of a dc motor

Exercise 2-1. The Separately-Excited DC Motor N S EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Simplified equivalent circuit of a dc motor Exercise 2-1 The Separately-Excited DC Motor EXERCISE OBJECTIVE When you have completed this exercise, you will be able to demonstrate the main operating characteristics of a separately-excited dc motor

More information

COMPARISON OF PERFORMANCE FEATURES

COMPARISON OF PERFORMANCE FEATURES SERVODISC CATALOG A new dimension in performance If you are involved with high performance servomotor applications, there is an important motor technology which you should know about. It s the technology

More information

MSD: Case Studies D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N

MSD: Case Studies D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N MSD: Case Studies D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N 2 0 1 4 Outline Elements and design of mechatronic systems have been described in previous sections

More information

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015)

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) A High Dynamic Performance PMSM Sensorless Algorithm Based on Rotor Position Tracking Observer Tianmiao Wang

More information

SLM/SLG SERIES. SLM Series Motors/SLG Series Gearmotors BRUSHLESS AC OR DC SERVO MOTOR / INTEGRATED SERVO GEARMOTOR

SLM/SLG SERIES. SLM Series Motors/SLG Series Gearmotors BRUSHLESS AC OR DC SERVO MOTOR / INTEGRATED SERVO GEARMOTOR SLM Series Motors/SLG Series Gearmotors SLM/SLG SERIES BRUSHLESS AC OR DC SERVO MOTOR / INTEGRATED SERVO GEARMOTOR Compatible with virtually any manufacturer s servo drive Multiple frame size options 952.5.62

More information

AUTOMATIC VEHICLE STABILIZATION SYSTEM Gaurav Pednekar 1, Raunak Borwankar 2 and Purva Sawant 3 1, 2, 3

AUTOMATIC VEHICLE STABILIZATION SYSTEM Gaurav Pednekar 1, Raunak Borwankar 2 and Purva Sawant 3 1, 2, 3 AUTOMATIC VEHICLE STABILIZATION SYSTEM Gaurav Pednekar 1, Raunak Borwankar 2 and Purva Sawant 3 1, 2, 3 Students, Department of Electronics & Telecommunication, Don Bosco Institute of Technology, University

More information

Simplus

Simplus Simplus in Latin means Simple. We focus on making direct drive 1 actuators that are simple to use, plus the additional benefits of: small form factor higher performance better reliability 1 direct drive

More information

Step Motor. Mechatronics Device Report Yisheng Zhang 04/02/03. What Is A Step Motor?

Step Motor. Mechatronics Device Report Yisheng Zhang 04/02/03. What Is A Step Motor? Step Motor What is a Step Motor? How Do They Work? Basic Types: Variable Reluctance, Permanent Magnet, Hybrid Where Are They Used? How Are They Controlled? How To Select A Step Motor and Driver Types of

More information

RH Series. Features. Structure. High resolution High resolution of maximum 400,000 pulses/revolution ( /pulse) combining a HarmonicDrive.

RH Series. Features. Structure. High resolution High resolution of maximum 400,000 pulses/revolution ( /pulse) combining a HarmonicDrive. RH Series The RH series includes compact and high-torque DC servo actuators with a high rotational accuracy combining a speed reducer HarmonicDrive for precision control and a DC servo motor. A combination

More information

Torque Ripple Reduction and Speed Performance of BLDCM Drive with Hysteresis Current Controller

Torque Ripple Reduction and Speed Performance of BLDCM Drive with Hysteresis Current Controller Torque Ripple Reduction and Speed Performance of BLDCM Drive with Hysteresis Current Controller Bikram Das Assistant Professor, Department of Electrical Engineering National Institute of Technology, Agartala

More information

Performance of DC Motor Supplied From Single Phase AC-DC Rectifier

Performance of DC Motor Supplied From Single Phase AC-DC Rectifier Performance of DC Motor Supplied From Single Phase AC-DC Rectifier Dr Othman A. Alnatheer Energy Research Institute-ENRI King Abdulaziz City for Science and Technology- KACST P O Box 6086, Riyadh 11442,

More information

ABS. Prof. R.G. Longoria Spring v. 1. ME 379M/397 Vehicle System Dynamics and Control

ABS. Prof. R.G. Longoria Spring v. 1. ME 379M/397 Vehicle System Dynamics and Control ABS Prof. R.G. Longoria Spring 2002 v. 1 Anti-lock Braking Systems These systems monitor operating conditions and modify the applied braking torque by modulating the brake pressure. The systems try to

More information

Ultra Series: Crossed Roller Ultra Precision Stages

Ultra Series: Crossed Roller Ultra Precision Stages Ultra Series: Crossed Roller Ultra Precision Stages Bayside Motion Group, has developed Ultra Positioning Stages for applications requiring the ultimate in accuracy. Available with a linear motor, ball

More information

Faraday's Law of Induction

Faraday's Law of Induction Purpose Theory Faraday's Law of Induction a. To investigate the emf induced in a coil that is swinging through a magnetic field; b. To investigate the energy conversion from mechanical energy to electrical

More information

Utilizing Kollmorgen Goldline Series Servo Motors with the AKD Drive

Utilizing Kollmorgen Goldline Series Servo Motors with the AKD Drive Group Drives and Motors Date June 30 2017 Series AKD and Goldline Revised Element Group Application Revision F Element Mating Author M. Brown # Of Pages 18 Utilizing Kollmorgen Goldline Series Servo Motors

More information

Power Supply Selection

Power Supply Selection OEM77X 6 Power Supply Selection C H A P T E R 6 Power Supply Selection To choose a power supply for the OEM77X, you need to answer some important questions. How many watts does your system need? Will regeneration

More information

Sensorless Brushless DC-Servomotors

Sensorless Brushless DC-Servomotors Sensorless Brushless DC-Servomotors FAULHABER Brushless DC-Servomotors are built for extreme operating conditions. They are precise, have exceptionally long lifetimes and are highly reliable. Outstanding

More information

One-Cycle Average Torque Control of Brushless DC Machine Drive Systems

One-Cycle Average Torque Control of Brushless DC Machine Drive Systems One-Cycle Average Torque Control of Brushless DC Machine Drive Systems Najma P.I. 1, Sakkeer Hussain C.K. 2 P.G. Student, Department of Electrical and Electronics Engineering, MEA Engineering College,

More information

Mechatronics and Electrical Drives

Mechatronics and Electrical Drives Fachgebiet eistungselektronik und Elektrische Antriebstechnik Prof. Dr. Ing. Joachim Böcker Mechatronics and Electrical Drives 29.02.2016 Surname: Student number: First name: Course of Study: Task: (Points)

More information

SOME FACTORS THAT INFLUENCE THE PERFORMANCE OF

SOME FACTORS THAT INFLUENCE THE PERFORMANCE OF SOME FACTORS THAT INFLUENCE THE PERFORMANCE OF Authored By: Robert Pulford Jr. and Engineering Team Members Haydon Kerk Motion Solutions There are various parameters to consider when selecting a Rotary

More information

Good Winding Starts the First 5 Seconds Part 2 Drives Clarence Klassen, P.Eng.

Good Winding Starts the First 5 Seconds Part 2 Drives Clarence Klassen, P.Eng. Good Winding Starts the First 5 Seconds Part 2 Drives Clarence Klassen, P.Eng. Abstract: This is the second part of the "Good Winding Starts" presentation. Here we discuss the drive system and its requirements

More information

Electric Vehicle Mathematical Modelling and Simulation Using MATLAB-Simulink

Electric Vehicle Mathematical Modelling and Simulation Using MATLAB-Simulink IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 12, Issue 4 Ver. I (Jul. Aug. 2017), PP 47-53 www.iosrjournals.org Electric Vehicle Mathematical

More information

Dynamic Behavior Analysis of Hydraulic Power Steering Systems

Dynamic Behavior Analysis of Hydraulic Power Steering Systems Dynamic Behavior Analysis of Hydraulic Power Steering Systems Y. TOKUMOTO * *Research & Development Center, Control Devices Development Department Research regarding dynamic modeling of hydraulic power

More information

Parameter Design and Tuning Tool for Electric Power Steering System

Parameter Design and Tuning Tool for Electric Power Steering System TECHNICL REPORT Parameter Design and Tuning Tool for Electric Power Steering System T. TKMTSU T. TOMIT Installation of Electric Power Steering systems (EPS) for automobiles has expanded rapidly in the

More information

Principles and types of analog and digital ammeters and voltmeters

Principles and types of analog and digital ammeters and voltmeters Principles and types of analog and digital ammeters and voltmeters Electrical voltage and current are two important quantities in an electrical network. The voltage is the effort variable without which

More information

Contents GENERAL MOTOR TERMINOLOGY TABLES... 9 BASIC MOTOR PARAMETERS CONTACT INFORMATION... 11

Contents GENERAL MOTOR TERMINOLOGY TABLES... 9 BASIC MOTOR PARAMETERS CONTACT INFORMATION... 11 Note: the SMMA merged with the Motion Control Association to form the MCMA (Motion Control and Motor Association) in 2015. This original SMMA glossary is not available elsewhere and may contain dated material.

More information

Prepared By: Ahmad Firdaus Bin Ahmad Zaidi

Prepared By: Ahmad Firdaus Bin Ahmad Zaidi Prepared By: Ahmad Firdaus Bin Ahmad Zaidi A stepper motor is an electromechanical device which converts electrical pulses into discrete mechanical rotational movements. Stepper motor mainly used when

More information

Motor Modeling And Position Control Lab Week 3 Closed

Motor Modeling And Position Control Lab Week 3 Closed We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with motor modeling and position

More information

Silencer Series Brushless DC Motors

Silencer Series Brushless DC Motors Silencer Series Brushless DC Motors Medical and Commercial / Industrial TYPICAL APPLICATIONS Medical equipment - handheld devices, drills and saws Robotic systems Test and measurement equipment Pumps Scanners

More information

Screw Driven automation tables

Screw Driven automation tables automation tables Precise multi-axis positioning systems play an integral part in today s semiconductor, computer peripheral, solar power, flat panel, life sciences, lab automation, biomedical and electronics

More information

Pre-lab Questions: Please review chapters 19 and 20 of your textbook

Pre-lab Questions: Please review chapters 19 and 20 of your textbook Introduction Magnetism and electricity are closely related. Moving charges make magnetic fields. Wires carrying electrical current in a part of space where there is a magnetic field experience a force.

More information

Modelling and Simulation Specialists

Modelling and Simulation Specialists Modelling and Simulation Specialists Multi-Domain Simulation of Hybrid Vehicles Multiphysics Simulation for Autosport / Motorsport Applications Seminar UK Magnetics Society Claytex Services Limited Software,

More information

Session 5 Wind Turbine Scaling and Control W. E. Leithead

Session 5 Wind Turbine Scaling and Control W. E. Leithead SUPERGEN Wind Wind Energy Technology Session 5 Wind Turbine Scaling and Control W. E. Leithead Supergen 2 nd Training Seminar 24 th /25 th March 2011 Wind Turbine Scaling and Control Outline Introduction

More information

Driven Damped Harmonic Oscillations

Driven Damped Harmonic Oscillations Driven Damped Harmonic Oscillations Page 1 of 8 EQUIPMENT Driven Damped Harmonic Oscillations 2 Rotary Motion Sensors CI-6538 1 Mechanical Oscillator/Driver ME-8750 1 Chaos Accessory CI-6689A 1 Large Rod

More information

2014 ELECTRICAL TECHNOLOGY

2014 ELECTRICAL TECHNOLOGY SET - 1 II B. Tech I Semester Regular Examinations, March 2014 ELECTRICAL TECHNOLOGY (Com. to ECE, EIE, BME) Time: 3 hours Max. Marks: 75 Answer any FIVE Questions All Questions carry Equal Marks ~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

Applied Mechatronics. Fran Marquez and Gabriel Domingues Lund, 29/11/2018. Industrial Electrical Engineering and Automation Lund University, Sweden

Applied Mechatronics. Fran Marquez and Gabriel Domingues Lund, 29/11/2018. Industrial Electrical Engineering and Automation Lund University, Sweden Applied Mechatronics Fran Marquez and Gabriel Domingues Lund, 29/11/2018 Industrial Electrical Engineering and Automation Lund University, Sweden 1. Crash course on Electrical Machines S N S N 1. Crash

More information

Gearmotors & Gearheads. Servo Motors & Drives. Linear & Rotary Positioning Stages. Direct Drive Rotary Table Product Manual

Gearmotors & Gearheads. Servo Motors & Drives. Linear & Rotary Positioning Stages. Direct Drive Rotary Table Product Manual Servo Motors & Drives Gearmotors & Gearheads Linear & Rotary Positioning Stages Direct Drive Rotary Table Product Manual Direct Drive Rotary Table Product Manual Rev: 3.2 / 1103 P/N: 12197009 Please check

More information

Vehicle Dynamic Simulation Using A Non-Linear Finite Element Simulation Program (LS-DYNA)

Vehicle Dynamic Simulation Using A Non-Linear Finite Element Simulation Program (LS-DYNA) Vehicle Dynamic Simulation Using A Non-Linear Finite Element Simulation Program (LS-DYNA) G. S. Choi and H. K. Min Kia Motors Technical Center 3-61 INTRODUCTION The reason manufacturers invest their time

More information

Chapter 5. Design of Control Mechanism of Variable Suspension System. 5.1: Introduction: Objective of the Mechanism:

Chapter 5. Design of Control Mechanism of Variable Suspension System. 5.1: Introduction: Objective of the Mechanism: 123 Chapter 5 Design of Control Mechanism of Variable Suspension System 5.1: Introduction: Objective of the Mechanism: In this section, Design, control and working of the control mechanism for varying

More information

KahramanmarasSutcuImamUnive rsity Journal of EngineeringSciences

KahramanmarasSutcuImamUnive rsity Journal of EngineeringSciences KSU Mühendislik Bilimleri Dergisi, 20(2), 2017 62 KSU Journal of EngineeringSciences, 20(2), 2017 KahramanmarasSutcuImamUnive rsity Journal of EngineeringSciences Model Verification For A Brushed DC Motor

More information

Laboratory Exercise 12 THERMAL EFFICIENCY

Laboratory Exercise 12 THERMAL EFFICIENCY Laboratory Exercise 12 THERMAL EFFICIENCY In part A of this experiment you will be calculating the actual efficiency of an engine and comparing the values to the Carnot efficiency (the maximum efficiency

More information

Faraday s Law of Induction III

Faraday s Law of Induction III Faraday s Law of Induction III Physics 2415 Lecture 21 Michael Fowler, UVa Today s Topics More on Faraday s Law of Induction Generators Back emf and Counter Torque Transformers General form of Faraday

More information

Section 18: Fuses, Heaters, Parameters

Section 18: Fuses, Heaters, Parameters Section 18: Fuses, Heaters, Parameters March 2003 Section 18: Fuses, Heaters, Parameters 639 640 Section 18: Fuses, Heaters, Parameters March 2003 March 2003 Section 18: Fuses, Heaters, Parameters 641

More information

TUTORIAL Motor Control Design Suite

TUTORIAL Motor Control Design Suite TUTORIAL Motor Control Design Suite April 2017 1 The Motor Control Design Suite provides a total solution for motor drive system design. From system specifications, the Motor Control Design Suite automatically

More information

Development Of Three Wheeler Electric Vehicle With BLDC Motor

Development Of Three Wheeler Electric Vehicle With BLDC Motor Volume 4 No. 7 07, 7-80 ISSN: 3-8080 (printed version); ISSN: 34-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Development Of Three Wheeler Electric Vehicle With BDC Motor B. Sateesh, Srirama

More information

AP Physics B: Ch 20 Magnetism and Ch 21 EM Induction

AP Physics B: Ch 20 Magnetism and Ch 21 EM Induction Name: Period: Date: AP Physics B: Ch 20 Magnetism and Ch 21 EM Induction MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) If the north poles of

More information

G Prasad 1, Venkateswara Reddy M 2, Dr. P V N Prasad 3, Dr. G Tulasi Ram Das 4

G Prasad 1, Venkateswara Reddy M 2, Dr. P V N Prasad 3, Dr. G Tulasi Ram Das 4 Speed control of Brushless DC motor with DSP controller using Matlab G Prasad 1, Venkateswara Reddy M 2, Dr. P V N Prasad 3, Dr. G Tulasi Ram Das 4 1 Department of Electrical and Electronics Engineering,

More information

Safety Considerations

Safety Considerations Safety Considerations The following safety rules MUST BE FOLLOWED to ensure safety in the laboratory. General Considerations No smoking, eating or drinking in the laboratory. Hydraulic oil in its vapor

More information

Implementation of SMC for BLDC Motor Drive

Implementation of SMC for BLDC Motor Drive Implementation of SMC for BLDC Motor Drive Sanjay M. Patil 1, Swapnil Y. Gadgune 2, MallaReddy Chinala 3 1 Student,Dept. of Electrical Engg FCOER, Sangola, Maharashtra, India 2 Professor Dept. of Electrical

More information

MRZJW3-MOTSZ71E. General-Purpose AC Servo. Installation Guide. Capacity Selection Software

MRZJW3-MOTSZ71E. General-Purpose AC Servo. Installation Guide. Capacity Selection Software General-Purpose AC Servo Capacity Selection Software MRZJW3-MOTSZ71E Installation Guide Thank you for choosing the Mitsubishi general-purpose AC servo MELSERVO capacity selection software. To optimize

More information

ELEN 236 DC Motors 1 DC Motors

ELEN 236 DC Motors 1 DC Motors ELEN 236 DC Motors 1 DC Motors Pictures source: http://hyperphysics.phy-astr.gsu.edu/hbase/magnetic/mothow.html#c1 1 2 3 Some DC Motor Terms: 1. rotor: The movable part of the DC motor 2. armature: The

More information

14 Single- Phase A.C. Motors I

14 Single- Phase A.C. Motors I Lectures 14-15, Page 1 14 Single- Phase A.C. Motors I There exists a very large market for single-phase, fractional horsepower motors (up to about 1 kw) particularly for domestic use. Like many large volume

More information

CHAPTER 3 BRUSHLESS DC MOTOR

CHAPTER 3 BRUSHLESS DC MOTOR 53 CHAPTER 3 BRUSHLESS DC MOTOR 3.1 INTRODUCTION The application of motors has spread to all kinds of fields. In order to adopt different applications, various types of motors such as DC motors, induction

More information

INVESTIGATION OF DYNAMIC BRAKING OF ELECTRIC VEHICLES POWERED BY PERMANENT MAGNET DC MOTOR

INVESTIGATION OF DYNAMIC BRAKING OF ELECTRIC VEHICLES POWERED BY PERMANENT MAGNET DC MOTOR INVESTIGATION OF DYNAMIC BRAKING OF ELECTRIC VEHICLES POWERED BY PERMANENT MAGNET DC MOTOR L. Joni Polili School of Electrical & Electronic Engineering Nayang Technological University Hall 7 #40-1-746

More information

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad - 500 043 MECHANICAL ENGINEERING ASSIGNMENT Name : Electrical and Electronics Engineering Code : A40203 Class : II B. Tech I Semester Branch :

More information

Semi-Active Suspension for an Automobile

Semi-Active Suspension for an Automobile Semi-Active Suspension for an Automobile Pavan Kumar.G 1 Mechanical Engineering PESIT Bangalore, India M. Sambasiva Rao 2 Mechanical Engineering PESIT Bangalore, India Abstract Handling characteristics

More information

Pre-lab Questions: Please review chapters 19 and 20 of your textbook

Pre-lab Questions: Please review chapters 19 and 20 of your textbook Introduction Magnetism and electricity are closely related. Moving charges make magnetic fields. Wires carrying electrical current in a part of space where there is a magnetic field experience a force.

More information

Linear Flexible Joint Cart Plus Single Inverted Pendulum (LFJC+SIP)

Linear Flexible Joint Cart Plus Single Inverted Pendulum (LFJC+SIP) Linear Motion Servo Plants: IP01 and IP02 Linear Flexible Joint Cart Plus Single Inverted Pendulum (LFJC+SIP) User Manual Table of Contents 1. Linear Flexible Joint Cart Plus Single Inverted Pendulum System

More information