1 / 31

Introduction to Motors, servos and steppers

l. Introduction to Motors, servos and steppers. Deepali Mittal Harshad Sawhney. Mechanical Aspects of Robotics. DC MOTORS. • Designed to work on DC power. • Mainly of three types : – Permanent Magnet Type – Brushed DC Motors – Brushless DC Motors . Dc MOTORS.

nash
Télécharger la présentation

Introduction to Motors, servos and steppers

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. l

  2. Introduction to Motors, servos and steppers DeepaliMittal HarshadSawhney

  3. Mechanical Aspects of Robotics

  4. DC MOTORS • Designed to work on DC power. • Mainly of three types : – Permanent Magnet Type – Brushed DC Motors – Brushless DC Motors

  5. Dc MOTORS • These are simple motors used for simple purpose. • Apply +12V (generally) and they start rotating. Apply -12V and they rotate in the opposite direction! • Speed can be reduced by reducing the voltage supplied, however that’s not an efficient way of doing things. • Torque and speed are inter-related. A 10rpm motor has relatively high torque. Generally a 100rpm – 300rpm

  6. Theory of servomechanisms • Closed loop control whose output is some mechanical position or velocity set by a reference input(required output). • A servomotor consists of an electric motor ,feedback device, electronic controller. • The feedback device for servomotors is typically an encoder or resolver built into motor frame

  7. Servo motors • Servo motors have three wires: power, ground, and signal. • The power wire is typically red, and should be connected to the 5V pin on the Arduino board. The ground wire is typically black or brown and should be connected to a ground pin on the Arduino board. The signal pin is typically yellow, orange or white and should be connected to a digital pin on the Arduino board. • Note that servos draw considerable power, so if you need to drive more than one or two, you'll probably need to power them from a separate supply (i.e. not the +5V pin on your Arduino). Be sure to connect the grounds of the Arduino and external power supply together.

  8. Servo motors • They are used for specific purposes (for instance, in grippers, etc.) • They have a restricted rotation of 180 or 360 degree. The least rotation angle possible is 1 degree. • They are driven through microcontrollers. Power comes separately from a battery (12V, generally). • Arduino has one line command for driving a servo . Using an Atmega PWM needs to be generated to drive a servo. • Speed can be reduced by sending the commands at a delay. This doesn’t reduce the efficiency of the motor.

  9. Servo motors • The basic behind Servo Control is Pulse Width Modulation. • Pulse Parameters : • Minimum Pulse • Maximum Pulse • Repetition Rate • The general concept is to simply send an ordinary logic square wave to your servo at a specific wave length, and your servo goes to a particular angle (or velocity if your servo is modified). The wavelength directly maps to servo angle

  10. Driving the motor • The microcontrollers like Atmega16 and Arduino have a current rating of 5-10 mA. • The normal DC motor’s current ratings start from 150 mA and above. • So the motor cannot be directly attached to the Atmega, hence a motor-driver is used. • Generally, L298, L293 are used to drive simple DC motors. The servo motors already have a power cable and a different control cable which can directly be connected to the microcontrollers.

  11. Motor driver

  12. STEPPER MOTORS • Electromechanical device which converts electrical pulses into discrete mechanical movements. • The speed of the motor shafts rotation is directly related to the frequency of the input pulses • Length of rotation is directly related to the number of input pulses applied. • Brushless motors. • Full torque at stand still. • Open loop control.

  13. disadvantages ADVANTAGES and when to use • Precise positioning. • Use whenever controlled movement is required. • Where you need to control rotation angle, speed, position and synchronism. • Not easy to operate a high speeds. • Open Loop Control so it could have errors. • Higher torque stepper motors are very costly.

  14. Unipolar vs Bipolar Motors

  15. UNIPOLAR vs BIPOLAR MOTORS • The bipolar motor needs current to be driven in both directions through the windings. • The centre tap on the unipolar motor allows a simpler driving circuit, limiting the current flow to one direction. • Drawback :In unipolar motor there is limited capability to energize all windings at any time, resulting in a lower torque compared to the bipolar motor.

  16. Phases • Generally two phases. • But three or five phases also exist Two Phase Stepper

  17. Stepper diagrams

  18. Step angle calculation • Right Hand Rule used to determine magetics flux direction • the torque is proportional to the number of winding turns and the current • Step angle=360 /(NPh* Ph)=360/N • NPh = Number of equivalent poles per phase = number of rotor poles • Ph = Number of phases • N = Total number of poles for all phases together

  19. Stepping modes • Wave Drive (1 phase on): A -> B -> A’ -> B’ • Disadvantage:Unipolar use only 25% and bipolar only 50% of the total motor winding. Hence not maximum torque used. • Full Step Drive (2 phases on): AB -> A’B -> A’B’ ->AB’ • Unipolar motor uses only 50% while the bipolar motor uses the entire winding. • Half Step Drive (1 & 2 phases on): AB -> B -> A’B -> A’ -> A’B’ -> B’ -> AB’ -> A • Microstepping : currents in the windings are continuously varying to be able to break up one full step into many smaller discrete steps.

  20. POWER DISSIPATION • A stepper motor rated at 6V and 1A per phase and has two phases. • Then P= V X I • P=6 X 2 = 12 W • Select a motor driver suitably.

  21. Torque vs Speed Maximum Holding Torque Torque Speed

  22. Arduino code

  23. Motor Drivers H-bridge L293/L293D Timer Pulse Width Modulation

  24. H-Bridge An electronic circuit that enables a voltage to be applied across a load in either direction.

  25. How to run motors through an MCU ? Never connect the MCU pins directly to the motors. The Atmega16 has a current rating of 5-10 mA. The normal DC motor’s current ratings start from 150 mA and abovewhich arises a need for a Motor and MCU interface. So the motor cannot be directly attached to the ATmega, hence a motor-driver is used… (eg: L293/L293D, L298, etc…)

  26. L293/L293D Motor Driver It has two H-bridges, hence two motors can be driven. Note: A motor driver doesn’t amplify current, it only acts as switches. An L293 is nothing but four switches.!

  27. L293 Drivers are enabled in pairs, with drivers 1 and 2 being enabled by the EN Pin. For EN=1 or +5V, the outputs are active and in phase with their inputs. When EN Pin is low, the output is low(disconnected), irrespective of the input. Asserting both logics to either high or low will stop the motor.

  28. L298 Vs L293 L293 is a quadruple half-H driver while L298 is a dual full-H driver Output current per channel = 1A for L293 and 2A for L298. Protective Diodes against back EMF are provided internally in L293D but must be provided externally in L298.

  29. Speed Control To control motor speed, we can use pulse width modulation or PWM, applied to Enable Pins of L293. PWM is the scheme in which the duty cycle of a square wave output from the microcontroller is varied to provide a varying average DC output. What actually happens by applying a PWM pulse is that the motor is switched ON and OFF at a given frequency. In this way, the motor reacts to the time average of the power supply.

More Related