Position and Velocity Sensors

Size: px
Start display at page:

Download "Position and Velocity Sensors"

Transcription

1 Position and Velocity Sensors Introduction: A third type of sensor which is commonly used is a speed or position sensor. Position sensors are required when the location of an object is to be controlled. Examples include The location of a vehicle on the road (preferably in the car lane as opposed to the ditch) The angle of a rocket as it moved from the hanger to the launch pad, The position of the aerlorons on an airplane, The speed of a vehicle for a cruise controller, etc. In each of these cases, a method for conveying information about the position, angle, or speed of an abject is required. This section looks at several types of position and speed sensors: Potentiometers: Angle is related to resistance Optical Encoders: Angle is related to a binary count Ultrasonic Range Sensors: Distance is related to a time delay, and Tachometers: Speed is related to voltage. Potentiometers: A potentiometer is a resistor with a center tap that can slide along the length. Both rotational and sliding potentiometers exist - although the rotational ones are less expensive and more common. For both types of potentiometers, the resistance Rab is proportional to angle (rotational) or position (slider). Some of the common characteristics for potentiometers are summarized below: Parameter Rotational Linear Ohms 10 to 10M Range 1 to 60 turns 2mm to 8m Linearity 0.002% to 0.1% of full scale Resolution to to 50um Max Freq Life approx 3Hz up to 4 x 10 8 cycles from R.P. Arney & J.G. Webster, "Sensors and Signal Conditioning," John Wiley & Sons, page 1 November 1, 2018

2 Potentiometers are very common and have some good features. They are easy to use They have high sensitivity, and Ceramic potentiometers have infinite resolution (in theory at least). The drawbacks to using potentiometers are They have high inertia and friction, They have a short life Wipers corrode and cause noise, and With wire wound potentiometers, the output changes in discrete steps, adding noise to the signal. Examples of using a potentiometer Problem 1: Use a 10k 3/4 turn potentiometer to output V: 0V at 90 degrees 10V at 180 degrees Solution: 3/4 turn is 270 degrees. Using a 10V power supply, the output will be at 90 degrees: (V out = 0V) V = 3.33V At 180 degrees (V out = 10V) V = 6.66V As the input voltage goes up, the output voltage goes up. Connect to the + input. The output should be 0V when the input is 3.33V. Connect the offset to 3.33V. The gain is gain = change in output change in input = 10V 6.66V 3.33V = 3 Add a gain of The resulting circuit is then: page 2 November 1, 2018

3 100k 300k +10V 270 deg 180 deg 90 deg 10k A Vout 0 deg 3.33V 100k 300k Note that the instrumentation amplifier loads the potentiometer so that the voltage at A is no longer linear with angle. Loading Effects on Potentiometers: In the above circuit, 400k is in parallel with the center tap to a virtual ground. When the center tap is at the top or bottom, Va = 10V and 0V respectively. In the middle where it should read -5.00V, however, the 400k will pull the voltage towards ground. If you let 'a' be the ratio of Rab to Rac, the voltage at A without loading will be linear V a = ar ar+(1 a)r V = av With loading, the voltage will be V a = which simplifies to V a = ar R L ar R L +(1 a)r V arr L arr L +(1 a)r(ar+r L ) V which is no longer linear in 'a'. To illustrate this, the voltage at Va for various values or the load resistance is shown below. page 3 November 1, 2018

4 Linearity of a Loaded Potentiometer. Lines show the ratio of the load to the potentiometer's full scale reading. Note that even though a potentiometer may be linear to within 0.2%, the loading of the 100k resistor can distort this read quite severely. In the worst case, the potentiometer barely responds until nearly at the full sweep. To prevent loading, typically a load of at least 10x the resistance of the potentiometer is required. This causes the potentiometer to be off by 2.5% at mid-scale from linear. Optical Encoders A second type of angular measuring device is an optical encoder. These are commonly found in robotic arms instead of potentiometers due to shortcomings of the latter. For example, A 0.2 degree error translates to 3.5mm at 1m. Most robotics require a precision of 0.1mm or better cycles is 11 days at one cycle per second. The potentiometers would need to be constantly replaced if used for repetitive tasks. Optical encoders offer a way to get better resolution without any physical contact. Description An optical encoder generates a square wave whose frequency is proportional to the speed the device is turning. Typically, a disk with white and black stripes is used with an optical detector: page 4 November 1, 2018

