Motion Control in Dynamic Multi-Robot Environments

Total Page:16

File Type:pdf, Size:1020Kb

Motion Control in Dynamic Multi-Robot Environments Motion Control in Dynamic Multi-Robot Environments Michael Bowling Manuela Veloso [email protected] [email protected] Computer Science Department Carnegie Mellon University Pittsburgh, PA 15213-3890 Abstract cess of the team can be attributed to the motion control al- gorithms. It not only made direct contributions by provid- All mobile robots require some form of mo- ing smooth and robust motion, but its features allowed us tion control in order to exhibit interesting au- to build powerful individual and team behaviors. In section tonomous behaviors. This is even more essential 2, we give a brief overview of the architecture of our team. for multi-robot, highly-dynamic environments, It will describe the percepts and actuators available to the such as robotic soccer. This paper presents motion controller. In section 3, we describe the details of the motion control system used by CMUnited- the motion control algorithm. In section 4, we describe how 98, the small-size league champion at RoboCup- the high-level attacking behaviors effectively made use of 98. The team consists of five robots that aim our algorithm. Finally, in section 5 we will discuss related at achieving specific goals while navigating in a work in this area. limited space shared with the five other opponent robots. We introduce our motion control algo- rithm, which allows a general differential-driven 2 Team Architecture robot to accurately reach a target point with a de- The CMUnited-98 small-size robot team is a complete, au- sired orientation in an environment with multi- tonomous architecture composed of the physical robots, a ple moving obstacles. We describe how the fea- global video camera over-looking the playing field, and tures of our motion controller help to build in- several clients as the minds of the small-size robot play- teresting and robust behaviors. We also briefly ers. Fig. 1 sketches the building blocks of the architecture. compare our system to other motion control tech- The motion controller resides in the individual client mod- niques and include descriptions and illustrations ules and bridges the gap between the output of the vision of the performance of our fully-implemented mo- processing system and the robots’ motors. tion control algorithm. Action Client Object Code Module Positions 1 Introduction Raw Vision Client Data Module For any robotic system motion control is essential to build- Coaching/ Perceiving/ ing robust and interesting behavior. This is even more im- Transmitting Client Robot-specific Interface Module portant for multi-robot systems that need to build team be- Action code haviors on top of individual behaviors. An example of such Client a system is robotic soccer. Here, a team of robots must co- Client Module ordinate their actions to push the ball into their opponents’ Module goal. This is complicated by not only the opponent agents trying to prevent this from occurring, but also by the highly Figure 1: The CMUnited architecture with global percep- dynamic environment. This highly dynamic environment tion and distributed reaction. makes many traditional motion planning algorithms im- practical since the environment changes before the planner The vision system provides the input to the motion con- can even finish its path. troller. Since it overlooks the entire field, it can provide a This paper examines the motion control algorithm used complete view of the world. Our image processing algo- in CMUnited-98 [Veloso et al., 1999]. This team competed rithm reliably detects and tracks the position and orienta- in RoboCup ’98 in Paris in the small-size robot league. The tion of our five robots, the position of the five opponents, team won four of its five games and was the league cham- and the position of the ball. Additionally it uses a Kalman- pion for the second straight year. A great deal of the suc- Bucy filter to provide a reasonably accurate prediction of § § !" §% &! ' (!*),+-" §!()+ ( $# .# the ball’s velocity, both speed and direction. This informa- sgn sgn § tion is computed and passed to the client modules approxi- ¢¦£ ¢ §0/1 mately every thirtieth of a second. ¢ The output is the motion parameters for the physical ¢¦¥ §2¨3 & 4& robot. The robots have two motors and use differential where is the direction to the target point , drive for movement. The client modules, specifically the is the robot’s orientation, and ¢ is the desired speed (see motion controller, sends the desired wheel velocities to its Fig. 2(a))1. A few aspects of these equations deserve expla- !()+ " &! §5768 physical robot using radio communication. The radio com- nation. The use of and " restricts the values munication supports five robots each receiving over twenty <>= to the interval 9;: , which bounds the magnitude of the commands every second. Additionally, there is no local computed wheel velocities by ¢ . These equations also do feedback mechanism on the robots. All control is done us- not necessarily drive the robot forward, possibly driving the ing only visual feedback through the motion controller. robot backwards towards the target. A summary of the issues the motion controller must ad- We extend these equations for target configurations of §©¨ dress are given below. the form , where the goal is for the robot to §2¨7 & 4& ¡ Ten moving robots ( 12cm diameters) on a small reach the specified target point while facing the walled field (152.5cm by 274cm). Robots are mov- direction . This is achieved with the following adjust- ing at speeds close to one meter per second. ment: /BAC)+EDFG *H4I+ JLKMD7N Vision system providing 30 frames per second. Ra- ¦?@ dio communication able to support approximately 20 O3P3P F commands per second for each of the five robots. ? where is the new target direction, is the difference be- O Must be able to push the ball towards a particular tween our angle to the target point and , is the dis- point, specifically towards a goal (50cm wide). It must tance to the target point, and N is a clearance parameter (see also be able to intercept a moving ball and avoid fast Fig. 2(b).) This will keep the robot a distance N from the moving obstacles. target point while it is circling to line up with the target di- rection, . This new target direction, ? , is now substituted 3 Motion Control Algorithm into equation 1 to derive wheel velocities. An example tra- The goal of our motion control algorithm is to be as fast jectory using these equations is shown in Figure 3 (a). as possible while remaining accurate and reliable. This is In addition to our motion controller computing the de- sired wheel velocities, it also returns an estimate of the time §©¨ S challenging due to the lack of feedback from the motors, R forcing all control to be done using only visual feedback. to reach the target configuration, Q . This esti- Our motion control algorithm is robust. It addresses sta- mate is a crucial component in our robot’s strategy. It is tionary and moving targets with integrated obstacle avoid- used both in high-level decision making, and for low-level ball interception, which is described later in this section. ance. The algorithm makes effective use of the prediction §2¨ 4 R For CMUnited-98, Q is computed using a very of the ball’s trajectory provided by the Kalman-Bucy filter. F O We achieve this motion control functionality by a re- simple linear function of , , and : §©¨ / FY/ UTWV¦O TWX TWZG\[ active control mechanism that directs a differential drive R robot to a target configuration. The mechanism is based Q on CMUnited-97’s motion control [Veloso et al., 1998; The weights were set by simple empirical measurements. T]Z Han and Veloso, 1998], but includes a number of major im- TWV is the inverse of the robot’s translational speed; is X provements. The target configuration for the motion plan- T the inverse of the robot’s rotational speed; and is the ner has been extended. The target configuration includes: inverse of the speed of the robot when traversing a circle (i) the Cartesian position; and (ii) the direction that the of radius, N . It is interesting to note that even this crude robot is required to be facing when arriving at the target po- time estimate can be incredibly useful for building more sition. Obstacle avoidance is integrated into this controller. complex behaviors, which are discussed later in this paper. Also, the target configuration can be given as a function of time to allow for the controller to reason about intercepting 3.2 Obstacle Avoidance the trajectory of a moving target. Obstacle avoidance was also integrated into the motion 3.1 Differential Drive Control for Position and control. This is done by adjusting the target direction of Direction the robot based on any immediate obstacles in its path. This We begin with some basic control rules. The rules are a set adjustment can be seen in Fig. 4. of reactive equations for deriving the left and right wheel If a target direction passes too close to an obstacle, the direction is adjusted to run tangent to a preset allowed ¢¦¥ velocities, ¢¤£ and , in order to reach a target position, §©¨ ¦ : 1All angles are measured with respect to a fixed coordinate (1) system. ∆ θ' φ α d φ c θ (x*,y*) θ (x*,y*) φ∗ (a) (b) & ¦ Figure 2: (a) The parameters used to reach a target configuration §©¨ , without a specified target orientation. (b) The §2¨3 S adjustment of to ? to reach a target configuration of the form . (a) (b) Figure 3: Example trajectories. (a) This illustrates reaching a point with a specific orientation. The target point is the position of the ball, and the specified orientation is to the right.
Recommended publications
  • Application Note TM Generic Drive Interface: Using Siemens S7 PLC Range Via Profinet
    Motion Control Products Application note TM Generic drive interface: Using Siemens S7 PLC range via Profinet AN00263 Rev D Ready to use PLC function blocks, combine with a pre-written Mint application for simple control of MicroFlex e190 and MotiFlex e180 drives via PROFINET IO Introduction This application note details how to import and configure the ABB Generic Drive Interface (GDI) and associated TIA portal library ‘ABB Motion GDI Library’ using TIA portal (version 15 or later) project and any SIMATIC S7 CPU (S7-1200, S7-1500, S7- 400) using FW 3.3.12 or later. The same principles can be applied for older Simatic Step 7 projects though firmware versions before V3.xx should be avoided. The library provides pre-written data structures and function blocks that integrate seamlessly with the Mint based GDI and allow suitable Siemens PLCs to control ABB drives running Mint programs that support PROFINET IO (MicroFlex e190 and MotiFlex e180). Note that MicroFlex e190 and MotiFlex e180 drives must be provided with the Mint memory card (option code +N8020). The instructions promote consistency in all projects and greatly simplify the development of Siemens PLC motion control applications where simple point to point motion is required. This document assumes that the reader has basic knowledge of Siemens PLCs, SIMATIC S7, PROFINET IO configuration, Mint Workbench and the Mint GDI. It is recommended that the reader refers to application note AN00204 for details on the Mint GDI operation and configuration. Pre-requisites We will need to have the
    [Show full text]
  • Design of Plc Controlled Linear Induction Motor
    www.ijcrt.org © 2018 IJCRT | Volume 6, Issue 1 January 2018 | ISSN: 2320-2882 DESIGN OF PLC CONTROLLED LINEAR INDUCTION MOTOR 1Ashish Bachute,2Akash Babar,3Balaji Bagal,4Abhay Bhagat, 5Prof. Anupma Kamboj 1Department of Electrical Engineering, 1JSPM’s Bhivarabai Sawant Institute of Technology and Research, Pune, India Abstract: This paper presents a simple and fast methodology for designing a linear induction motor (LIM). A linear induction motor is an AC asynchronous linear motor that works by the same general principles as other induction motor but is very typically designed to directly produce motion in a straight line. Characteristically, linear induction motors have a finite length primary, which generates end effects, whereas with a conventional induction motor the primary is an endless loop. Their uses include magnetic levitation, linear propulsion and linear actuators. They have also been used for pumping liquid metal. Despite their name, not all linear induction motors produce linear motion some linear induction motors are employed for generating rotations of large diameters where the use of a continuous primary would be very expensive. Linear induction motors can be designed to produce thrust up to several thousands of Newton’s. The winding design and supply frequency determine the speed of a linear induction motor. Index Terms – Linear induction motor (LIM), magnetic levitation, programmable logic controller (PLC) I. INTRODUCTION A LIM is basically a rotating squirrel cage induction motor opened out flat. Instead of producing rotary torque from a cylindrical machine it produces linear force from a flat one. Only the shape and the way it produces motion is changed.
    [Show full text]
  • Motion Control and Interaction Control in Medical Robotics
    Motion Control and Interaction Control in Medical Robotics Ph. POIGNET LIRMM UMR CNRS-UMII 5506 161 rue Ada 34392 Montpellier Cédex 5 [email protected] Introduction Examples in medical fields as soon as the system is active to provide safety, tactile capabilities, contact constraints or man/machine interface (MMI) functions: Safety monitoring, tactile search and MMI in total hip replacement with ROBODOC [Taylor 92] or in total knee arthroplasty [Davies 95] [Denis 03] • Force feedback to implement « guarded move » strategies for finding the point of contact or the locator pins in a surgical setting [Taylor 92] • MMI which allows the surgeon to guide the robot by leading its tool to the desired position through zero force control [Taylor 92] e.g registration or digitizing of organ surfaces [Denis 03] Introduction Echographic monitoring (Hippocrate, [Pierrot 99]) • A robot manipulating ultrasonic probes used for cardio-vascular desease prevention to apply a given and programmable force on the patient’s skin to guarantee good conduction of the US signal and reproducible deformation of the artery Reconstructive surgery with skin harvesting (SCALPP, [Dombre 03]) Introduction Minimally invasive surgery [Krupa 02], [Ortmaïer 03] • Non damaging tissue manipulation requires accuracy, safety and force control Microsurgical manipulation [Kumar 00] • Cooperative human/robot force control with hand-held tools for compliant tasks Needle insertion [Barbé 06], [Zarrad 07a] Haptic devices [Hannaford 99], [Shimachi 03], [Duchemin 05] • Force sensing
    [Show full text]
  • Motion Control for Newbies. Featuring Maxon EPOS2 P
    Urs Kafader Motion Control for Newbies. Featuring maxon EPOS2 P. First Edition 2014 © 2014, maxon academy, Sachseln This work is protected by copyright. All rights reserved, including but not limited to the rights to translation into foreign languages, reproduction, storage on electronic media, reprinting and public presentation. The use of proprietary names, common names etc. in this work does not mean that these names are not protected within the meaning of trademark law. All the information in this work, including but not limited to numerical data, applications, quantitative data etc. as well as advice and recommendations has been carefully researched, although the accuracy of such information and the total absence of typographical errors cannot be guaranteed. The accuracy of the information provided must be verified by the user in each individual case. The author, the publisher and/or their agents may not be held liable for bodily injury or pecuniary or property damage. Version 1.2, February 2014 2 Motion Control for Newbies, featuring maxon EPOS2 P Motion Control for Newbies Featuring maxon EPOS2 P Intention and approach The basic approach of this textbook, like many, is a practical and experimental one; however, it is reversed from most. Instead of first explaining the theory of motion control and then applying it to specific examples, here we will start with hands-on exp erimenting on a real maxon EPOS2 P positioning control system by means of the EPOS Studio software and explain all the relevant motion control principles/features as they appear on the journey. Therefore, the text contains mainly the exercises and practical work to do.
    [Show full text]
  • Advancing Motivation Feedforward Control of Permanent Magnetic Linear Oscillating Synchronous Motor for High Tracking Precision
    actuators Article Advancing Motivation Feedforward Control of Permanent Magnetic Linear Oscillating Synchronous Motor for High Tracking Precision Zongxia Jiao 1,2,3, Yuan Cao 1, Liang Yan 1,2,3,*, Xinglu Li 1,3, Lu Zhang 1,2,3 and Yang Li 1,3 1 School of Automation Science and Electrical Engineering, Beihang University, Beijing 100191, China; [email protected] (Z.J.); [email protected] (Y.C.); [email protected] (X.L.); [email protected] (L.Z.); [email protected] (Y.L.) 2 Ningbo Institute of Technology, Beihang University, Ningbo 315800, China 3 Science and Technology on Aircraft Control Laboratory, Beihang University, Beijing 100191, China * Correspondence: [email protected] Abstract: Linear motors have promising application to industrial manufacture because of their direct motion and thrust output. A permanent magnetic linear oscillating synchronous motor (PMLOSM) provides reciprocating motion which can drive a piston pump directly having advantages of high frequency, high reliability, and easy commercial manufacture. Hence, researching the tracking perfor- mance of PMLOSM is of great importance to realizing its popularization and application. Traditional PI control cannot fulfill the requirement of high tracking precision, and PMLOSM performance has high phase lag because of high control stiffness. In this paper, an advancing motivation feedforward control (AMFC), which is a combination of advancing motivation signal and PI control signal, is proposed to obtain high tracking precision of PMLOSM. The PMLOSM inserted with AMFC can provide accurate trajectory tracking at a high frequency. Compared with single PI control, AMFC can reduce the phase lag from −18 to −2.7 degrees, which shows great promotion of the tracking Citation: Jiao, Z.; Cao, Y.; Yan, L.; Li, precision of PMLOSM.
    [Show full text]
  • Machine Controller and AC Servo Drive Solutions Catalog
    Machine Controller and AC Servo Drive Solutions Catalog Certified for ISO9001 and ISO14001 JQA-0422 JQA-EM0202 Ever Forward, Ever Better 100 Years ToTogethergether withwith Our CustomersCustomers Since its founding in 1915 as a manufacturer for motors, Yaskawa Electric has capitalized on its motor drive technology to provide continuing support for the key industries of the times, first for factory automation, and today, for mechatronics and robotics. Today, Yaskawa is striving to make effective use of its technologies developed in the motion control, robotics, and system engineering sectors, and is also taking on the challenges of achieving the highly efficient utilization of natural energy and the creation of a society in which people and robots exist side-by-side. Throughout our extensive 100-year history, we have consistently sought to develop the world’s leading technologies and applications that would best delight and be most useful to our customers. Yaskawa will continue to treasure the results, technologies, and reputation we have achieved thus far, and look ahead to create“ e-motional solutions” for emerging global challenges. Motion Control Robotics System Engineering 1915 1930 1990 2015 2 Environmental Energy Robotics Human Assist Mechatronics Solutions 3 Changing Motion, Changing the World Yaskawa is committed to developing innovative mechatronics products and offering new solutions to the world. Yaskawa's technology and mechatronics products are used in a wide-variety of industrial sectors, systems, and machinery, and enable ultra-high-speed and ultra-precision control. In addition to industrial sectors, our motion technology has a nearly limitless range of applications, including familiar sectors such as lifestyles, medicine, and welfare.
    [Show full text]
  • Discrete and Continuous Model of Three-Phase Linear Induction Motors “Lims” Considering Attraction Force
    energies Article Discrete and Continuous Model of Three-Phase Linear Induction Motors “LIMs” Considering Attraction Force Nicolás Toro-García 1 , Yeison A. Garcés-Gómez 2 and Fredy E. Hoyos 3,* 1 Department of Electrical and Electronics Engineering & Computer Sciences, Universidad Nacional de Colombia—Sede Manizales, Cra 27 No. 64 – 60, Manizales, Colombia; [email protected] 2 Unidad Académica de Formación en Ciencias Naturales y Matemáticas, Universidad Católica de Manizales, Cra 23 No. 60 – 63, Manizales, Colombia; [email protected] 3 Facultad de Ciencias—Escuela de Física, Universidad Nacional de Colombia—Sede Medellín, Carrera 65 No. 59A-110, 050034, Medellín, Colombia * Correspondence: [email protected]; Tel.: +57-4-4309000 Received: 18 December 2018; Accepted: 14 February 2019; Published: 18 February 2019 Abstract: A fifth-order dynamic continuous model of a linear induction motor (LIM), without considering “end effects” and considering attraction force, was developed. The attraction force is necessary in considering the dynamic analysis of the mechanically loaded linear induction motor. To obtain the circuit parameters of the LIM, a physical system was implemented in the laboratory with a Rapid Prototype System. The model was created by modifying the traditional three-phase model of a Y-connected rotary induction motor in a d–q stationary reference frame. The discrete-time LIM model was obtained through the continuous time model solution for its application in simulations or computational solutions in order to analyze nonlinear behaviors and for use in discrete time control systems. To obtain the solution, the continuous time model was divided into a current-fed linear induction motor third-order model, where the current inputs were considered as pseudo-inputs, and a second-order subsystem that only models the currents of the primary with voltages as inputs.
    [Show full text]
  • Motion Control Terminology
    Sold & Serviced By: ELECTROMATE Toll Free Phone (877) SERVO98 Toll Free Fax (877) SERV099 www.electromate.com Motion Control Terminology [email protected] Motion Control Types of Motion Controller Topologies A sub-fi eld of automation in which the position, velocity, force or pressure of a machine is PLC based motion controllers typically utilize a digital output controlled using some type of pneumatic, hydraulic, electric or mechanical device. Some device, such as a counter module, that resides within the PLC examples include a hydraulic pump, linear actuator, electric motor or gear train. system to generate command signals to a motor drive. Th ey are PLC Based usually chosen when simple, low cost motion control is required Motion Control System but are typically limited to a few axes and have limited coordina- tion capabilities. A motion control system is a system that controls the position, velocity, force or pressure of some machine. As an example, an electromechanical based motion control PC based motion controllers typically consist of dedicated hardware run by a real-time operating system. Th ey use standard system consists of a motion controller (the brains of the system), a drive (which takes computer busses such as PCI, PXI, Serial, USB, Ethernet, and the low power command signal from the motion controller and converts it into high others for communication between the motion controller and power current/voltage to the motor), a motor (which converts electrical energy to PC Based/ host system. PC based controllers generate a ±10V analog output mechanical energy), a feedback device (which sends signals back to the motion control- Computer voltage command for servo control and digital command signals, ler to make adjustments until the system produces the desired result), and a mechanical Bus Based commonly referred to as step and direction, for stepper control.
    [Show full text]
  • Control System Design Methods
    Christiansen-Sec.19.qxd 06:08:2004 6:43 PM Page 19.1 The Electronics Engineers' Handbook, 5th Edition McGraw-Hill, Section 19, pp. 19.1-19.30, 2005. SECTION 19 CONTROL SYSTEMS Control is used to modify the behavior of a system so it behaves in a specific desirable way over time. For example, we may want the speed of a car on the highway to remain as close as possible to 60 miles per hour in spite of possible hills or adverse wind; or we may want an aircraft to follow a desired altitude, heading, and velocity profile independent of wind gusts; or we may want the temperature and pressure in a reactor vessel in a chemical process plant to be maintained at desired levels. All these are being accomplished today by control methods and the above are examples of what automatic control systems are designed to do, without human intervention. Control is used whenever quantities such as speed, altitude, temperature, or voltage must be made to behave in some desirable way over time. This section provides an introduction to control system design methods. P.A., Z.G. In This Section: CHAPTER 19.1 CONTROL SYSTEM DESIGN 19.3 INTRODUCTION 19.3 Proportional-Integral-Derivative Control 19.3 The Role of Control Theory 19.4 MATHEMATICAL DESCRIPTIONS 19.4 Linear Differential Equations 19.4 State Variable Descriptions 19.5 Transfer Functions 19.7 Frequency Response 19.9 ANALYSIS OF DYNAMICAL BEHAVIOR 19.10 System Response, Modes and Stability 19.10 Response of First and Second Order Systems 19.11 Transient Response Performance Specifications for a Second Order
    [Show full text]
  • Motion Control Corporation— AUTOMATION, ROBOTICS & SAFETY
    LINECARD AUTOMATION & ROBOTICS DRIVES & MOTION CONTROL ADEPT (Omron Adept) BALDOR Fixed Robots RPM-A/C Motors to 1000 HP Mobile Robots OMRON MACRON DYNAMICS PLC-based Motion Control Linear Robotics Variable Frequency Drives T and H bots, linear actuators Programmable VF Drives NEMATRON Ethercat Servos and Motors Industrial Computers and Monitors DELTA TAU (Omron Delta Tau) HMI, Text Displays Advanced Motion Control OMRON UNICO Programmable Controllers Specialty AC & DC Drives to 1300 HP Temperature and Process Controllers Engineered and Custom Drive Systems Industrial RFID Systems Ethernet/IP, Devicenet, Profibus MECHANICAL HMI and Industrial Computers RFID, Bar Code and 2D Scanners and Imagers APEX INDUSOFT Planetary Gear Reducers MB Kits (ITEM) SCADA Software Aluminum Profile Systems COMPONENTS & MOTOR CONTROL PARKER ORIGA Rodless Cylinders & Actuators B-Line Industrial Enclosures INDUSTRIAL NETWORKING OMRON ATOP Power Supplies Pick to Light Systems Timers, Counters, Panel Meters MOXA Relays, Ice Cube & Solid State Industrial Networking 22mm & 16mm Pilot Devices Protocol Conversion PFANNENBERG Wireless, I/O, Ethernet IP, RS-485, MODBUS, others Chillers OMRON Enclosure Air Conditioners Ethernet IP, Ethercat Hubs, switches and Wireless Remote I/O: Ethercat, Ethernet I/P, Devicenet, & Others Fans and Cooling WIELAND SPRECHER+SCHUH Ethernet Hubs IEC Motor Starters and Contactors Wireless Switches Terminal Blocks Through-door access ports Disconnects, Pilot Devices WIELAND Distributed I/O Control
    [Show full text]
  • Disturbance Observer and Kalman Filter Based Motion Control Realization
    IEEJ Journal of Industry Applications Vol.7 No.1 pp.1–14 DOI: 10.1541/ieejjia.7.1 Review Paper Disturbance Observer and Kalman Filter Based Motion Control Realization ∗a) ∗ Thao Tran Phuong Member, Kiyoshi Ohishi Fellow ∗∗ ∗ Chowarit Mitsantisuk Member, Yuki Yokokura Member ∗∗∗ ∗∗∗∗ Kouhei Ohnishi Fellow, Roberto Oboe Member ∗5 Asif Sabanovic Non-member (Manuscript received Oct. 23, 2017, revised Nov. 7, 2017) Many effective robot-manipulator control schemes using a disturbance observer have been reported in the literature in the past decades. Besides, the disturbance observer combined with the Kalman filter has attracted the attention of researchers in the field of motion control. The major advantage of a motion control system based on the Kalman filter and disturbance observer is the realization of high robustness against disturbance and parameter variations, effective noise suppression and wideband force sensing. This paper presents a survey of motion control based on the Kalman filter and disturbance observer, which have been previously introduced by the authors. Several control schemes, as well as formulations and applications of the Kalman filter and disturbance observer, are described in the paper. The performance and effectiveness of the control schemes are evaluated to give a useful and comprehensive design of the Kalman filter and disturbance observer in various motion control applications. Keywords: disturbance observer, Kalman filter, motion control, acceleration control, force control, real-world haptics the DOB is used instead of a force sensor to estimate and 1. Introduction compensate for disturbance. Since its invention, it has be- For several decades, motion control using disturbance ob- come one of the most preferred solutions in motion control.
    [Show full text]
  • Results Briefing for FY2020 (Ended February 28, 2021)
    Results Briefing for FY2020 (Ended February 28, 2021) Notes: Yaskawa Group has voluntarily adopted International Financial Reporting Standards (IFRS) since its Annual Securities Report submitted on May 28, 2020, in order to enhance business management through the unification of accounting standards and to improve the international comparability of financial information in capital markets. We have also changed the segment classification since fiscal 2020. As a result, the figures for the same period of the previous fiscal year were calculated taking into account the impact of these changes. (Please see P.26) The information within this document is made as of the date of writing. Any forward-looking statements are made according to the assumptions of management and are subject to change as a result of risks and uncertainties. YASKAWA Electric Corporation undertakes no obligation to update or revise these forward-looking statements, whether as a result of new information, future events, or otherwise. Figures in this document are rounded off, and may differ from those in other documents such as financial results. The copyright to all materials in this document is held by YASKAWA Electric Corporation. No part of this document may be reproduced or distributed without the prior permission of the copyright holder. © 2021 YASKAWA Electric Corporation Contents 1. FY2020 Financial Results 3. FY2021 Full-Year Forecasts • FY2020 Financial Results • FY2021 Full-Year Financial Forecasts • Business Segment Overview • Breakdown of Changes • Revenue Breakdown by Business in Operating Profit Segment • Measures for FY2021 • Revenue Breakdown by Region • Shareholder Return(Dividends) • Breakdown of Changes in Operating Profit 4. Reference • Current Initiatives from FY 2020 4Q • Retroactive Application of IFRS/ Business Reclassification to the 2.
    [Show full text]