Introduction to Robotics

Size: px
Start display at page:

Download "Introduction to Robotics"

Transcription

1 Jianwei Zhang Universität Hamburg Fakultät für Mathematik, Informatik und Naturwissenschaften Technische Aspekte Multimodaler Systeme 14. June 2013 J. Zhang 1

2 Robot Control Universität Hamburg Outline Robot Control Introduction Classification of Robot Arm controllers Joint Controllers of PUMA-Robots Internal Sensors of Robots Control system of a robot Linear Control for Trajectory Tracking Model-Based Control for Trajectory Tracking Control in Cartesian Space Hybrid Control of Force and Position J. Zhang 2

3 Robot Control - Introduction Some definitions A controller: influences independently one or multiple physical values to meet a control variable in order to reduce disturbances. Within a control circuit, the reference value is compared to the actual value. The controller tries to minimize the control deviation. J. Zhang 3

4 Robot Control - Introduction Some definitions A System: is a physical or technical construct, that transforms an input signal (stimulus) into a different signal, the output signal (response) Symbolically a system can be illustrated as a block with marked signals, where the direction of the effect of signals is expressed with arrows. J. Zhang 4

5 Robot Control - Introduction Input- and Output-values input- and output-values change with time and are expressed as functions of time u(t) and v(t) (dynamic system). real-world dynamic technical systems principally have an infinite number of possible input- and output-values the desired application decides, which of those values are relevant for the description of the dynamic system behavior J. Zhang 5

6 Robot Control - Introduction Control Task Given: a dynamic system (controlled system) values to be influenced influence to the whole system (input-, control-value) measurable value system-monitoring, -analysis (output-, controlled-variables) control task control-values should be kept constant or should follow a reference value influence of disturbance values should be minimized controller design a controller has to be implemented, that uses the measurement values and chooses the control values the way, that the controlled system (controlled-variables) fulfills its task. J. Zhang 6

7 Universität Hamburg Robot Control - Introduction Development of Control Engineering - Timeline 1788 J. Watt: engine speed governor 1877 J. Routh: differential equation for the description of control processes 1885 A. Hurwitz: stability studies 1932 A. Nyquist: frequency response analysis 1940 W. Oppelt: frequency response analysis, Control Engineering becomes an independent discipline 1945 H. Bode discipline new methods for frequency response analysis 1950 N. Wiener statistical methods 1956 L. Pontrjagin: optimal control theory, maximum principle 1957 R. Bellmann: dynamic programming J. Zhang 7

8 Robot Control - Introduction Development of Control Engineering - Timeline 1960 direct digital control 1965 L. Zadeh Fuzzy-Logic 1972 Microcomputer use 1975 Control systems for automation 1980 digital device technology 1985 Fuzzy-controller for industrial use 1995 artificial neuronal networks for industrial use J. Zhang 8

9 Robot Control - Classification of Robot Arm controllers Classification of Robot Arm controllers As a problem of trajectory-tracking: control in joint-space: PID, plus model-based. control in Cartesian-space: joint-based, using kinematics or using inverse Jacobian calculation. Adaptive Control: model-based adaptive control, self-tuning. controller properties (structure and parameters) adapt to the time-invariant or unknown system-behavior the basic control circle is superimposed by an adaptive system the process of adaption consists of three phases: identification, decision-process and modification Hybrid control of force and position: (current research topic) J. Zhang 9

10 Robot Control - Classification of Robot Arm controllers Architecture of the Control-System of PUMA-Robots - I the whole system is structured as a two-level hierarchy: the DEC LSI-11 sends new joint position values each 28 ms to the controller interface the distance to the actual value is divided equally into 32 (possible also 2 3 = 8, 2 4 = 16, 2 6 = 64,... ) increments and sent to the joint controllers. J. Zhang 10

11 Robot Control - Joint Controllers of PUMA-Robots Joint Controllers of PUMA-Robots The joint control loop operates in a ms cycle. encoders are used as position sensors potentiometer are used for rough estimation of position (only PUMA-560) no dedicated speedometer, joint velocity is calculate evaluating the difference of joint positions over time. J. Zhang 11

12 Robot Control - Joint Controllers of PUMA-Robots Optical Incremental Encoders An optical encoder reads the lines The disc is mounted at the shaft of the joint motor. (ratio 1:1 for the PUMA-robot. Considering the transmission the accuracy is Rad/Bit) one special line is marked as the zero-position J. Zhang 12

13 Robot Control - Internal Sensors of Robots Internal Sensors of Robots These sensors are placed inside of the robot and monitor the internal state of the robot, e.g. the current position and velocity of each joint. position measurement systems: potentiometers, incremental encoders, absolute encoder, resolver,... velocity measurement systems: To monitor the velocity at rotary joints, speedometers are used. In addition to that, velocity can be indirectly deduced from position information J. Zhang 13