5 When the disk rotates, light and dark regions are brought between the light detector. This is then turned into a 0-5V signal. By counting the number of transitions, you can measure the motion of the disk and the sensor. Incremental Optical Encoder If the object you're measuring only goes in one direction, an incremental optical encoder will work. Incremental optical encoders have a single 0-5V output with the 0V or 5V being generate d when a white or black area is under the detector. By counting the number of transitions, you can measure the position of the device. By measuring the frequency of the square wave generated, you can measure the speed. You cannot measure direction of motion, however. Several types of incremental optical encoders are common. White and Black Paint of a Disk: This is used for optical encoders. These are more expensive ($40 to $100) but have higher resolution (128 to 512 pulses per rotation) Iron Teeth and a Magnetic Pickup: These are used to measure the speed of a gear (counting the rate the teeth pass by the magnetic sensor) in engines as well as with stair-masters. Insulators on a conductor: Alternating regions of insulation and bare copper, a brush can be used to generate 0-5V with a physical contact. This typically has low resolution (2-4 pulses per rotation) and lower life due to a physical contact but is less expensive ($10). Diffraction Gratings with an optical encoder Phase Quadrature Incremental Encoders The most common type of optical encoder uses two strips placed 90 degrees out of phase form each other. With this skew, the direction of motion can be determined as well as incremental position. For example, assume that the square waves, A and B, are generated from an incremental optical encoder. If it is turning clockwise, time goes from left to right. If it is turned counterclockwise, time goes right to left. The direction can be determined by observing the level of channel B at the rising or falling edge of A. If you move left to right (clockwise motion), B is always high on a rising edge on A and low on a falling edge on A. If you go from right to left (counterclockwise motion), B is low on a rising edge of A and page 5 November 1, 2018

6 high on a falling edge. This can then be used to drive an up-down counter. A simple circuit which almost works is as follows: A D-type flip-flop looks for the rising edge of Channel A. If channel B is high, the counter counts up on the rising edge of B. If low, the counter counts down. The problem with this circuit is that if you jiggle the sensor back and forth, you can get channel B to chatter - which the counter will interpret as motion. To fix this problem, you need to count on both the rising and falling edges of B. A circuit using a PIC microcontroller to do this is as follows: PIC18F4620 Channel A RB0 PORTC Channel B RB1 Binary Count PORTD RB0 detects edges on channel A (rising and falling) while RB1 detects edges on channel B (rising en falling). If the optical encoder outputs 500 pulses per rotation (per channel), the PIC will count 2000 edges per rotation (500 rising edges and 500 falling edges on channel A, ditto on channel B). Note that in both of these circuits, no zero position exists. To define where the count should start from. a limit switch is often used. The device is required to move in one direction until the switch is closed. This clears the counter and all positions are taken relative to this zero position. If the counter ever has an error in it, it can only be cleared by returning to this "home" position, closing the limit switch, and setting the count back to zero. Typically, phase quadrature incremental encoders will have 128 to 512 lines per rotation. When placed on the motor of a robotic arm, which is often geared down 127:1 or more, this results in over 16,256 (127x128) pulses per rotation of the robotic arm, or a resolution of degrees. At 1 meter, this is a resolution of 0.38mm - a typical precision of a robotic arm. Absolute Position Encoders: page 6 November 1, 2018

7 An optical encoder with N channels (instead of just one or two) can measure angles to within one part in 2N. For example, if four channels are encoded as follows and the reading from the optical encoder was 1010, you would know the absolute position of the encoder is in region A. Knowing the absolute position can be a real advantage. The price, however, is more connection (N wires are required, along with power and ground) and cost. It is a lot cheaper to make one or two gratings than it is to make N with precise alignments. Tachometers The speed of a motor can be measured using an optical encoder. Here, the frequency of the square wave generated is the measure of the motor's speed. Such sensors are becoming more popular since Optical encoders are readily interfaced to computers, having a binary output, The output is linear with speed, No upper or lower limit exists on the linear region of the optical encoder. A more traditional form of tachometer is a DC servo motor. The dynamics of a DC servo motor are T = K t I a = Js 2 θ + Bsθ V = K t ω where KT is the motor's torque constant, IA is the armature current, J is the motor's inertia, B, the friction, and q the shaft position of the motor. The transfer function from Voltage to shaft position is θ = K t s (Js+B)(Ls+R)+K t 2 V or, going backwards, the transfer function from shaft speed (sq) to voltage is V = Js+B+K t 2 K t sθ At steady-state, the gain is then V = B+K t 2 K t sθ K t sθ Hence, if you spin a motor you produce a voltage. Any motor could be used as a tachometer. Tachometers are specialized motors which have Low inertia to prevent loading the device you're trying to measure, page 7 November 1, 2018

8 Low friction (for the brushes), and likewise Low current capabilities. By duality, you can interchange motors and tachometers. A motor will typically saturate more easily than a tachometer (i.e. have a nonlinear voltage vs. speed relationship) while a tachometer will have a poor torque constant and a low maximum torque. page 8 November 1, 2018

Position Sensors. The Potentiometer.

Position Sensors. The Potentiometer. Position Sensors In this tutorial we will look at a variety of devices which are classed as Input Devices and are therefore called "Sensors" and in particular those sensors which are Positional in nature

More information

Shaft encoders are digital transducers that are used for measuring angular displacements and angular velocities.

