Survey of Electronics

Size: px
Start display at page:

Download "Survey of Electronics"

Transcription

1 Survey of Electronics Testing Boe Bot s Speed Control Controlling other servo motors Slot Reel Stepper Motors DC Motors AC Motors

2 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width Pulse width is a common way to describe how long a pulse lasts. The reason it is called pulse "width" is because the amount of time a pulse lasts is related to how wide it is on a timing diagram. Pulses that last longer are wider on timing diagrams 2

3 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width Pulse width: a way to describe how long a pulse lasts. Width" is the amount of time a pulse lasts verses its period Pulses that last for short periods of time are narrow 3

4 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width Pulse width: a way to describe how long a pulse lasts. Width" is the amount of time a pulse lasts verses its period Pulse generation using the BASIC Stamp on the Boe Bot What commands would be needed to make a pulse signal with a pulse width of 500 ms and a period of 1 second? What command would be required to generate the bottom of the two waveforms on the previous slide 4

5 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width New PBASIC commands to simplify these tests DEBUGIN Syntax: DEBUGIN modifier, variable USAGE: pulsewidth VAR WORD DEBUG Enter pulse width: DEBUGIN DEC, pulsewidth Now, the DEBUGIN command can be used to capture a decimal value that you enter into The Terminal s Transmit windowpane and store it in pulse Width: 5

6 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width New PBASIC commands to simplify these tests DEBUGIN Uses the Transmit pane of the DEBUG Terminal Sends the content of the pane to the Boe Bot The DEBUG command displays messages from the Boe Bot in the Receive pane Test Program Enter the program starting at the bottom of page 113 Special NOTE: Variable pulsewidthcomp How its generated How it is used 6

7 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width Test Program How the Program works Three variables are declared counter for the FOR NEXT loop counter VAR Word pulsewidth for the DEBUGIN and PULSOUT commands pulsewidth VAR Word pulsewidthcomp which stores a value that is used in a second PULSOUT command pulsewidthcomp VAR Word The FREQOUT command is used to signal that the program has started. FREQOUT 4,2000,3000 7

8 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width Test Program How the Program works The duration of the two pulses in each loop of the counter always adds to 3 ms Pin 12 pulse equals 2 μs x pulsewidth entry Pin 13 pulse equals 2 μs x ( pulsewidth entry) The FOR.. TO.. NEXT instructions take s about 24.6 ms to run Thus a count of 244 => 6 seconds FOR counter = 1 TO 244 PULSOUT 12, pulsewidth PULSOUT 13, pulsewidthcomp PAUSE 20 NEXT 8

9 Testing Boe Bot s Speed Control Servo Motor Speed verses Pulse Width Use the program to plot the rotational speed of a servo against the width of the pulses sent to the motor Rotational velocity should be on the vertical axis Zero should be in the middle Pulse width should be on the horizontal axis in milliseconds Use the provided chart to record your data Plot the data on the provided graph paper 9

10 Other Servo Motors and Controlled Motors Overview Types A stepper motor such as on a slot machine Is an device Which converts electrical signals (such as from a CPU) into discrete mechanical movements. Directional/Speed controlled Direct Current Motors The polarity of the applied voltage controls rotational direction The speed of rotation is controlled by the voltage across the motor Both items can be controlled by switches or by microcontroller outputs AC Motors The phase shifts of the applied starting voltages can determine rotational direction The speed of rotation is controlled by the voltage across the motor Both items can be controlled by switches or by microcontroller outputs

11 Overview Reel Stepper Motors A stepper motor is an device Which converts electrical signals (such as from a CPU) into discrete mechanical movements. The shaft or spindle of a stepper motor rotates in discrete step increments when electrical command pulses are applied to it in the proper sequence. Direction of rotation Is directly related the sequence of the applied pulses The speed of the motor shafts rotation Is directly related to the frequency of the input pulses The length of rotation Is directly related to the number of input pulses applied.

12 Reel Stepper Motors Overview Advantages of using Stepper Motors The rotation angle of the motor is proportional to the input pulse. The motor has full torque at stand still (if the windings are energized) Precise positioning and repeatability of movement since good stepper motors have an accuracy of 3-5% of a step and this error is non cumulative from one step to the next. Excellent response to starting/ stopping/reversing. Very reliable since there are no contact brushes in the motor. Therefore the life of the motor is simply dependant on the life of the bearing. The motors response to digital input pulses provides open loop control, making the motor simpler and less costly to control.

13 Reel Stepper Motors Overview Advantages of using Stepper Motors It is possible to achieve very low speed synchronous rotation with a load that is directly coupled to the shaft. A wide range of rotational speeds can be realized as the speed is proportional to the frequency of the input pulses. Disadvantages of using Stepper Motors Resonance movements can occur if not properly controlled. Not easy to operate at extremely high speeds. Types of Stepper Motors Variable reluctance (VR) This type of stepper motor has been around for a long time.

14 Reel Stepper Motors Types of Stepper Motors Variable reluctance (VR) It is probably the easiest to understand from a structural point of view. Figure 1 shows a cross section of a typical V.R. stepper motor. This type of motor consists of a soft iron multi-toothed rotor and a wound stator. When the stator windings are energized with DC current the poles become magnetized. Rotation occurs when the rotor teeth are attracted to the energized stator poles.

15 Reel Stepper Motors Types of Stepper Motors Permanent Magnet (PM) Often referred to as a "tin can" or "canstock" motor Is a low cost and low resolution type motor Typical step angles of 7.5 degrees to 15 degrees. (48-24 steps/revolution) PM motors Has permanent magnets added to the motor structure. The rotor no longer has teeth as with the VR motor. Instead the rotor is magnetized with alternating north and south poles situated in a straight line parallel to the rotor shaft.