14 Robot Control - Internal Sensors of Robots Working principle of an optical absolute encoder J. Zhang 14

15 Robot Control - Internal Sensors of Robots Working principle of a resolvers ASM Robotik J. Zhang 15

16 Robot Control - Internal Sensors of Robots Sensors: Classification Hierarchy J. Zhang 16

17 Robot Control - Control system of a robot Control system of a robot J. Zhang 17

18 Robot Control - Control system of a robot Control system of a robot Target Values: Θ d (t), Θ d (t), Θ d (t). Magnitude of error: E = Θ d Θ, Ė = Θ d Θ Outpot value: Θ(t), Θ(t). Control Value: τ. J. Zhang 18

19 Robot Control - Control system of a robot Circuit of a DC-motor The circuit can be described with a differential equation of order one: l a i a + r a i a = v a k e θ m J. Zhang 19

20 Robot Control - Control system of a robot Connection between a motor and a joint Let η be the transmission ratio, then: τ m = (I m + I /η 2 ) θ m + (b m + b/η 2 ) θ m where τ m = k m i a, I m and I are the inertia of the rotor (inside motor) and the load,b m and b are factors for friction. Expressed with joint variables: τ = (I + η 2 I m ) θ + (b + η 2 b m ) θ J. Zhang 20

21 Robot Control - Linear Control for Trajectory Tracking Linear Control for Trajectory Tracking f = ẍ d + k v ė + k p e + k i edt (1) (1) is called the principle of PID-control. J. Zhang 21

22 Robot Control - Linear Control for Trajectory Tracking P-, I- and D-controller P-Controller (Proportional Controller): τ(t) = k p e(t). The amplification factor k p defines the sensitivity. I-Controller (Integrator): τ(t) = k i t t 0 e(t )dt. Long term errors will sum up. D-Controller (Differentiator): τ(t) = k v ė(t). This controller is sensitive to changes in the deviation. Combined PID-Controller: τ(t) = k p e(t) + k v ė(t) + k i t t 0 e(t )dt J. Zhang 22

23 Robot Control - Model-Based Control for Trajectory Tracking Model-Based Control for Trajectory Tracking The dynamic equation: τ = M(Θ) Θ + V (Θ, Θ) + G(Θ) where M(Θ) is the position-dependent n n-mass matrix of the manipulator, V (Θ, Θ) is a n 1-vector of centripetal and Coriolis factors, and G(Θ) is a complex function of Θ, the position of all joints of the manipulator. J. Zhang 23

24 Robot Control - Model-Based Control for Trajectory Tracking How can robots be controller in a better way? Forschung: model-based control, adaptive control Control systems for industrial robots: PID-control + gravity compensation: τ = Θ d + K v Ė + K p E + K i Edt + Ĝ(Θ) J. Zhang 24

25 Robot Control - Control in Cartesian Space Control in Cartesian Space - Method I Joint-based control with Cartesian trajectory input: J. Zhang 25

26 Robot Control - Control in Cartesian Space Control in Cartesian Space - Method II Cartesian control via calculation of kinematics: J. Zhang 26

27 Robot Control - Control in Cartesian Space Control in Cartesian Space - Verfahren III Cartesian control via calculation of inverse Jacobian: J. Zhang 27

28 Robot Control - Hybrid Control of Force and Position Hybrid Control of Force and Position For some tasks both position and force need to be controlled for the end-effector: assembly, grinding, opening and closing doors, crank winding... J. Zhang 28

29 Robot Control - Hybrid Control of Force and Position Hybrid Control of Force and Position A method for force control: Two feedback loops for separate control of position and force. J. Zhang 29

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

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

The Haptic Impendance Control through Virtual Environment Force Compensation

The Haptic Impendance Control through Virtual Environment Force Compensation The Haptic Impendance Control through Virtual Environment Force Compensation OCTAVIAN MELINTE Robotics and Mechatronics Department Institute of Solid Mechanicsof the Romanian Academy ROMANIA octavian.melinte@yahoo.com

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

Kalman Filters. Jonas Haeling and Matthis Hauschild

Kalman Filters. Jonas Haeling and Matthis Hauschild Jonas Haeling and Matthis Hauschild Universität Hamburg Fakultät für Mathematik, Informatik und Naturwissenschaften Technische Aspekte Multimodaler Systeme November 9, 2014 J. Haeling and M. Hauschild

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

Biomedical Control Systems. Lecture#01

Biomedical Control Systems. Lecture#01 1 Biomedical Control Systems Lecture#01 2 Text Books Modern Control Engineering, 5 th Edition; Ogata. Feedback & Control Systems, 2 nd edition; Schaum s outline, Joseph J, Allen R. Control Systems Engineering,

More information

DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY EEE 402 : CONTROL SYSTEMS SESSIONAL

DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY EEE 402 : CONTROL SYSTEMS SESSIONAL DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY EEE 402 : CONTROL SYSTEMS SESSIONAL Experiment No. 1(a) : Modeling of physical systems and study of

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

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