Shaft encoders are digital transducers that are used for measuring angular displacements and angular velocities. Shaft Encoders: Shaft encoders are digital transducers that are used for measuring angular displacements and angular velocities. Encoder Types: Shaft encoders can be classified into two categories depending

More information

Massachusetts Institute of Technology. Lab 2: Characterization of Lab System Components

Massachusetts Institute of Technology. Lab 2: Characterization of Lab System Components OBJECTIVES Massachusetts Institute of Technology Department of Mechanical Engineering 2.004 System Dynamics and Control Fall Term 2007 Lab 2: Characterization of Lab System Components In the future lab

More information

Computer Numeric Control

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

More information

Feedback Devices. By John Mazurkiewicz. Baldor Electric

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

More information

As before, the speed resolution is given by the change in speed corresponding to a unity change in the count. Hence, for the pulse-counting method

As before, the speed resolution is given by the change in speed corresponding to a unity change in the count. Hence, for the pulse-counting method Velocity Resolution with Step-Up Gearing: As before, the speed resolution is given by the change in speed corresponding to a unity change in the count. Hence, for the pulse-counting method It follows that

More information

Lab Exercise 9: Stepper and Servo Motors

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

More information

SRV02-Series. Rotary Servo Plant. User Manual

SRV02-Series. Rotary Servo Plant. User Manual SRV02-Series Rotary Servo Plant User Manual SRV02-(E;EHR)(T) Rotary Servo Plant User Manual 1. Description The plant consists of a DC motor in a solid aluminum frame. The motor is equipped with a gearbox.

More information

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

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

More information

Sensors and Sensing Motors, Encoders and Motor Control

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

More information

CS545 Contents XIV. Components of a Robotic System. Signal Processing. Reading Assignment for Next Class

CS545 Contents XIV. Components of a Robotic System. Signal Processing. Reading Assignment for Next Class CS545 Contents XIV Components of a Robotic System Power Supplies and Power Amplifiers Actuators Transmission Sensors Signal Processing Linear filtering Simple filtering Optimal filtering Reading Assignment

More information

Electronic Speed Controls and RC Motors

Electronic Speed Controls and RC Motors Electronic Speed Controls and RC Motors ESC Power Control Modern electronic speed controls regulate the electric power applied to an electric motor by rapidly switching the power on and off using power

More information

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

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

More information

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

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

More information

Actuators. EECS461, Lecture 5, updated September 16,

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

More information

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

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

More information

ME 3200 Mechatronics I Laboratory Lab 8: Angular Position and Velocity Sensors

ME 3200 Mechatronics I Laboratory Lab 8: Angular Position and Velocity Sensors ME 3200 Mechatronics I Laboratory Lab 8: Angular Position and Velocity Sensors In this exercise you will explore the use of the potentiometer and the tachometer as angular position and velocity sensors.

More information

CIS009-2, Mechatronics Signals & Motors

CIS009-2, Mechatronics Signals & Motors CIS009-2, Signals & Motors Bedfordshire 13 th December 2012 Outline 1 2 3 4 5 6 7 8 3 Signals Two types of signals exist: 4 Bedfordshire 52 Analogue signal In an analogue signal voltages and currents continuously

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

Robot Sensors Introduction to Robotics Lecture Handout September 20, H. Harry Asada Massachusetts Institute of Technology

Robot Sensors Introduction to Robotics Lecture Handout September 20, H. Harry Asada Massachusetts Institute of Technology Robot Sensors 2.12 Introduction to Robotics Lecture Handout September 20, 2004 H. Harry Asada Massachusetts Institute of Technology Touch Sensor CCD Camera Vision System Ultrasonic Sensor Photo removed

More information

Automobile Prototype Servo Control

Automobile Prototype Servo Control IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Automobile Prototype Servo Control Mr. Linford William Fernandes Don Bosco

More information

PIC Functionality. General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232

PIC Functionality. General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232 PIC Functionality General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232 General I/O Logic Output light LEDs Trigger solenoids Transfer data Logic Input Monitor

More information

UNIVERSITY OF JORDAN Mechatronics Engineering Department Measurements & Control Lab Experiment no.1 DC Servo Motor

UNIVERSITY OF JORDAN Mechatronics Engineering Department Measurements & Control Lab Experiment no.1 DC Servo Motor UNIVERSITY OF JORDAN Mechatronics Engineering Department Measurements & Control Lab. 0908448 Experiment no.1 DC Servo Motor OBJECTIVES: The aim of this experiment is to provide students with a sound introduction

More information

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

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

More information

PVA Sensor Specifications

PVA Sensor Specifications Position, Velocity, and Acceleration Sensors 24.1 Sections 8.2-8.5 Position, Velocity, and Acceleration (PVA) Sensors PVA Sensor Specifications Good website to start your search for sensor specifications:

More information

Automatic Control Systems 2017 Spring Semester