16 Reel Stepper Motors Types of Stepper Motors Permanent Magnet (PM) Motor structure (continued) These magnetized rotor poles provide an increased magnetic flux intensity Thus the PM motor has improved torque characteristics when compared with the VR type. Hybrid (HR) More expensive than the PM stepper motor but provides better performance with respect to step resolution, torque and speed Typical step angles for the HR stepper motor range from 3.60 to 0.90 ( steps per revolution). Combines the best features of both the PM and VR type stepper motors.

17 Reel Stepper Motors Types of Stepper Motors Hybrid (HR) Price/Performance (continued) The rotor is multi-toothed like the VR motor Contains an axially magnetized concentric magnet around its shaft. The teeth on the rotor provide an even better path which helps guide the magnetic flux to preferred locations in the air gap. This further increases the detent, holding and dynamic torque characteristics of the motor when compared with both the VR and PM types. Most commonly used types Permanent magnet Normally several times less expensive Hybrid types

18 Reel Stepper Motors Calculation of the number of Steps Example # 1 Given: For Reel A the Fanfare is two rotations, The stepper motor rotates per pulse sent to the motor Starting position is 18 0 Ending position is 99 0 Find number or pulses to send to the reel stepper motor = 81 0 => 81 0 /1.8 0 = 45 2 rotations = x 2 = => /1.8 0 =400 Thus 445 pulses are needed Example # 2 Given: 1 rotation Fanfare, Start: 36 0, End: Find number or pulses to send to the reel stepper motor

19 Directional/Speed Controlled Direct Current Motors Types of control Overview Rotational Direction The polarity of the applied voltage controls rotational direction Some uses: Stair Lifts / Small Elevators Electric Wheel Chairs Automotive starters Etc Rotational Speed The speed of rotation is controlled by the voltage across the motor Some uses: Stair Lifts / Small Elevators Electric Wheel Chairs Any other situations that require variable speed motor action

20 Directional/Speed Controlled Direct Current Motors Types of control Overview Controls Both rotational direction and rotational speed can be controlled by various methods. Such as: Switches Microcontroller outputs Etc Simple Speed Control Circuit LED will substitute for a DC motor First circuit will use a potentiometer to control a transistor which will supply varying voltage levels across the LED substitute for a DC Motor

21 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit LED will substitute for a DC motor First circuit will use a potentiometer to control a transistor which will supply varying voltage levels across the LED substitute for a DC Motor Build the Circuit shown Resisters 100k Red- Black-Yellow Transistor 2N3904

22 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit LED will substitute for a DC motor Turn the knob on the potentiometer and verify that the LED changes brightness in response to a change in the position of the potentiometer s wiper terminal Micro-Controller as a motor On/Off Controller Build the Circuit Load a program that turns the LED on for 500 ms of ever second Run it Does it Work

23 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit Micro-Controller as a motor On/Off Controller What s the difference between this and connecting an LED circuit to an I/O pin? BASIC Stamp I/O pins have limitations on how much current they can deliver. Transistors have limitations too, but they are much higher. Such a circuit can be used to drive small motors, solenoids, relays, etc. Through the use of a three-phase contactor a small microcontroller can control a large three-phase industrial motor

24 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit Micro-Controller as a motor On/Off and Speed Controller Introducing the Digital Potentiometer The figure shows a pin map of the digital potentiometer you will use in this activity. Chip has 8 pins, four on each side, spaced for a breadboard The manufacturer places a reference notch on the plastic case so that you can tell the difference between pin 1 and pin 5. The reference notch can be used as a reference for the pins on the chip. The pin numbers on the chip count upwards, counterclockwise from the reference notch.

25 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit Micro-Controller as a motor On/Off and Speed Controller Introducing the Digital Potentiometer Here is a summary of each of the AD5220 s pins and functions: 1. CLK The pin that receives clock pulses (low-high-low signals) to move the 1. CLK The pin that receives clock pulses (low-high-low signals) to move the wiper terminal. 2. U/D The pin that receives a high signal to make the wiper (W1) terminal move towards A1, and a low signal to make it move towards B1. This pin just sets the direction, the wiper terminal doesn t actually move until a pulse (a low high low signal) is sent to the CLK pin. 3. A1 The potentiometer s A terminal. 4. GND The ground connection. The ground on the Board of Education and BASIC Stamp HomeWork Board is the Vss terminal. 5. W1 The potentiometer s wiper (W) terminal. 6. B1 The potentiometer s B terminal. 7. CS The chip select pin. Apply a high signal to this pin, and the chip ignores all control signals sent to CLK and U/D. Apply a low signal to this pin, and it acts on any control signals it receives. 8. Vdd Connect to +5 V, which is Vdd on the Board of Education

26 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit Micro-Controller as a motor On/Off and Speed Controller Introducing the Digital Potentiometer The AD5220 Part Datasheet Build the circuit We don t have enough AD5220 s - You will all use my circuit

27 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit Micro-Controller as a motor On/Off and Speed Controller Programming Digital Potentiometer Control Imagine that the knob on the manual potentiometer from the previous exercise has 128 positions. Imagine also that the potentiometer is in the middle of its range of motion. That means you could rotate the knob one direction by 63 steps and the other direction by 64 steps. Let s say you turn the potentiometer s knob one step clockwise. The LED will get only slightly brighter. This would be the same as sending a high signal to the AD5220 s U/D pin and sending one pulse (high-low-high) to the CLK pin. HIGH 5 PULSOUT 6, 1

28 Directional/Speed Controlled Direct Current Motors Types of control Simple Speed Control Circuit Micro-Controller as a motor On/Off and Speed Controller Programming Digital Potentiometer Control Imagine next that you turn your manual potentiometer 3 steps counterclockwise. The LED will get a little bit dimmer. This would be the same as sending a low signal to the U/D pin on the AD5220 and sending three pulses to the CLK pin. LOW 5 FOR counter = 1 TO 3 PULSOUT 6, 1 PAUSE 1 NEXT