Glossary of terms. Short explanation

Glossary of terms. Short explanation Glossary Concept Module. Video Short explanation Abstraction 2.4 Capturing the essence of the behavior of interest (getting a model or representation) Action in the control Derivative 4.2 The control signal

More information

Nonlinear Adaptive Bilateral Control of Teleoperation Systems with Uncertain Dynamics and Kinematics

Nonlinear Adaptive Bilateral Control of Teleoperation Systems with Uncertain Dynamics and Kinematics Nonlinear Adaptive Bilateral Control of Teleoperation Systems with Uncertain Dynamics and Kinematics X. Liu, M. Tavakoli, and Q. Huang Abstract Research so far on adaptive bilateral control of master-slave

More information

Experiment 9. PID Controller

Experiment 9. PID Controller Experiment 9 PID Controller Objective: - To be familiar with PID controller. - Noting how changing PID controller parameter effect on system response. Theory: The basic function of a controller is to execute

More information

Step vs. Servo Selecting the Best

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

More information

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

Control Design for Servomechanisms July 2005, Glasgow Detailed Training Course Agenda

Control Design for Servomechanisms July 2005, Glasgow Detailed Training Course Agenda Control Design for Servomechanisms 12 14 July 2005, Glasgow Detailed Training Course Agenda DAY 1 INTRODUCTION TO SYSTEMS AND MODELLING 9.00 Introduction The Need For Control - What Is Control? - Feedback

More information

Fundamentals of Industrial Control

Fundamentals of Industrial Control Fundamentals of Industrial Control 2nd Edition D. A. Coggan, Editor Practical Guides for Measurement and Control Preface ix Contributors xi Chapter 1 Sensors 1 Applications of Instrumentation 1 Introduction

More information

IVR: Introduction to Control

IVR: Introduction to Control IVR: Introduction to Control OVERVIEW Control systems Transformations Simple control algorithms History of control Centrifugal governor M. Boulton and J. Watt (1788) J. C. Maxwell (1868) On Governors.

More information

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

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

More information

Optimized Tuning of PI Controller for a Spherical Tank Level System Using New Modified Repetitive Control Strategy

Optimized Tuning of PI Controller for a Spherical Tank Level System Using New Modified Repetitive Control Strategy International Journal of Engineering Research and Development e-issn: 2278-67X, p-issn: 2278-8X, www.ijerd.com Volume 3, Issue 6 (September 212), PP. 74-82 Optimized Tuning of PI Controller for a Spherical

More information

Design of a Simulink-Based Control Workstation for Mobile Wheeled Vehicles with Variable-Velocity Differential Motor Drives

Design of a Simulink-Based Control Workstation for Mobile Wheeled Vehicles with Variable-Velocity Differential Motor Drives Design of a Simulink-Based Control Workstation for Mobile Wheeled Vehicles with Variable-Velocity Differential Motor Drives Kevin Block, Timothy De Pasion, Benjamin Roos, Alexander Schmidt Gary Dempsey

More information

ANNA UNIVERSITY :: CHENNAI MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS

ANNA UNIVERSITY :: CHENNAI MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS ANNA UNIVERSITY :: CHENNAI - 600 025 MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS Time: 3hrs Max Marks: 100 Answer all Questions PART - A (10

More information

A Searching Analyses for Best PID Tuning Method for CNC Servo Drive

A Searching Analyses for Best PID Tuning Method for CNC Servo Drive International Journal of Science and Engineering Investigations vol. 7, issue 76, May 2018 ISSN: 2251-8843 A Searching Analyses for Best PID Tuning Method for CNC Servo Drive Ferit Idrizi FMI-UP Prishtine,

More information

Mekanisme Robot - 3 SKS (Robot Mechanism)

Mekanisme Robot - 3 SKS (Robot Mechanism) Mekanisme Robot - 3 SKS (Robot Mechanism) Latifah Nurahmi, PhD!! latifah.nurahmi@gmail.com!! C.250 First Term - 2016/2017 Velocity Rate of change of position and orientation with respect to time Linear

More information

A Do-and-See Approach for Learning Mechatronics Concepts

A Do-and-See Approach for Learning Mechatronics Concepts Proceedings of the 5 th International Conference of Control, Dynamic Systems, and Robotics (CDSR'18) Niagara Falls, Canada June 7 9, 2018 Paper No. 124 DOI: 10.11159/cdsr18.124 A Do-and-See Approach for

More information

DYNAMICS and CONTROL

DYNAMICS and CONTROL DYNAMICS and CONTROL Module IV(I) IV(III) Systems Design Complex system Presented by Pedro Albertos Professor of Systems Engineering and - UPV DYNAMICS & CONTROL Modules: Examples of systems and signals

More information

On Observer-based Passive Robust Impedance Control of a Robot Manipulator

On Observer-based Passive Robust Impedance Control of a Robot Manipulator Journal of Mechanics Engineering and Automation 7 (2017) 71-78 doi: 10.17265/2159-5275/2017.02.003 D DAVID PUBLISHING On Observer-based Passive Robust Impedance Control of a Robot Manipulator CAO Sheng,

More information

Motion Control of a Three Active Wheeled Mobile Robot and Collision-Free Human Following Navigation in Outdoor Environment

Motion Control of a Three Active Wheeled Mobile Robot and Collision-Free Human Following Navigation in Outdoor Environment Proceedings of the International MultiConference of Engineers and Computer Scientists 2016 Vol I,, March 16-18, 2016, Hong Kong Motion Control of a Three Active Wheeled Mobile Robot and Collision-Free

More information

MAE106 Laboratory Exercises Lab # 5 - PD Control of DC motor position

MAE106 Laboratory Exercises Lab # 5 - PD Control of DC motor position MAE106 Laboratory Exercises Lab # 5 - PD Control of DC motor position University of California, Irvine Department of Mechanical and Aerospace Engineering Goals Understand how to implement and tune a PD

More information

BSNL TTA Question Paper Control Systems Specialization 2007

BSNL TTA Question Paper Control Systems Specialization 2007 BSNL TTA Question Paper Control Systems Specialization 2007 1. An open loop control system has its (a) control action independent of the output or desired quantity (b) controlling action, depending upon

More information

Introduction to Measurement Systems

Introduction to Measurement Systems MFE 3004 Mechatronics I Measurement Systems Dr Conrad Pace Page 4.1 Introduction to Measurement Systems Role of Measurement Systems Detection receive an external stimulus (ex. Displacement) Selection measurement

More information

FUNDAMENTALS ROBOT TECHNOLOGY. An Introduction to Industrial Robots, T eleoperators and Robot Vehicles. D J Todd. Kogan Page

FUNDAMENTALS ROBOT TECHNOLOGY. An Introduction to Industrial Robots, T eleoperators and Robot Vehicles. D J Todd. Kogan Page FUNDAMENTALS of ROBOT TECHNOLOGY An Introduction to Industrial Robots, T eleoperators and Robot Vehicles D J Todd &\ Kogan Page First published in 1986 by Kogan Page Ltd 120 Pentonville Road, London Nl

More information

Application of Gain Scheduling Technique to a 6-Axis Articulated Robot using LabVIEW R

Application of Gain Scheduling Technique to a 6-Axis Articulated Robot using LabVIEW R Application of Gain Scheduling Technique to a 6-Axis Articulated Robot using LabVIEW R ManSu Kim #,1, WonJee Chung #,2, SeungWon Jeong #,3 # School of Mechatronics, Changwon National University Changwon,

More information

The control of the ball juggler

The control of the ball juggler 18th Telecommunications forum TELFOR 010 Serbia, Belgrade, November 3-5, 010. The control of the ball juggler S.Triaška, M.Žalman Abstract The ball juggler is a mechanical machinery designed to demonstrate

More information

CYBERPHYSICAL LABORATORY

CYBERPHYSICAL LABORATORY 5/23/2018 Andrea Calanca - Altair Lab 1 CYBERPHYSICAL LABORATORY Andrea Calanca 5/23/2018 Andrea Calanca - Altair Lab 2 The Practical Guy It works! But I don t know why. 5/23/2018 Andrea Calanca - Altair

More information

Chapter 1: Introduction to Control Systems Objectives

Chapter 1: Introduction to Control Systems Objectives Chapter 1: Introduction to Control Systems Objectives In this chapter we describe a general process for designing a control system. A control system consisting of interconnected components is designed

More information

Digital Control of MS-150 Modular Position Servo System

Digital Control of MS-150 Modular Position Servo System IEEE NECEC Nov. 8, 2007 St. John's NL 1 Digital Control of MS-150 Modular Position Servo System Farid Arvani, Syeda N. Ferdaus, M. Tariq Iqbal Faculty of Engineering, Memorial University of Newfoundland

More information

EE 482 : CONTROL SYSTEMS Lab Manual

EE 482 : CONTROL SYSTEMS Lab Manual University of Bahrain College of Engineering Dept. of Electrical and Electronics Engineering EE 482 : CONTROL SYSTEMS Lab Manual Dr. Ebrahim Al-Gallaf Assistance Professor of Intelligent Control and Robotics

More information

Robust Haptic Teleoperation of a Mobile Manipulation Platform

Robust Haptic Teleoperation of a Mobile Manipulation Platform Robust Haptic Teleoperation of a Mobile Manipulation Platform Jaeheung Park and Oussama Khatib Stanford AI Laboratory Stanford University http://robotics.stanford.edu Abstract. This paper presents a new

More information

Robot Task-Level Programming Language and Simulation

Robot Task-Level Programming Language and Simulation Robot Task-Level Programming Language and Simulation M. Samaka Abstract This paper presents the development of a software application for Off-line robot task programming and simulation. Such application

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

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

Embedded Control Project -Iterative learning control for

Embedded Control Project -Iterative learning control for Embedded Control Project -Iterative learning control for Author : Axel Andersson Hariprasad Govindharajan Shahrzad Khodayari Project Guide : Alexander Medvedev Program : Embedded Systems and Engineering

More information

Phys Lecture 5. Motors

Phys Lecture 5. Motors Phys 253 Lecture 5 1. Get ready for Design Reviews Next Week!! 2. Comments on Motor Selection 3. Introduction to Control (Lab 5 Servo Motor) Different performance specifications for all 4 DC motors supplied

More information

1.What is frequency response? A frequency responses the steady state response of a system when the input to the system is a sinusoidal signal.

1.What is frequency response? A frequency responses the steady state response of a system when the input to the system is a sinusoidal signal. Control Systems (EC 334) 1.What is frequency response? A frequency responses the steady state response of a system when the input to the system is a sinusoidal signal. 2.List out the different frequency

More information

Robust Control Design for Rotary Inverted Pendulum Balance

Robust Control Design for Rotary Inverted Pendulum Balance Indian Journal of Science and Technology, Vol 9(28), DOI: 1.17485/ijst/216/v9i28/9387, July 216 ISSN (Print) : 974-6846 ISSN (Online) : 974-5645 Robust Control Design for Rotary Inverted Pendulum Balance

More information

Robotics 2 Collision detection and robot reaction

Robotics 2 Collision detection and robot reaction Robotics 2 Collision detection and robot reaction Prof. Alessandro De Luca Handling of robot collisions! safety in physical Human-Robot Interaction (phri)! robot dependability (i.e., beyond reliability)!

More information

NEURAL NETWORK BASED LOAD FREQUENCY CONTROL FOR RESTRUCTURING POWER INDUSTRY

NEURAL NETWORK BASED LOAD FREQUENCY CONTROL FOR RESTRUCTURING POWER INDUSTRY Nigerian Journal of Technology (NIJOTECH) Vol. 31, No. 1, March, 2012, pp. 40 47. Copyright c 2012 Faculty of Engineering, University of Nigeria. ISSN 1115-8443 NEURAL NETWORK BASED LOAD FREQUENCY CONTROL

More information

Tracking Position Control of AC Servo Motor Using Enhanced Iterative Learning Control Strategy

Tracking Position Control of AC Servo Motor Using Enhanced Iterative Learning Control Strategy International Journal of Engineering Research and Development e-issn: 2278-67X, p-issn: 2278-8X, www.ijerd.com Volume 3, Issue 6 (September 212), PP. 26-33 Tracking Position Control of AC Servo Motor Using

More information

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

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

More information

Welcome to SENG 480B / CSC 485A / CSC 586A Self-Adaptive and Self-Managing Systems

Welcome to SENG 480B / CSC 485A / CSC 586A Self-Adaptive and Self-Managing Systems Welcome to SENG 480B / CSC 485A / CSC 586A Self-Adaptive and Self-Managing Systems Dr. Hausi A. Müller Department of Computer Science University of Victoria http://courses.seng.uvic.ca/courses/2015/summer/seng/480a

More information

Available online at ScienceDirect. Procedia Engineering 168 (2016 ) th Eurosensors Conference, EUROSENSORS 2016

Available online at   ScienceDirect. Procedia Engineering 168 (2016 ) th Eurosensors Conference, EUROSENSORS 2016 Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 168 (216 ) 1671 1675 3th Eurosensors Conference, EUROSENSORS 216 Embedded control of a PMSM servo drive without current measurements

More information

REDUCING THE VIBRATIONS OF AN UNBALANCED ROTARY ENGINE BY ACTIVE FORCE CONTROL. M. Mohebbi 1*, M. Hashemi 1

REDUCING THE VIBRATIONS OF AN UNBALANCED ROTARY ENGINE BY ACTIVE FORCE CONTROL. M. Mohebbi 1*, M. Hashemi 1 International Journal of Technology (2016) 1: 141-148 ISSN 2086-9614 IJTech 2016 REDUCING THE VIBRATIONS OF AN UNBALANCED ROTARY ENGINE BY ACTIVE FORCE CONTROL M. Mohebbi 1*, M. Hashemi 1 1 Faculty of

More information

DEGREE: Biomedical Engineering YEAR: TERM: 1

DEGREE: Biomedical Engineering YEAR: TERM: 1 COURSE: Control Engineering DEGREE: Biomedical Engineering YEAR: TERM: 1 La asignatura tiene 14 sesiones que se distribuyen a lo largo de 7 semanas. Los dos laboratorios puede situarse en cualquiera de

More information

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

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

More information

Real-time Math Function of DL850 ScopeCorder

Real-time Math Function of DL850 ScopeCorder Real-time Math Function of DL850 ScopeCorder Etsurou Nakayama *1 Chiaki Yamamoto *1 In recent years, energy-saving instruments including inverters have been actively developed. Researchers in R&D sections

More information

TABLE OF CONTENTS CHAPTER TITLE PAGE DECLARATION DEDICATION ACKNOWLEDGEMENT ABSTRACT ABSTRAK

TABLE OF CONTENTS CHAPTER TITLE PAGE DECLARATION DEDICATION ACKNOWLEDGEMENT ABSTRACT ABSTRAK vii TABLES OF CONTENTS CHAPTER TITLE PAGE DECLARATION DEDICATION ACKNOWLEDGEMENT ABSTRACT ABSTRAK TABLE OF CONTENTS LIST OF TABLES LIST OF FIGURES LIST OF ABREVIATIONS LIST OF SYMBOLS LIST OF APPENDICES

More information

Robot Joint Angle Control Based on Self Resonance Cancellation Using Double Encoders

Robot Joint Angle Control Based on Self Resonance Cancellation Using Double Encoders Robot Joint Angle Control Based on Self Resonance Cancellation Using Double Encoders Akiyuki Hasegawa, Hiroshi Fujimoto and Taro Takahashi 2 Abstract Research on the control using a load-side encoder for

More information

Indoor Sound Localization

Indoor Sound Localization MIN-Fakultät Fachbereich Informatik Indoor Sound Localization Fares Abawi Universität Hamburg Fakultät für Mathematik, Informatik und Naturwissenschaften Fachbereich Informatik Technische Aspekte Multimodaler

More information

Introduction to Servo Control & PID Tuning

Introduction to Servo Control & PID Tuning Introduction to Servo Control & PID Tuning Presented to: Agenda Introduction to Servo Control Theory PID Algorithm Overview Tuning & General System Characterization Oscillation Characterization Feed-forward

More information

Mobile Robots (Wheeled) (Take class notes)

Mobile Robots (Wheeled) (Take class notes) Mobile Robots (Wheeled) (Take class notes) Wheeled mobile robots Wheeled mobile platform controlled by a computer is called mobile robot in a broader sense Wheeled robots have a large scope of types and

More information

Design of Joint Controller for Welding Robot and Parameter Optimization

Design of Joint Controller for Welding Robot and Parameter Optimization 97 A publication of CHEMICAL ENGINEERING TRANSACTIONS VOL. 59, 2017 Guest Editors: Zhuo Yang, Junjie Ba, Jing Pan Copyright 2017, AIDIC Servizi S.r.l. ISBN 978-88-95608-49-5; ISSN 2283-9216 The Italian

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

Cognition & Robotics. EUCog - European Network for the Advancement of Artificial Cognitive Systems, Interaction and Robotics

Cognition & Robotics. EUCog - European Network for the Advancement of Artificial Cognitive Systems, Interaction and Robotics Cognition & Robotics Recent debates in Cognitive Robotics bring about ways to seek a definitional connection between cognition and robotics, ponder upon the questions: EUCog - European Network for the

More information

Experimental Evaluation of Haptic Control for Human Activated Command Devices

Experimental Evaluation of Haptic Control for Human Activated Command Devices Experimental Evaluation of Haptic Control for Human Activated Command Devices Andrew Zammit Mangion Simon G. Fabri Faculty of Engineering, University of Malta, Msida, MSD 2080, Malta Tel: +356 (7906)1312;

More information

Design and Implementation of FPGA-Based Robotic Arm Manipulator

Design and Implementation of FPGA-Based Robotic Arm Manipulator Design and Implementation of FPGABased Robotic Arm Manipulator Mohammed Ibrahim Mohammed Ali Military Technical College, Cairo, Egypt Supervisors: Ahmed S. Bahgat 1, Engineering physics department Mahmoud

More information

MEM01: DC-Motor Servomechanism

MEM01: DC-Motor Servomechanism MEM01: DC-Motor Servomechanism Interdisciplinary Automatic Controls Laboratory - ME/ECE/CHE 389 February 5, 2016 Contents 1 Introduction and Goals 1 2 Description 2 3 Modeling 2 4 Lab Objective 5 5 Model

More information

10/21/2009. d R. d L. r L d B L08. POSE ESTIMATION, MOTORS. EECS 498-6: Autonomous Robotics Laboratory. Midterm 1. Mean: 53.9/67 Stddev: 7.

10/21/2009. d R. d L. r L d B L08. POSE ESTIMATION, MOTORS. EECS 498-6: Autonomous Robotics Laboratory. Midterm 1. Mean: 53.9/67 Stddev: 7. 1 d R d L L08. POSE ESTIMATION, MOTORS EECS 498-6: Autonomous Robotics Laboratory r L d B Midterm 1 2 Mean: 53.9/67 Stddev: 7.73 1 Today 3 Position Estimation Odometry IMUs GPS Motor Modelling Kinematics:

More information

Ball Balancing on a Beam

Ball Balancing on a Beam 1 Ball Balancing on a Beam Muhammad Hasan Jafry, Haseeb Tariq, Abubakr Muhammad Department of Electrical Engineering, LUMS School of Science and Engineering, Pakistan Email: {14100105,14100040}@lums.edu.pk,

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

Application Research on BP Neural Network PID Control of the Belt Conveyor

Application Research on BP Neural Network PID Control of the Belt Conveyor Application Research on BP Neural Network PID Control of the Belt Conveyor Pingyuan Xi 1, Yandong Song 2 1 School of Mechanical Engineering Huaihai Institute of Technology Lianyungang 222005, China 2 School

More information

Introduction to Robotics

Introduction to Robotics Introduction to Robotics Jee-Hwan Ryu School of Mechanical Engineering Korea University of Technology and Education What is Robot? Robots in our Imagination What is Robot Like in Our Real Life? Origin

More information

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

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

More information

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

Tasks prioritization for whole-body realtime imitation of human motion by humanoid robots

Tasks prioritization for whole-body realtime imitation of human motion by humanoid robots Tasks prioritization for whole-body realtime imitation of human motion by humanoid robots Sophie SAKKA 1, Louise PENNA POUBEL 2, and Denis ĆEHAJIĆ3 1 IRCCyN and University of Poitiers, France 2 ECN and

More information

Haptic Tele-Assembly over the Internet

Haptic Tele-Assembly over the Internet Haptic Tele-Assembly over the Internet Sandra Hirche, Bartlomiej Stanczyk, and Martin Buss Institute of Automatic Control Engineering, Technische Universität München D-829 München, Germany, http : //www.lsr.ei.tum.de

More information

Visual Servoing. Charlie Kemp. 4632B/8803 Mobile Manipulation Lecture 8

Visual Servoing. Charlie Kemp. 4632B/8803 Mobile Manipulation Lecture 8 Visual Servoing Charlie Kemp 4632B/8803 Mobile Manipulation Lecture 8 From: http://www.hsi.gatech.edu/visitors/maps/ 4 th floor 4100Q M Building 167 First office on HSI side From: http://www.hsi.gatech.edu/visitors/maps/

More information

Lecture 5 Introduction to control

Lecture 5 Introduction to control Lecture 5 Introduction to control Feedback control is a way of automatically adjusting a variable to a desired value despite possible external influence or variations. Eg: Heating your house. No feedback

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

A MATHEMATICAL MODEL OF A LEGO DIFFERENTIAL DRIVE ROBOT

A MATHEMATICAL MODEL OF A LEGO DIFFERENTIAL DRIVE ROBOT 314 A MATHEMATICAL MODEL OF A LEGO DIFFERENTIAL DRIVE ROBOT Ph.D. Stud. Eng. Gheorghe GÎLCĂ, Faculty of Automation, Computers and Electronics, University of Craiova, gigi@robotics.ucv.ro Prof. Ph.D. Eng.

More information

Modeling and Experimental Studies of a Novel 6DOF Haptic Device

Modeling and Experimental Studies of a Novel 6DOF Haptic Device Proceedings of The Canadian Society for Mechanical Engineering Forum 2010 CSME FORUM 2010 June 7-9, 2010, Victoria, British Columbia, Canada Modeling and Experimental Studies of a Novel DOF Haptic Device

More information

Robots Learning from Robots: A proof of Concept Study for Co-Manipulation Tasks. Luka Peternel and Arash Ajoudani Presented by Halishia Chugani

Robots Learning from Robots: A proof of Concept Study for Co-Manipulation Tasks. Luka Peternel and Arash Ajoudani Presented by Halishia Chugani Robots Learning from Robots: A proof of Concept Study for Co-Manipulation Tasks Luka Peternel and Arash Ajoudani Presented by Halishia Chugani Robots learning from humans 1. Robots learn from humans 2.

More information

Getting Started Sizing & Selecting Servos: Understanding the need for a system solution

Getting Started Sizing & Selecting Servos: Understanding the need for a system solution Getting Started Sizing & Selecting Servos: Understanding the need for a system solution 1 Sizing and selecting a servo motor system for a machine design begins by understanding the components that make

More information

of harmonic cancellation algorithms The internal model principle enable precision motion control Dynamic control

of harmonic cancellation algorithms The internal model principle enable precision motion control Dynamic control Dynamic control Harmonic cancellation algorithms enable precision motion control The internal model principle is a 30-years-young idea that serves as the basis for a myriad of modern motion control approaches.

More information

AC/Synchro/Resolver/Phase Definitions

AC/Synchro/Resolver/Phase Definitions Instruments Apex Signal Logitek Astrosystems 110 Wilbur Place, Bohemia, NY 11716-2416 Phone 631-567-1100 Fax 631-567-1823 AC/Synchro/Resolver/Phase Definitions We are required to be familiar with a wide

More information

Dynamics and simulation analysis of table tennis robot based on independent joint control

Dynamics and simulation analysis of table tennis robot based on independent joint control Acta Technica 62 No. 1B/2017, 35 44 c 2017 Institute of Thermomechanics CAS, v.v.i. Dynamics and simulation analysis of table tennis robot based on independent joint control Yang Yu 1 Abstract. The purpose

More information

SILVER OAK COLLEGE OF ENGG. & TECHNOLOGY Midsem I Syllabus Electronics & communication Engineering

SILVER OAK COLLEGE OF ENGG. & TECHNOLOGY Midsem I Syllabus Electronics & communication Engineering SILVER OAK COLLEGE OF ENGG. & TECHNOLOGY Midsem I Syllabus Electronics & communication Engineering Subject Name: Control System Engineering Subject Code: 2141004 Unit 1: Introduction to Control Systems:

More information

The Open Automation and Control Systems Journal, 2015, 7, Application of Fuzzy PID Control in the Level Process Control

The Open Automation and Control Systems Journal, 2015, 7, Application of Fuzzy PID Control in the Level Process Control Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 205, 7, 38-386 38 Application of Fuzzy PID Control in the Level Process Control Open Access Wang

More information

Fuzzy PID Controllers for Industrial Applications

Fuzzy PID Controllers for Industrial Applications Fuzzy PID Controllers for Industrial Applications G. Ron Chen Lecture for EE 6452 City University of Hong Kong Summary Proportional-Integral-Derivative (PID) controllers are the most widely used controllers

More information

Fundamentals of Servo Motion Control

Fundamentals of Servo Motion Control Fundamentals of Servo Motion Control The fundamental concepts of servo motion control have not changed significantly in the last 50 years. The basic reasons for using servo systems in contrast to open

More information

SERVO MOTOR CONTROL TRAINER

SERVO MOTOR CONTROL TRAINER SERVO MOTOR CONTROL TRAINER UC-1780A FEATURES Open & closed loop speed and position control. Analog and digital control techniques. PC based instrumentation include oscilloscope, multimeter and etc. PC

More information

SMJE 3153 Control System. Department of ESE, MJIIT, UTM 2014/2015

SMJE 3153 Control System. Department of ESE, MJIIT, UTM 2014/2015 SMJE 3153 Control System Department of ESE, MJIIT, UTM 2014/2015 1 Course Outline Course Instructors Prof Nozomu Hamada (hamada@utm.my)and Dr. Mohd Azizi Abdul Rahman Course Web site UTM e-learning site

More information

TAMIL NADU PUBLIC SERVICE COMMISSION. Post of Principal / Assistant Director (Training) Included in the Tamil Nadu Employment and Training Service

TAMIL NADU PUBLIC SERVICE COMMISSION. Post of Principal / Assistant Director (Training) Included in the Tamil Nadu Employment and Training Service Code No.207 TAMIL NADU PUBLIC SERVICE COMMISSION Post of Principal / Assistant Director (Training) Included in the Tamil Nadu Employment and Training Service Electronics and Instrumentation Engineering

More information

Passive Bilateral Teleoperation

Passive Bilateral Teleoperation Passive Bilateral Teleoperation Project: Reconfigurable Control of Robotic Systems Over Networks Márton Lırinc Dept. Of Electrical Engineering Sapientia University Overview What is bilateral teleoperation?

More information

MCE441/541 Midterm Project Position Control of Rotary Servomechanism

MCE441/541 Midterm Project Position Control of Rotary Servomechanism MCE441/541 Midterm Project Position Control of Rotary Servomechanism DUE: 11/08/2011 This project counts both as Homework 4 and 50 points of the second midterm exam 1 System Description A servomechanism

More information

GE420 Laboratory Assignment 8 Positioning Control of a Motor Using PD, PID, and Hybrid Control

GE420 Laboratory Assignment 8 Positioning Control of a Motor Using PD, PID, and Hybrid Control GE420 Laboratory Assignment 8 Positioning Control of a Motor Using PD, PID, and Hybrid Control Goals for this Lab Assignment: 1. Design a PD discrete control algorithm to allow the closed-loop combination

More information

Cantonment, Dhaka-1216, BANGLADESH

Cantonment, Dhaka-1216, BANGLADESH International Conference on Mechanical, Industrial and Energy Engineering 2014 26-27 December, 2014, Khulna, BANGLADESH ICMIEE-PI-140153 Electro-Mechanical Modeling of Separately Excited DC Motor & Performance

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

Basic Tuning for the SERVOSTAR 400/600

Basic Tuning for the SERVOSTAR 400/600 Basic Tuning for the SERVOSTAR 400/600 Welcome to Kollmorgen s interactive tuning chart. The first three sheets of this document provide a flow chart to describe tuning the servo gains of a SERVOSTAR 400/600.

More information