Automatic Control Systems 2017 Spring Semester Automatic Control Systems 2017 Spring Semester Assignment Set 1 Dr. Kalyana C. Veluvolu Deadline: 11-APR - 16:00 hours @ IT1-815 1) Find the transfer function / for the following system using block diagram

More information

Water Meter Basics Incremental encoders

Water Meter Basics Incremental encoders Water Meter Basics Measuring flow can be accomplished in a number of ways. For residential applications, the two most common approaches are turbine and positive displacement technologies. The turbine meters

More information

DC motor control using arduino

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

More information

ACTUATORS AND SENSORS. Joint actuating system. Servomotors. Sensors

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

More information

2. Experiment s Title: The Linear and Rotary Potentiometer - AMEM 211

2. Experiment s Title: The Linear and Rotary Potentiometer - AMEM 211 2. Experiment s Title: The Linear and Rotary Potentiometer - AMEM 211 I. Objectives On completion of this experiment you will, Understand how linear and rotary potentiometers attach to a system to measure

More information

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

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

More information

Laboratory Tutorial#1

Laboratory Tutorial#1 Laboratory Tutorial#1 1.1. Objective: To become familiar with the modules and how they operate. 1.2. Equipment Required: Following equipment is required to perform above task. Quantity Apparatus 1 OU150A

More information

Modeling Position Tracking System with Stepper Motor

Modeling Position Tracking System with Stepper Motor Modeling Position Tracking System with Stepper Motor Shreeji S. Sheth 1, Pankaj Kr. Gupta 2, J. K. Hota 3 Abstract The position tracking system is used in many applications like pointing an antenna towards

More information

Hobby Servo Tutorial. Introduction. Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial

Hobby Servo Tutorial. Introduction. Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial Hobby Servo Tutorial Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial Introduction Servo motors are an easy way to add motion to your electronics projects. Originally used in remotecontrolled

More information

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

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

More information

Chapter 6: Sensors and Control

Chapter 6: Sensors and Control Chapter 6: Sensors and Control One of the integral parts of a robot that transforms it from a set of motors to a machine that can react to its surroundings are sensors. Sensors are the link in between

More information

Penn State Erie, The Behrend College School of Engineering

Penn State Erie, The Behrend College School of Engineering Penn State Erie, The Behrend College School of Engineering EE BD 327 Signals and Control Lab Spring 2008 Lab 9 Ball and Beam Balancing Problem April 10, 17, 24, 2008 Due: May 1, 2008 Number of Lab Periods:

More information

Data Sheet. AEDB-9340 Series 1250/2500 CPR Commutation Encoder Modules with Codewheel. Features. Description. Applications

Data Sheet. AEDB-9340 Series 1250/2500 CPR Commutation Encoder Modules with Codewheel. Features. Description. Applications AEDB-9340 Series 1250/2500 CPR Commutation Encoder Modules with Codewheel Data Sheet Description The AEDB-9340 optical encoder series are six-channel optical incremental encoder modules with codewheel.

More information

Elements of Haptic Interfaces

Elements of Haptic Interfaces Elements of Haptic Interfaces Katherine J. Kuchenbecker Department of Mechanical Engineering and Applied Mechanics University of Pennsylvania kuchenbe@seas.upenn.edu Course Notes for MEAM 625, University

More information

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

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

More information

Actuator Components 2

Actuator Components 2 Actuator Components 2 Term project midterm review Bearings Seals Sensors 1 Actuator Components Term Project Midterm Review Details of term project are contained in first lecture of the term Should be using

More information

Application Note Using MagAlpha Devices to Replace Optical Encoders

Application Note Using MagAlpha Devices to Replace Optical Encoders Application Note Using MagAlpha Devices to Replace Optical Encoders Introduction The standard way to measure the angular position or speed of a rotating shaft is to use an optical encoder. Optical encoders

More information

Technological Studies. - Applied Electronics (H) TECHNOLOGICAL STUDIES HIGHER APPLIED ELECTRONICS OP-AMPS. Craigmount High School 1

Technological Studies. - Applied Electronics (H) TECHNOLOGICAL STUDIES HIGHER APPLIED ELECTRONICS OP-AMPS. Craigmount High School 1 TECHNOLOGICAL STUDIES HIGHER APPLIED ELECTRONICS OP-AMPS Craigmount High School 1 APPLIED ELECTRONICS Outcome 2 - Design and construct electronic systems, based on operational amplifiers, to meet given

More information

Data Sheet. AEDT-9340 Series High Temperature 115 C 1250/2500 CPR 6-Channel Commutation Encoder. Description. Features.

Data Sheet. AEDT-9340 Series High Temperature 115 C 1250/2500 CPR 6-Channel Commutation Encoder. Description. Features. AEDT-9340 Series High Temperature 115 C 1250/2500 CPR 6-Channel Commutation Encoder Data Sheet Description The AEDT-9340 optical encoder series are high temperature six channel optical incremental encoder