29 Directional/Speed Controlled Direct Types of control Simple Speed Control Circuit Micro-Controller as a Motor On/Off and Speed Controller Current Motors Programming Digital Potentiometer Control Enter the following program and take your turn to run it on the provided BASIC Stamp board What's a Microcontroller - DigitalPotUpDown.bs2 ' Sweep digital pot through values. ' {$STAMP BS2} ' {$PBASIC 2.5} DEBUG "Program Running!" counter VAR Byte DO LOW 5 FOR counter = 0 TO 127 PULSOUT 6, 1 PAUSE 10 NEXT HIGH 5 FOR counter = 0 TO 127 PULSOUT 6, 1 PAUSE 10 NEXT LOOP

30 Alternating Current Motors Characteristics Motors are usually much larger that DC motors They come with dedicated starter circuits in the devices that use them For larger commercial grades of motors there are third party controls for starting them i.e., Allen Bradley s SMC-Flex motor controller Some my be on a control network to simplify overall management of motors See the next slide

31 Alternating Current Motors

Digital To Analog Converter with Sine Wave Output

Digital To Analog Converter with Sine Wave Output Digital To Analog Converter with Sine Wave Output Overview In this Lab we will build a resistive ladder network and use the BASIC Stamp to generate the digital data for the D/A conversions. PBASIC will

More information

Servo Info and Centering

Servo Info and Centering Info and Centering A servo is a mechanical motorized device that can be instructed to move the output shaft attached to a servo wheel or arm to a specified position. Inside the servo box is a DC motor

More information

DC Motor control Reversing

DC Motor control Reversing January 2013 DC Motor control Reversing and a "Rotor" which is the rotating part. Basically there are three types of DC Motor available: - Brushed Motor - Brushless Motor - Stepper Motor DC motors Electrical

More information

Micro-Step Driving for Stepper Motors: A Case Study

Micro-Step Driving for Stepper Motors: A Case Study Micro-Step Driving for Stepper Motors: A Case Study N. Sedaghati-Mokhtari Graduate Student, School of ECE, University of Tehran, Tehran, Iran n.sedaghati @ece.ut.ac.ir Abstract: In this paper, a case study

More information

Chapter 4: Pulse Width Modulation

Chapter 4: Pulse Width Modulation Pulse Width Modulation Page 127 Chapter 4: Pulse Width Modulation PULSES FOR COMMUNICATION AND CONTROL Pulse width modulation is abbreviated PWM, and it refers to a technique of varying the amount of time

More information

CNC Machine Control Unit

CNC Machine Control Unit NC Hardware a NC Hardware CNC Machine Control Unit Servo Drive Control Hydraulic Servo Drive Hydraulic power supply unit Servo valve Servo amplifiers Hydraulic motor Hydraulic Servo Valve Hydraulic Servo

More information

Introduction to Linear Actuators: Precision Linear Motion Accomplished Easily and Economically

Introduction to Linear Actuators: Precision Linear Motion Accomplished Easily and Economically Introduction to Linear Actuators: Precision Linear Motion Accomplished Easily and Economically Part 1 of 2 When students are trained in classic mechanical engineering, they are taught to construct a system

More information

Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board

Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Abstract This application note is a tutorial of how to use an Arduino UNO microcontroller to

More information