More information

Introduction to MS150

Introduction to MS150 Introduction to MS150 Objective: To become familiar with the modules and how they operate. Equipment Required: Following equipment is required to perform above task. Quantity Apparatus 1 OU150A Operation

More information

Lab 5: Inverted Pendulum PID Control

Lab 5: Inverted Pendulum PID Control Lab 5: Inverted Pendulum PID Control In this lab we will be learning about PID (Proportional Integral Derivative) control and using it to keep an inverted pendulum system upright. We chose an inverted

More information

RC Servo Interface. Figure Bipolar amplifier connected to a large DC motor

RC Servo Interface. Figure Bipolar amplifier connected to a large DC motor The bipolar amplifier is well suited for controlling motors for vehicle propulsion. Figure 12-45 shows a good-sized 24VDC motor that runs nicely on 13.8V from a lead acid battery based power supply. You

More information

Laboratory Assignment 5 Digital Velocity and Position control of a D.C. motor

Laboratory Assignment 5 Digital Velocity and Position control of a D.C. motor Laboratory Assignment 5 Digital Velocity and Position control of a D.C. motor 2.737 Mechatronics Dept. of Mechanical Engineering Massachusetts Institute of Technology Cambridge, MA0239 Topics Motor modeling

More information

Glossary. Glossary Engineering Reference. 35

Glossary. Glossary Engineering Reference. 35 Glossary Engineering Reference Glossary Abbe error The positioning error resulting from angular motion and an offset between the measuring device and the point of interest. Abbe offset The value of the

More information

Sensors and Sensing Motors, Encoders and Motor Control

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

More information

ECET 211 Electric Machines & Controls Lecture 4-2 Motor Control Devices: Lecture 4 Motor Control Devices

ECET 211 Electric Machines & Controls Lecture 4-2 Motor Control Devices: Lecture 4 Motor Control Devices ECET 211 Electric Machines & Controls Lecture 4-2 Motor Control Devices: Part 3. Sensors, Part 4. Actuators Text Book: Electric Motors and Control Systems, by Frank D. Petruzella, published by McGraw Hill,

More information

Motomatic Servo Control

Motomatic Servo Control Exercise 2 Motomatic Servo Control This exercise will take two weeks. You will work in teams of two. 2.0 Prelab Read through this exercise in the lab manual. Using Appendix B as a reference, create a block

More information

9/28/2010. Chapter , The McGraw-Hill Companies, Inc.

9/28/2010. Chapter , The McGraw-Hill Companies, Inc. Chapter 4 Sensors are are used to detect, and often to measure, the magnitude of something. They basically operate by converting mechanical, magnetic, thermal, optical, and chemical variations into electric

More information

MAE106 Laboratory Exercises Lab # 3 Open-loop control of a DC motor

MAE106 Laboratory Exercises Lab # 3 Open-loop control of a DC motor MAE106 Laboratory Exercises Lab # 3 Open-loop control of a DC motor University of California, Irvine Department of Mechanical and Aerospace Engineering Goals To understand and gain insight about how a

More information

Feed-back loop. open-loop. closed-loop

Feed-back loop. open-loop. closed-loop Servos AJLONTECH Overview Servo motors are used for angular positioning, such as in radio control airplanes. They typically have a movement range of 180 deg but can go up to 210 deg. The output shaft of

More information

Continuous Sensors Accuracy Resolution Repeatability Linearity Precision Range

Continuous Sensors Accuracy Resolution Repeatability Linearity Precision Range Continuous Sensors A sensor element measures a process variable: flow rate, temperature, pressure, level, ph, density, composition, etc. Much of the time, the measurement is inferred from a second variable:

More information

7 Lab: Motor control for orientation and angular speed

7 Lab: Motor control for orientation and angular speed Prelab Participation Lab Name: 7 Lab: Motor control for orientation and angular speed Control systems help satellites to track distant stars, airplanes to follow a desired trajectory, cars to travel at

More information

Figure 1.1 Mechatronic system components (p. 3)

Figure 1.1 Mechatronic system components (p. 3) Figure 1.1 Mechatronic system components (p. 3) Example 1.2 Measurement System Digital Thermometer (p. 5) Figure 2.2 Electric circuit terminology (p. 13) Table 2.2 Resistor color band codes (p. 18) Figure

More information

MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits

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

More information

Teaching Mechanical Students to Build and Analyze Motor Controllers

Teaching Mechanical Students to Build and Analyze Motor Controllers Teaching Mechanical Students to Build and Analyze Motor Controllers Hugh Jack, Associate Professor Padnos School of Engineering Grand Valley State University Grand Rapids, MI email: jackh@gvsu.edu Session

More information

Figure 2.1 a. Block diagram representation of a system; b. block diagram representation of an interconnection of subsystems

Figure 2.1 a. Block diagram representation of a system; b. block diagram representation of an interconnection of subsystems 1 Figure 2.1 a. Block diagram representation of a system; b. block diagram representation of an interconnection of subsystems 2 Table 2.1 Laplace transform table 3 Table 2.2 Laplace transform theorems

More information

Brushed DC Motor Microcontroller PWM Speed Control with Optical Encoder and H-Bridge

Brushed DC Motor Microcontroller PWM Speed Control with Optical Encoder and H-Bridge Brushed DC Motor Microcontroller PWM Speed Control with Optical Encoder and H-Bridge L298 Full H-Bridge HEF4071B OR Gate Brushed DC Motor with Optical Encoder & Load Inertia Flyback Diodes Arduino Microcontroller

More information

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

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

More information

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

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

More information

Data Sheet. AEDS-9240 Series 360/720 CPR Commutation Encoder Module. Features. Description. Applications

Data Sheet. AEDS-9240 Series 360/720 CPR Commutation Encoder Module. Features. Description. Applications AEDS-9240 Series 360/720 CPR Commutation Encoder Module Data Sheet Description The AEDS-9240 optical encoder is a six channel optical incremental encoder module. When used with a codewheel, this encoder

More information

Lab 12 Microwave Optics.

Lab 12 Microwave Optics. b Lab 12 Microwave Optics. CAUTION: The output power of the microwave transmitter is well below standard safety levels. Nevertheless, do not look directly into the microwave horn at close range when the

More information

Categories of Robots and their Hardware Components. Click to add Text Martin Jagersand

Categories of Robots and their Hardware Components. Click to add Text Martin Jagersand Categories of Robots and their Hardware Components Click to add Text Martin Jagersand Click to add Text Robot? Click to add Text Robot? How do we categorize these robots? What they can do? Most robots

More information

Industrial Sensors. Proximity Mechanical Optical Inductive/Capacitive. Position/Velocity Potentiometer LVDT Encoders Tachogenerator

Industrial Sensors. Proximity Mechanical Optical Inductive/Capacitive. Position/Velocity Potentiometer LVDT Encoders Tachogenerator Proximity Mechanical Optical Inductive/Capacitive Position/Velocity Potentiometer LVDT Encoders Tachogenerator Force/Pressure Vibration/acceleration Industrial Sensors 1 Definitions Accuracy: The agreement

More information

Lecture 5. In The Name of Allah. Instrumentation. Dr. Ali Karimpour Associate Professor Ferdowsi University of Mashhad

Lecture 5. In The Name of Allah. Instrumentation. Dr. Ali Karimpour Associate Professor Ferdowsi University of Mashhad In The Name of Allah Instrumentation Dr. Ali Karimpour Associate Professor Ferdowsi University of Mashhad Position Sensors Topics to be covered include: v v v v v v Introduction Resistive Displacement

More information

High Performances. Stainless steel 5% - 95% (non condensing) Vibrations (random, 2 khz) Shocks (18 ms, ½ sine) 4.1 ±0.1 Ø ±0.03 Ø 7.4 ±0.

High Performances. Stainless steel 5% - 95% (non condensing) Vibrations (random, 2 khz) Shocks (18 ms, ½ sine) 4.1 ±0.1 Ø ±0.03 Ø 7.4 ±0. C1516 SINGLE TURN - CONDUCTIVE POLYMER PRECISION POTENTIOMETER PRESENTATION Conductive Polymer The rotary potentiometer C1516 is provided with a bearingless design. This pancake interface, combined with

More information

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

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

More information

DynaDrive INFORMATION MANUAL SDFP(S)

DynaDrive INFORMATION MANUAL SDFP(S) DynaDrive INFORMATION MANUAL SDFP(S)1525-17 SERVO DYNAMICS CORP. 28231 Avenue Crocker, Santa Clarita, CA. 91355 (818) 700-8600 Fax (818) 718-6719 www.servodynamics.com INDEX Page INTRODUCTION 2 ELECTRICAL

More information

Servo Controlled Automatic Voltage Stabilizer with Automatic High & Low Cut-Off Provision

Servo Controlled Automatic Voltage Stabilizer with Automatic High & Low Cut-Off Provision Servo Controlled Automatic Voltage Stabilizer with Automatic High & Low Cut-Off Provision Prof. Rutuja Bhat Warbhe, ME Shrivatsa Shandilya Gaurav Kumar Tripathi Ashish Kumar Rohit Abstract: This is a stabilizer

More information

Sensors and Actuators

Sensors and Actuators Marcello Restelli Dipartimento di Elettronica e Informazione Politecnico di Milano email: restelli@elet.polimi.it tel: 02-2399-4015 Sensors and Actuators Robotics for Computer Engineering students A.A.

More information

09-2 EE 4770 Lecture Transparency. Formatted 12:49, 19 February 1998 from lsli