Flow Charts and Servomotors (background to Lab #2) Things to learn about: flow charts for design. MECH452 2014 Lecture #2 flow charts & servos rev2

Flow Charts and Servomotors (background to Lab #2) Things to learn about: flow charts for design. MECH452 2014 Lecture #2 flow charts & servos rev2 MECH 452 Lecture #2 Flow Charts and Servomotors (background to Lab #2) 1 2 Handout #2 (highlights, questions) Things to learn about: flow charts for design Only 5 symbols (subroutine not shown) Flow charts

More information

Table 1 Comparison of DC, Uni-Polar and Bi-polar Stepper Motors

Table 1 Comparison of DC, Uni-Polar and Bi-polar Stepper Motors Electronics Exercise 3: Uni-Polar Stepper Motor Controller / Driver Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles

More information

Equipment: Power Supply, DAI, Wound rotor induction motor (8231), Electrodynamometer (8960), timing belt.

Equipment: Power Supply, DAI, Wound rotor induction motor (8231), Electrodynamometer (8960), timing belt. Lab 13: Wound rotor induction motor. Objective: to examine the construction of a 3-phase wound rotor induction motor; to understand exciting current, synchronous speed and slip in this motor; to determine

More information

Stepper motor I/O. Application Note DK9222-0410-0014 Motion Control. A General information on stepper motors

Stepper motor I/O. Application Note DK9222-0410-0014 Motion Control. A General information on stepper motors Stepper motor Keywords Stepper motor Fieldbus Microstepping Encoder Phase current Travel distance control Speed interface KL2531 KL2541 Part A of this Application Example provides general information on

More information

DIRECT CURRENT GENERATORS

DIRECT CURRENT GENERATORS DIRECT CURRENT GENERATORS Revision 12:50 14 Nov 05 INTRODUCTION A generator is a machine that converts mechanical energy into electrical energy by using the principle of magnetic induction. This principle

More information

Lab 8: DC generators: shunt, series, and compounded.

Lab 8: DC generators: shunt, series, and compounded. Lab 8: DC generators: shunt, series, and compounded. Objective: to study the properties of DC generators under no-load and full-load conditions; to learn how to connect these generators; to obtain their

More information

AC generator theory. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

AC generator theory. Resources and methods for learning about these subjects (list a few here, in preparation for your research): AC generator theory This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Motor Fundamentals. DC Motor

Motor Fundamentals. DC Motor Motor Fundamentals Before we can examine the function of a drive, we must understand the basic operation of the motor. It is used to convert the electrical energy, supplied by the controller, to mechanical

More information

Pulse Width Modulation Applications

Pulse Width Modulation Applications Pulse Width Modulation Applications Lecture 21 EE 383 Microcomputers Learning Objectives What is DTMF? How to use PWM to generate DTMF? How to use PWM to control a servo motor? How to use PWM to control

More information

Principles of Adjustable Frequency Drives

Principles of Adjustable Frequency Drives What is an Adjustable Frequency Drive? An adjustable frequency drive is a system for controlling the speed of an AC motor by controlling the frequency of the power supplied to the motor. A basic adjustable

More information

The purposes of this experiment are to test Faraday's Law qualitatively and to test Lenz's Law.

The purposes of this experiment are to test Faraday's Law qualitatively and to test Lenz's Law. 260 17-1 I. THEORY EXPERIMENT 17 QUALITATIVE STUDY OF INDUCED EMF Along the extended central axis of a bar magnet, the magnetic field vector B r, on the side nearer the North pole, points away from this

More information

Equipment: Power Supply, DAI, Synchronous motor (8241), Electrodynamometer (8960), Tachometer, Timing belt.

Equipment: Power Supply, DAI, Synchronous motor (8241), Electrodynamometer (8960), Tachometer, Timing belt. Lab 9: Synchronous motor. Objective: to examine the design of a 3-phase synchronous motor; to learn how to connect it; to obtain its starting characteristic; to determine the full-load characteristic of

More information

Speed Control Methods of Various Types of Speed Control Motors. Kazuya SHIRAHATA

Speed Control Methods of Various Types of Speed Control Motors. Kazuya SHIRAHATA Speed Control Methods of Various Types of Speed Control Motors Kazuya SHIRAHATA Oriental Motor Co., Ltd. offers a wide variety of speed control motors. Our speed control motor packages include the motor,

More information

ServoPAL (#28824): Servo Pulser and Timer

ServoPAL (#28824): Servo Pulser and Timer Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

C Standard AC Motors

C Standard AC Motors C Standard AC Standard AC C-1 Overview, Product Series... C-2 Constant... C-9 C-21 C-113 Reversible C-147 Overview, Product Series Constant Reversible Electromagnetic Brake C-155 Electromagnetic Brake

More information

V out. Figure 1: A voltage divider on the left, and potentiometer on the right.

V out. Figure 1: A voltage divider on the left, and potentiometer on the right. Living with the Lab Fall 202 Voltage Dividers and Potentiometers Gerald Recktenwald v: November 26, 202 gerry@me.pdx.edu Introduction Voltage dividers and potentiometers are passive circuit components

More information

UNIT II Robots Drive Systems and End Effectors Part-A Questions

UNIT II Robots Drive Systems and End Effectors Part-A Questions UNIT II Robots Drive Systems and End Effectors Part-A Questions 1. Define End effector. End effector is a device that is attached to the end of the wrist arm to perform specific task. 2. Give some examples

More information

Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill

Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill Objectives: Analyze the operation of sequential logic circuits. Understand the operation of digital counters.

More information

Lab 14: 3-phase alternator.

Lab 14: 3-phase alternator. Lab 14: 3-phase alternator. Objective: to obtain the no-load saturation curve of the alternator; to determine the voltage regulation characteristic of the alternator with resistive, capacitive, and inductive

More information

DC GENERATOR THEORY. LIST the three conditions necessary to induce a voltage into a conductor.

DC GENERATOR THEORY. LIST the three conditions necessary to induce a voltage into a conductor. DC Generators DC generators are widely used to produce a DC voltage. The amount of voltage produced depends on a variety of factors. EO 1.5 LIST the three conditions necessary to induce a voltage into

More information

AC Induction Motor Slip What It Is And How To Minimize It

AC Induction Motor Slip What It Is And How To Minimize It AC Induction Motor Slip What It Is And How To Minimize It Mauri Peltola, ABB Oy, Helsinki, Finland The alternating current (AC) induction motor is often referred to as the workhorse of the industry because

More information

Synchronous motor. Type. Non-excited motors

Synchronous motor. Type. Non-excited motors Synchronous motor A synchronous electric motor is an AC motor in which the rotation rate of the shaft is synchronized with the frequency of the AC supply current; the rotation period is exactly equal to

More information

Digital Electronics Detailed Outline

Digital Electronics Detailed Outline Digital Electronics Detailed Outline Unit 1: Fundamentals of Analog and Digital Electronics (32 Total Days) Lesson 1.1: Foundations and the Board Game Counter (9 days) 1. Safety is an important concept

More information

Drive circuit basics + V. τ e. Industrial Circuits Application Note. Winding resistance and inductance

Drive circuit basics + V. τ e. Industrial Circuits Application Note. Winding resistance and inductance ndustrial Circuits Application Note Drive circuit basics For a given size of a stepper motor, a limited space is available for the windings. n the process of optimizing a stepper motor drive system, an

More information

AND8008/D. Solid State Control Solutions for Three Phase 1 HP Motor APPLICATION NOTE

AND8008/D. Solid State Control Solutions for Three Phase 1 HP Motor APPLICATION NOTE Solid State Control Solutions for Three Phase 1 HP Motor APPLICATION NOTE INTRODUCTION In all kinds of manufacturing, it is very common to have equipment that has three phase motors for doing different

More information

STEPPER MOTOR SPEED AND POSITION CONTROL

STEPPER MOTOR SPEED AND POSITION CONTROL STEPPER MOTOR SPEED AND POSITION CONTROL Group 8: Subash Anigandla Hemanth Rachakonda Bala Subramanyam Yannam Sri Divya Krovvidi Instructor: Dr. Jens - Peter Kaps ECE 511 Microprocessors Fall Semester

More information

AMZ-FX Guitar effects. (2007) Mosfet Body Diodes. http://www.muzique.com/news/mosfet-body-diodes/. Accessed 22/12/09.

AMZ-FX Guitar effects. (2007) Mosfet Body Diodes. http://www.muzique.com/news/mosfet-body-diodes/. Accessed 22/12/09. Pulse width modulation Pulse width modulation is a pulsed DC square wave, commonly used to control the on-off switching of a silicon controlled rectifier via the gate. There are many types of SCR s, most

More information

Principles and Working of DC and AC machines

Principles and Working of DC and AC machines BITS Pilani Dubai Campus Principles and Working of DC and AC machines Dr Jagadish Nayak Constructional features BITS Pilani Dubai Campus DC Generator A generator consists of a stationary portion called

More information

Chapter 22: Electric motors and electromagnetic induction

Chapter 22: Electric motors and electromagnetic induction Chapter 22: Electric motors and electromagnetic induction The motor effect movement from electricity When a current is passed through a wire placed in a magnetic field a force is produced which acts on

More information

Using the Motor Controller

Using the Motor Controller The Motor Controller is designed to be a convenient tool for teachers and students who want to use math and science to make thing happen. Mathematical equations are the heart of math, science and technology,

More information

WIND TURBINE TECHNOLOGY

WIND TURBINE TECHNOLOGY Module 2.2-2 WIND TURBINE TECHNOLOGY Electrical System Gerhard J. Gerdes Workshop on Renewable Energies November 14-25, 2005 Nadi, Republic of the Fiji Islands Contents Module 2.2 Types of generator systems

More information

SYSTEM 45. C R H Electronics Design

SYSTEM 45. C R H Electronics Design SYSTEM 45 C R H Electronics Design SYSTEM 45 All in one modular 4 axis CNC drive board By C R Harding Specifications Main PCB & Input PCB Available with up to 4 Axis X, Y, Z, & A outputs. Independent 25

More information

INSTRUMENTATION AND CONTROL TUTORIAL 2 ELECTRIC ACTUATORS

INSTRUMENTATION AND CONTROL TUTORIAL 2 ELECTRIC ACTUATORS INSTRUMENTATION AND CONTROL TUTORIAL 2 ELECTRIC ACTUATORS This is a stand alone tutorial on electric motors and actuators. The tutorial is of interest to any student studying control systems and in particular

More information

Special Lecture. Basic Stamp 2 Programming. (Presented on popular demand)

Special Lecture. Basic Stamp 2 Programming. (Presented on popular demand) Special Lecture Basic Stamp 2 Programming (Presented on popular demand) Programming Environment Servo Motor: How It Work? The editor window consists of the main edit pane with an integrated explorer panel

More information

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module RS0 Microcontroller LEDs Motor Control Pushbuttons Purpose: To demonstrate an easy way of using a Freescale RS0K2 microcontroller

More information

Unit 33 Three-Phase Motors

Unit 33 Three-Phase Motors Unit 33 Three-Phase Motors Objectives: Discuss the operation of wound rotor motors. Discuss the operation of selsyn motors. Discuss the operation of synchronous motors. Determine the direction of rotation

More information

Physics 221 Experiment 5: Magnetic Fields

Physics 221 Experiment 5: Magnetic Fields Physics 221 Experiment 5: Magnetic Fields August 25, 2007 ntroduction This experiment will examine the properties of magnetic fields. Magnetic fields can be created in a variety of ways, and are also found

More information

Digital vs. Analogue Control Systems

Digital vs. Analogue Control Systems Digital vs. Analogue Control Systems Presented at the 2011 Annual Meeting of the American College of Medical Physics, Chattanooga, TN, May 1, 2011 Ivan A. Brezovich, PhD, Dept. of Rad Onc, Univ of Alabama

More information

Motors and Generators

Motors and Generators Motors and Generators Electro-mechanical devices: convert electrical energy to mechanical motion/work and vice versa Operate on the coupling between currentcarrying conductors and magnetic fields Governed

More information

1. The diagram below represents magnetic lines of force within a region of space.

1. The diagram below represents magnetic lines of force within a region of space. 1. The diagram below represents magnetic lines of force within a region of space. 4. In which diagram below is the magnetic flux density at point P greatest? (1) (3) (2) (4) The magnetic field is strongest

More information

BALDOR ELECTRIC COMPANY SERVO CONTROL FACTS A HANDBOOK EXPLAINING THE BASICS OF MOTION

BALDOR ELECTRIC COMPANY SERVO CONTROL FACTS A HANDBOOK EXPLAINING THE BASICS OF MOTION BALDOR ELECTRIC COMPANY SERVO CONTROL FACTS A HANDBOOK EXPLAINING THE BASICS OF MOTION MN1205 TABLE OF CONTENTS TYPES OF MOTORS.............. 3 OPEN LOOP/CLOSED LOOP..... 9 WHAT IS A SERVO..............

More information

Timer A (0 and 1) and PWM EE3376

Timer A (0 and 1) and PWM EE3376 Timer A (0 and 1) and PWM EE3376 General Peripheral Programming Model Each peripheral has a range of addresses in the memory map peripheral has base address (i.e. 0x00A0) each register used in the peripheral

More information

APPLICATION NOTE. Atmel AVR443: Sensor-based Control of Three Phase Brushless DC Motor. Atmel AVR 8-bit Microcontrollers. Features.

APPLICATION NOTE. Atmel AVR443: Sensor-based Control of Three Phase Brushless DC Motor. Atmel AVR 8-bit Microcontrollers. Features. APPLICATION NOTE Features Atmel AVR443: Sensor-based Control of Three Phase Brushless DC Motor Less than 5µs response time on Hall sensor output change Theoretical maximum of 1600k RPM Over-current sensing

More information

Lab 3 - DC Circuits and Ohm s Law

Lab 3 - DC Circuits and Ohm s Law Lab 3 DC Circuits and Ohm s Law L3-1 Name Date Partners Lab 3 - DC Circuits and Ohm s Law OBJECTIES To learn to apply the concept of potential difference (voltage) to explain the action of a battery in

More information

2. A conductor of length 2m moves at 4m/s at 30 to a uniform magnetic field of 0.1T. Which one of the following gives the e.m.f. generated?

2. A conductor of length 2m moves at 4m/s at 30 to a uniform magnetic field of 0.1T. Which one of the following gives the e.m.f. generated? Extra Questions - 2 1. A straight length of wire moves through a uniform magnetic field. The e.m.f. produced across the ends of the wire will be maximum if it moves: a) along the lines of magnetic flux

More information

Inductance. Motors. Generators

Inductance. Motors. Generators Inductance Motors Generators Self-inductance Self-inductance occurs when the changing flux through a circuit arises from the circuit itself. As the current increases, the magnetic flux through a loop due

More information

Enhancing the Design of Electric Machines through the Interaction of Software Tools. Markus Anders Electric machine sector manager CD-adpaco

Enhancing the Design of Electric Machines through the Interaction of Software Tools. Markus Anders Electric machine sector manager CD-adpaco Enhancing the Design of Electric Machines through the Interaction of Software Tools Markus Anders Electric machine sector manager CD-adpaco Outline Part I: SPEED and STAR-CCM+ Enhancing the thermal design

More information

Simple Analysis for Brushless DC Motors Case Study: Razor Scooter Wheel Motor

Simple Analysis for Brushless DC Motors Case Study: Razor Scooter Wheel Motor Simple Analysis for Brushless DC Motors Case Study: Razor Scooter Wheel Motor At first glance, a brushless direct-current (BLDC) motor might seem more complicated than a permanent magnet brushed DC motor,

More information

PLL frequency synthesizer

PLL frequency synthesizer ANALOG & TELECOMMUNICATION ELECTRONICS LABORATORY EXERCISE 4 Lab 4: PLL frequency synthesizer 1.1 Goal The goals of this lab exercise are: - Verify the behavior of a and of a complete PLL - Find capture

More information

SYNCHRONOUS MACHINES

SYNCHRONOUS MACHINES SYNCHRONOUS MACHINES The geometry of a synchronous machine is quite similar to that of the induction machine. The stator core and windings of a three-phase synchronous machine are practically identical

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

Permanent Magnet Motor Kit, Magnetic Reed Type. (SKY-ReedMotorKit) Instructions

Permanent Magnet Motor Kit, Magnetic Reed Type. (SKY-ReedMotorKit) Instructions Permanent Magnet Motor Kit, Magnetic Reed Type (SKY-ReedMotorKit) Instructions This kit contains powerful permanent magnets. Exercise caution when handling them as they can pull on iron tools and snap

More information

3-Phase BLDC Motor Control with Hall Sensors Using 56800/E Digital Signal Controllers

3-Phase BLDC Motor Control with Hall Sensors Using 56800/E Digital Signal Controllers Freescale Semiconductor Application Note AN1916 Rev. 2.0, 11/2005 3-Phase BLDC Motor Control with Hall Sensors Using 56800/E Digital Signal Controllers Leonard N. Elevich Contents 1. Application Benefits...1

More information

Chen. Vibration Motor. Application note

Chen. Vibration Motor. Application note Vibration Motor Application note Yangyi Chen April 4 th, 2013 1 Table of Contents Pages Executive Summary ---------------------------------------------------------------------------------------- 1 1. Table

More information

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Servo Motors (SensorDAQ only) Project 7 Servos are small, relatively inexpensive motors known for their ability to provide a large torque or turning force. They draw current proportional to the mechanical

More information

Alternative Linear Motion Systems. Iron Core Linear Motors

Alternative Linear Motion Systems. Iron Core Linear Motors Alternative Linear Motion Systems ME EN 7960 Precision Machine Design Topic 5 ME EN 7960 Precision Machine Design Alternative Linear Motion Systems 5-1 Iron Core Linear Motors Provide actuation forces

More information

White Paper Implementing a Flexible CPLD-Only Digital Dashboard for Automobiles

White Paper Implementing a Flexible CPLD-Only Digital Dashboard for Automobiles Introduction White Paper Implementing a Flexible CPLD-Only Digital Dashboard for Automobiles An automotive dashboard acts as a nerve center that consolidates all information pertaining to the safe driving

More information

How to Turn an AC Induction Motor Into a DC Motor (A Matter of Perspective) Steve Bowling Application Segments Engineer Microchip Technology, Inc.

How to Turn an AC Induction Motor Into a DC Motor (A Matter of Perspective) Steve Bowling Application Segments Engineer Microchip Technology, Inc. 1 How to Turn an AC Induction Motor Into a DC Motor (A Matter of Perspective) Steve Bowling Application Segments Engineer Microchip Technology, Inc. The territory of high-performance motor control has

More information

Introduction to Electronic Signals

Introduction to Electronic Signals Introduction to Electronic Signals Oscilloscope An oscilloscope displays voltage changes over time. Use an oscilloscope to view analog and digital signals when required during circuit diagnosis. Fig. 6-01

More information

MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3

MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3 MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3 CMPS03 Magnetic Compass. Voltage : 5v only required Current : 20mA Typ. Resolution : 0.1 Degree Accuracy : 3-4 degrees approx. after calibration Output

More information

Interfacing Analog to Digital Data Converters

Interfacing Analog to Digital Data Converters Converters In most of the cases, the PIO 8255 is used for interfacing the analog to digital converters with microprocessor. We have already studied 8255 interfacing with 8086 as an I/O port, in previous

More information

A Digital Timer Implementation using 7 Segment Displays

A Digital Timer Implementation using 7 Segment Displays A Digital Timer Implementation using 7 Segment Displays Group Members: Tiffany Sham u2548168 Michael Couchman u4111670 Simon Oseineks u2566139 Caitlyn Young u4233209 Subject: ENGN3227 - Analogue Electronics

More information

Unit 24: Applications of Pneumatics and Hydraulics

Unit 24: Applications of Pneumatics and Hydraulics Unit 24: Applications of Pneumatics and Hydraulics Unit code: J/601/1496 QCF level: 4 Credit value: 15 OUTCOME 2 TUTORIAL 4 DIRECTIONAL CONTROL VALVES The material needed for outcome 2 is very extensive

More information

DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING EE2302 - ELECTRICAL MACHINES II UNIT-I SYNCHRONOUS GENERATOR

DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING EE2302 - ELECTRICAL MACHINES II UNIT-I SYNCHRONOUS GENERATOR 1 DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING Constructional details Types of rotors EE2302 - ELECTRICAL MACHINES II UNIT-I SYNCHRONOUS GENERATOR PART A 1.

More information

FREQUENCY CONTROLLED AC MOTOR DRIVE

FREQUENCY CONTROLLED AC MOTOR DRIVE FREQUENCY CONTROLLED AC MOTOR DRIVE 1.0 Features of Standard AC Motors The squirrel cage induction motor is the electrical motor motor type most widely used in industry. This leading position results mainly

More information

Chapter 11 SERVO VALVES. Fluid Power Circuits and Controls, John S.Cundiff, 2001

Chapter 11 SERVO VALVES. Fluid Power Circuits and Controls, John S.Cundiff, 2001 Chapter 11 SERVO VALVES Fluid Power Circuits and Controls, John S.Cundiff, 2001 Servo valves were developed to facilitate the adjustment of fluid flow based on the changes in the load motion. 1 Typical

More information

THE LUCAS C40 DYNAMO & ITS ARMATURE.

THE LUCAS C40 DYNAMO & ITS ARMATURE. THE LUCAS C40 DYNAMO & ITS ARMATURE. H. Holden, March 2011. The Dynamo as a DC generating machine was used extensively in the pre- Alternator era, from the early 1900 s up to the late 1960 s and early

More information

Wireless Security Camera

Wireless Security Camera Wireless Security Camera Technical Manual 12/14/2001 Table of Contents Page 1.Overview 3 2. Camera Side 4 1.Camera 5 2. Motion Sensor 5 3. PIC 5 4. Transmitter 5 5. Power 6 3. Computer Side 7 1.Receiver

More information

Technical Guide No. 100. High Performance Drives -- speed and torque regulation

Technical Guide No. 100. High Performance Drives -- speed and torque regulation Technical Guide No. 100 High Performance Drives -- speed and torque regulation Process Regulator Speed Regulator Torque Regulator Process Technical Guide: The illustrations, charts and examples given in

More information

Inductors. AC Theory. Module 3

Inductors. AC Theory. Module 3 Module 3 AC Theory What you ll learn in Module 3. Section 3.1 Electromagnetic Induction. Magnetic Fields around Conductors. The Solenoid. Section 3.2 Inductance & Back e.m.f. The Unit of Inductance. Factors

More information

Induction Motor Theory

Induction Motor Theory PDHonline Course E176 (3 PDH) Induction Motor Theory Instructor: Jerry R. Bednarczyk, P.E. 2012 PDH Online PDH Center 5272 Meadow Estates Drive Fairfax, VA 22030-6658 Phone & Fax: 703-988-0088 www.pdhonline.org

More information

MECHANICAL PRINCIPLES OUTCOME 4 MECHANICAL POWER TRANSMISSION TUTORIAL 1 SIMPLE MACHINES

MECHANICAL PRINCIPLES OUTCOME 4 MECHANICAL POWER TRANSMISSION TUTORIAL 1 SIMPLE MACHINES MECHANICAL PRINCIPLES OUTCOME 4 MECHANICAL POWER TRANSMISSION TUTORIAL 1 SIMPLE MACHINES Simple machines: lifting devices e.g. lever systems, inclined plane, screw jack, pulley blocks, Weston differential

More information

AN470 APPLICATION NOTE

AN470 APPLICATION NOTE AN470 APPLICATION NOTE THE L297 STEPPER MOTOR CONTROLLER The L297 integrates all the control circuitry required to control bipolar and unipolar stepper motors. Used with a dual bridge driver such as the

More information

Pulse Width Modulated (PWM) Drives. AC Drives Using PWM Techniques

Pulse Width Modulated (PWM) Drives. AC Drives Using PWM Techniques Drives AC Drives Using PWM Techniques Power Conversion Unit The block diagram below shows the power conversion unit in Pulse Width Modulated (PWM) drives. In this type of drive, a diode bridge rectifier

More information

Application Information Fully Integrated Hall Effect Motor Driver for Brushless DC Vibration Motor Applications

Application Information Fully Integrated Hall Effect Motor Driver for Brushless DC Vibration Motor Applications Application Information Fully Integrated Hall Effect Motor Driver for Brushless DC Vibration Motor Applications By Shaun Milano Vibration motors are used in a variety of applications including mobile phone

More information

ECE 495 Project 3: Shocker Actuator Subsystem and Website Design. Group 1: One Awesome Engineering

ECE 495 Project 3: Shocker Actuator Subsystem and Website Design. Group 1: One Awesome Engineering ECE 495 Project 3: Shocker Actuator Subsystem and Website Design Group 1: One Awesome Engineering Luquita Edwards Evan Whetsell Sunny Verma Thomas Ryan Willis Long I. Executive Summary The main goal behind

More information

SYSTEM 4C. C R H Electronics Design

SYSTEM 4C. C R H Electronics Design SYSTEM 4C C R H Electronics Design SYSTEM 4C All in one modular 4 axis CNC drive board By C R Harding Specifications Main PCB & Input PCB Available with up to 4 Axis X, Y, Z, A outputs. Independent 25

More information

*ADVANCED ELECTRIC GENERATOR & CONTROL FOR HIGH SPEED MICRO/MINI TURBINE BASED POWER SYSTEMS

*ADVANCED ELECTRIC GENERATOR & CONTROL FOR HIGH SPEED MICRO/MINI TURBINE BASED POWER SYSTEMS *ADVANCED ELECTRIC GENERATOR & CONTROL FOR HIGH SPEED MICRO/MINI TURBINE BASED POWER SYSTEMS Jay Vaidya, President Electrodynamics Associates, Inc. 409 Eastbridge Drive, Oviedo, FL 32765 and Earl Gregory,

More information

USE OF ARNO CONVERTER AND MOTOR-GENERATOR SET TO CONVERT A SINGLE-PHASE AC SUPPLY TO A THREE-PHASE AC FOR CONTROLLING THE SPEED OF A THREE-PHASE INDUCTION MOTOR BY USING A THREE-PHASE TO THREE-PHASE CYCLOCONVERTER

USE OF ARNO CONVERTER AND MOTOR-GENERATOR SET TO CONVERT A SINGLE-PHASE AC SUPPLY TO A THREE-PHASE AC FOR CONTROLLING THE SPEED OF A THREE-PHASE INDUCTION MOTOR BY USING A THREE-PHASE TO THREE-PHASE CYCLOCONVERTER International Journal of Electrical Engineering & Technology (IJEET) Volume 7, Issue 2, March-April, 2016, pp.19-28, Article ID: IJEET_07_02_003 Available online at http:// http://www.iaeme.com/ijeet/issues.asp?jtype=ijeet&vtype=7&itype=2

More information

Programming Logic controllers

Programming Logic controllers Programming Logic controllers Programmable Logic Controller (PLC) is a microprocessor based system that uses programmable memory to store instructions and implement functions such as logic, sequencing,

More information

INSTRUMENTATION AND CONTROL TUTORIAL 3 SIGNAL PROCESSORS AND RECEIVERS

INSTRUMENTATION AND CONTROL TUTORIAL 3 SIGNAL PROCESSORS AND RECEIVERS INSTRUMENTATION AND CONTROL TUTORIAL 3 SIGNAL PROCESSORS AND RECEIVERS This tutorial provides an overview of signal processing and conditioning for use in instrumentation and automatic control systems.

More information

Chapter 5. Components, Symbols, and Circuitry of Air-Conditioning Wiring Diagrams

Chapter 5. Components, Symbols, and Circuitry of Air-Conditioning Wiring Diagrams Chapter 5 Components, Symbols, and Circuitry of Air-Conditioning Wiring Diagrams Objectives Upon completion of this course, you will be able to: Explain what electrical loads are and their general purpose

More information

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter Description: The NTE2053 is a CMOS 8 bit successive approximation Analog to Digital converter in a 20 Lead DIP type package which uses a differential

More information

Equipment: Power Supply, DAI, Universal motor (8254), Electrodynamometer (8960), timing belt.

Equipment: Power Supply, DAI, Universal motor (8254), Electrodynamometer (8960), timing belt. Lab 12: The universal motor. Objective: to examine the construction of the universal motor; to determine its no-load and full-load characteristics while operating on AC; to determine its no-load and full-load

More information

Lesson 3 DIRECT AND ALTERNATING CURRENTS. Task. The skills and knowledge taught in this lesson are common to all missile repairer tasks.

Lesson 3 DIRECT AND ALTERNATING CURRENTS. Task. The skills and knowledge taught in this lesson are common to all missile repairer tasks. Lesson 3 DIRECT AND ALTERNATING CURRENTS Task. The skills and knowledge taught in this lesson are common to all missile repairer tasks. Objectives. When you have completed this lesson, you should be able

More information

SPEED CONTROL OF INDUCTION MACHINE WITH REDUCTION IN TORQUE RIPPLE USING ROBUST SPACE-VECTOR MODULATION DTC SCHEME

SPEED CONTROL OF INDUCTION MACHINE WITH REDUCTION IN TORQUE RIPPLE USING ROBUST SPACE-VECTOR MODULATION DTC SCHEME International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 7, Issue 2, March-April 2016, pp. 78 90, Article ID: IJARET_07_02_008 Available online at http://www.iaeme.com/ijaret/issues.asp?jtype=ijaret&vtype=7&itype=2

More information

Tuning Up DC Motors and Generators for Commutation and Performance

Tuning Up DC Motors and Generators for Commutation and Performance Tuning Up DC Motors and Generators for Commutation and Performance Rich Hall- National Electrical Carbon Western Mining Electrical Association June 8, 2007, Billings Montana Sometimes your machine may

More information

Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist.

Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist. Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist. Abstract. I have been asked to put together a detailed article on a SWR meter. In this article I will deal

More information

Basic Pulse Width Modulation

Basic Pulse Width Modulation EAS 199 Fall 211 Basic Pulse Width Modulation Gerald Recktenwald v: September 16, 211 gerry@me.pdx.edu 1 Basic PWM Properties Pulse Width Modulation or PWM is a technique for supplying electrical power

More information

WORKING WITH STEPPER MOTORS

WORKING WITH STEPPER MOTORS 19 WORKING WITH STEPPER MOTORS In past chapters we ve looked at powering robots using everyday continuous DC motors. DC motors are cheap, deliver a lot of torque for their size, and are easily adaptable

More information

10 tips for servos and steppers a simple guide

10 tips for servos and steppers a simple guide 10 tips for servos and steppers a simple guide What are the basic application differences between servos and steppers? Where would you choose one over the other? This short 10 point guide, offers a simple

More information