09-2 EE 4770 Lecture Transparency. Formatted 12:49, 19 February 1998 from lsli 09-1 09-1 Displacement and Proximity Displacement transducers measure the location of an object. Proximity transducers determine when an object is near. Criteria Used in Selection of Transducer How much

More information

Lab 9. Speed Control of a D.C. motor. Sensing Motor Speed (Tachometer Frequency Method)

Lab 9. Speed Control of a D.C. motor. Sensing Motor Speed (Tachometer Frequency Method) Lab 9. Speed Control of a D.C. motor Sensing Motor Speed (Tachometer Frequency Method) Motor Speed Control Project 1. Generate PWM waveform 2. Amplify the waveform to drive the motor 3. Measure motor speed

More information

CNC Machine Feedback Devices

CNC Machine Feedback Devices CNC Machine Feedback Devices Operational Features of CNC Machine A CNC control system includes a velocity loop within an axis drive system and a position loop external to the axis drive system. Lecture

More information

DC SERVO MOTOR CONTROL SYSTEM

DC SERVO MOTOR CONTROL SYSTEM DC SERVO MOTOR CONTROL SYSTEM MODEL NO:(PEC - 00CE) User Manual Version 2.0 Technical Clarification /Suggestion : / Technical Support Division, Vi Microsystems Pvt. Ltd., Plot No :75,Electronics Estate,

More information

User Interface Engineering FS 2013

User Interface Engineering FS 2013 User Interface Engineering FS 2013 Input Fundamentals 23.09.2013 1 Last Week Brief Overview of HCI as a discipline History of the UI Product perspective Research perspective Overview of own research as

More information

BME/ISE 3511 Bioelectronics I - Laboratory Exercise #4. Variable Resistors (Potentiometers and Rheostats)

BME/ISE 3511 Bioelectronics I - Laboratory Exercise #4. Variable Resistors (Potentiometers and Rheostats) BME/ISE 3511 Bioelectronics I - Laboratory Exercise #4 Variable Resistors (Potentiometers and Rheostats) Introduction: Variable resistors are known by several names (potentiometer, rheostat, variable resistor,

More information

Electronic Instrumentation and Measurements

Electronic Instrumentation and Measurements Electronic Instrumentation and Measurements A fundamental part of many electromechanical systems is a measurement system that composed of four basic parts: Sensors Signal Conditioning Analog-to-Digital-Conversion

More information

Single-phase or three phase AC220V (-15% ~ +10%) 50 ~ 60Hz

Single-phase or three phase AC220V (-15% ~ +10%) 50 ~ 60Hz KT270-H Servo Drive Features: The use of DSP ( digital signal processor ) chip, greatly accelerating the speed of data acquisition and processing, the motor running with good performance. Application of

More information

EL6483: Sensors and Actuators

EL6483: Sensors and Actuators EL6483: Sensors and Actuators EL6483 Spring 2016 EL6483 EL6483: Sensors and Actuators Spring 2016 1 / 15 Sensors Sensors measure signals from the external environment. Various types of sensors Variety

More information

New Long Stroke Vibration Shaker Design using Linear Motor Technology

New Long Stroke Vibration Shaker Design using Linear Motor Technology New Long Stroke Vibration Shaker Design using Linear Motor Technology The Modal Shop, Inc. A PCB Group Company Patrick Timmons Calibration Systems Engineer Mark Schiefer Senior Scientist Long Stroke Shaker

More information

Technical Cognitive Systems

Technical Cognitive Systems Part XII Actuators 3 Outline Robot Bases Hardware Components Robot Arms 4 Outline Robot Bases Hardware Components Robot Arms 5 (Wheeled) Locomotion Goal: Bring the robot to a desired pose (x, y, θ): (position

More information

AE2610 Introduction to Experimental Methods in Aerospace

AE2610 Introduction to Experimental Methods in Aerospace AE2610 Introduction to Experimental Methods in Aerospace Lab #3: Dynamic Response of a 3-DOF Helicopter Model C.V. Di Leo 1 Lecture/Lab learning objectives Familiarization with the characteristics of dynamical

More information

Data Sheet. HEDL-65xx, HEDM-65xx, HEDS-65xx Series Large Diameter (56 mm), Housed Two and Three Channel Optical Encoders. Description.

Data Sheet. HEDL-65xx, HEDM-65xx, HEDS-65xx Series Large Diameter (56 mm), Housed Two and Three Channel Optical Encoders. Description. HEDL-65xx, HEDM-65xx, HEDS-65xx Series Large Diameter (56 mm), Housed Two and Three Channel Optical Encoders Data Sheet Description The HEDS-65xx/HEDL-65xx are high performance two and three channel optical

More information

Speed Feedback and Current Control in PWM DC Motor Drives

Speed Feedback and Current Control in PWM DC Motor Drives Exercise 3 Speed Feedback and Current Control in PWM DC Motor Drives EXERCISE OBJECTIVE When you have completed this exercise, you will know how to improve the regulation of speed in PWM dc motor drives.

More information

JUNE 2014 Solved Question Paper

JUNE 2014 Solved Question Paper JUNE 2014 Solved Question Paper 1 a: Explain with examples open loop and closed loop control systems. List merits and demerits of both. Jun. 2014, 10 Marks Open & Closed Loop System - Advantages & Disadvantages

More information

Data Sheet. AEDx-8xxx-xxx 2- or 3-Channel Incremental Encoder Kit with Codewheel. Description. Features. Assembly View. Housing.

Data Sheet. AEDx-8xxx-xxx 2- or 3-Channel Incremental Encoder Kit with Codewheel. Description. Features. Assembly View. Housing. AEDx-8xxx-xxx 2- or 3-Channel Incremental Encoder Kit with Codewheel Data Sheet Description The AEDx-8xxx comes in an option of two-channel or three-channel optical incremental encoder kit with codewheel

More information

Servo Tuning. Dr. Rohan Munasinghe Department. of Electronic and Telecommunication Engineering University of Moratuwa. Thanks to Dr.

Servo Tuning. Dr. Rohan Munasinghe Department. of Electronic and Telecommunication Engineering University of Moratuwa. Thanks to Dr. Servo Tuning Dr. Rohan Munasinghe Department. of Electronic and Telecommunication Engineering University of Moratuwa Thanks to Dr. Jacob Tal Overview Closed Loop Motion Control System Brain Brain Muscle

More information

Comparative analysis of speed decoding algorithms for rotary incremental encoders

Comparative analysis of speed decoding algorithms for rotary incremental encoders Ahmad Arslan Comparative analysis of speed decoding algorithms for rotary incremental encoders School of Electrical Engineering Thesis submitted for examination for the degree of Master of Science in Technology.

More information

Brushed DC Motor System

Brushed DC Motor System Brushed DC Motor System Pittman DC Servo Motor Schematic Brushed DC Motor Brushed DC Motor System K. Craig 1 Topics Brushed DC Motor Physical & Mathematical Modeling Hardware Parameters Model Hardware

More information

Controlling and modeling of an automated guided vehicle

Controlling and modeling of an automated guided vehicle Controlling and modeling of an automated guided vehicle Daniel Antal, Ph.D. student Robert Bosch department of mechatronics University of Miskolc Miskolc, Hungary antal.daniel@uni-miskolc.hu Tamás Szabó,

More information

Electronic Systems - B1 23/04/ /04/ SisElnB DDC. Chapter 2

Electronic Systems - B1 23/04/ /04/ SisElnB DDC. Chapter 2 Politecnico di Torino - ICT school Goup B - goals ELECTRONIC SYSTEMS B INFORMATION PROCESSING B.1 Systems, sensors, and actuators» System block diagram» Analog and digital signals» Examples of sensors»

More information

ELECTRONIC SYSTEMS. Introduction. B1 - Sensors and actuators. Introduction

ELECTRONIC SYSTEMS. Introduction. B1 - Sensors and actuators. Introduction Politecnico di Torino - ICT school Goup B - goals ELECTRONIC SYSTEMS B INFORMATION PROCESSING B.1 Systems, sensors, and actuators» System block diagram» Analog and digital signals» Examples of sensors»

More information

C0104 PRESENTATION. DIMENSIONS (in mm) R 6.05 Ø R 8.45 Ø

C0104 PRESENTATION. DIMENSIONS (in mm) R 6.05 Ø R 8.45 Ø C0104 SINGLE TURN/PANCAKE PRECISION POTENTIOMETER PRESENTATION Conductive Polymer The rotary potentiometer C0104 is provided with a bearingless design. This pancake interface, combined with its small size

More information

UNIT 2: DC MOTOR POSITION CONTROL

UNIT 2: DC MOTOR POSITION CONTROL UNIT 2: DC MOTOR POSITION CONTROL 2.1 INTRODUCTION This experiment aims to show the mathematical model of a DC motor and how to determine the physical parameters of a DC motor model. Once the model is

More information

SCS Automation and Control Ltd

SCS Automation and Control Ltd 1 SCS Automation and Control Ltd Dead band / Camera Position controller SCS Automation and Control Ltd Automation Centre 156 Stanley Green Road Poole Dorset England BH15 3AH 2 1) INTRODUCTION ATTENTION

More information

Sfwr Eng/TRON 3DX4, Lab 4 Introduction to Computer Based Control

Sfwr Eng/TRON 3DX4, Lab 4 Introduction to Computer Based Control Announcements: Sfwr Eng/TRON 3DX4, Lab 4 Introduction to Computer Based Control First lab Week of: Mar. 10, 014 Demo Due Week of: End of Lab Period, Mar. 17, 014 Assignment #4 posted: Tue Mar. 0, 014 This

More information