Developing Scalable Abilities for Self-Reconfigurable Robots

Total Page:16

File Type:pdf, Size:1020Kb

Developing Scalable Abilities for Self-Reconfigurable Robots Developing Scalable Abilities for Self-Reconfigurable Robots by Sam Slee Department of Computer Science Duke University Date: Approved: John Reif, Supervisor Jun Yang Ronald Parr Joseph Nadeau Dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Department of Computer Science in the Graduate School of Duke University 2010 Abstract (Computer Science) Developing Scalable Abilities for Self-Reconfigurable Robots by Sam Slee Department of Computer Science Duke University Date: Approved: John Reif, Supervisor Jun Yang Ronald Parr Joseph Nadeau An abstract of a dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Department of Computer Science in the Graduate School of Duke University 2010 Copyright c 2010 by Sam Slee All rights reserved except the rights granted by the Creative Commons Attribution-Noncommercial Licence Abstract The power of modern computer systems is due in no small part to their fantastic ability to adapt to whatever tasks they are charged with. Self-reconfigurable robots seek to provide that flexibility in hardware by building a system out of many in- dividual modules, each with limited functionality, but with the ability to rearrange themselves to modify the shape and structure of the overall robotic system and meet whatever challenges are faced. Various hardware systems have been constructed for reconfigurable robots, and algorithms for them produce a wide variety of modes of locomotion. However, the task of efficiently controlling these complex systems { pos- sibly with thousands or millions of modules comprising a single robot { is still not fully solved even after years of prior work on the topic. In this thesis, we design theoretical control algorithms for the lattice-style self- reconfigurable robots. These robots are composed of modules attached to each other in discrete lattice locations and only move by transitioning from one lattice loca- tion to another adjacent location. A key task for these robots is reconfiguration: transitioning the robot from one connected arrangement of modules to a different connected arrangement. In our work we show a lower bound for the time to recon- figure a robot given the physical limitations of modules in that robot. Furthermore, we develop an algorithm with a running time that matches this lower bound both for a specific example reconfiguration problem and for general reconfiguration between any pair of 2D arrangements of modules. Since these algorithms match the demon- iv strated lower bound, they are asymptotically optimal given the assumed abilities of the modules in the robot. In addition to our theoretically optimal reconfiguration algorithms, we also make contributions to the more practical side of this robotics field with a novel, physically stable control algorithm. The majority of prior theoretical work on control algo- rithms for self-reconfigurable robots did not consider the effects of gravity upon the robot. The result is that these algorithms often transform a robot into configurations { arrangements of modules { which are unstable and would likely break hardware on a real robot with thousands or millions of modules. In this thesis we present an algo- rithm for locomotion of a self-reconfigurable robot which is always physically stable in the presence of gravity even though we assume limited abilities for the robot's modules to withstand tension or shear forces. This algorithm is highly scalable, able to be efficiently run on a robot with millions of modules, demonstrates significant speed advantages over prior scalable locomotion algorithms, and is resilient to errors in module actions or message passing. Overall, the contributions of this thesis extend both the theoretical and practical limits of what is possible with control algorithms for self-reconfigurable robots. v Contents Abstract iv List of Figuresx Acknowledgements xiv 1 Introduction1 1.1 Organization of this Thesis.......................3 2 Survey of Related Work on Self-Reconfigurable Robots5 2.1 Prior Self-Reconfigurable Robot Hardware Designs..........6 2.1.1 Hardware Types Overview...................6 2.1.2 Other Hardware Details.....................9 2.1.3 2D Hardware Designs....................... 12 2.1.4 Chain-style Hardware Designs.................. 14 2.1.5 Older 3D Lattice-style Hardware Designs............ 16 2.1.6 Recent 3D Lattice-style Hardware Designs........... 18 2.1.7 Hybrid Hardware Designs.................... 23 2.2 Prior Algorithmic Work for SR Robots................. 24 2.2.1 Abstract Models and Motion Planning for SR Robots..... 25 2.2.2 Locomotion for Lattice-style SR Robots............ 28 2.2.3 Hierarchical Control for SR Robots............... 32 2.2.4 Force Analysis and Control for SR Robots........... 36 vi 3 Kinodynamic Planning for Self-Reconfigurable Robots 40 3.1 Overview of Kinodynamic Planning................... 41 3.2 The Self-Reconfigurable Kinodynamic Model:............. 43 3.3 x-axis to y-axis: 1D Force Analysis................... 45 3.4 x-axis to y-axis: 2D Reconfiguration.................. 55 3.5 x-axis to y-axis: Lower Bounds..................... 67 3.6 Summary................................. 70 4 Optimal Kinodynamic Motion Planning for 2D Reconfiguration 72 4.1 Introduction................................ 73 4.2 Notation and Problem Formulation................... 74 4.3 Creating a Hamiltonian Cycle...................... 75 4.3.1 Finding a Spanning Tree..................... 75 4.3.2 Doubling the Spanning Tree................... 78 4.3.3 Forming a Hamiltonian Cycle.................. 85 4.4 Reconfiguration Between Arbitrary 2D Arrangements......... 96 4.5 Summary................................. 107 5 Scalable and Physically Stable Locomotion for SR Robots in the Presence of Gravity 109 5.1 Overview of Contributed Work..................... 110 5.2 Related Work............................... 113 5.2.1 Review of the MMM Locomotion Algorithm........... 117 5.2.2 What Else Is Needed?...................... 121 5.3 Introducing the Robomotion Algorithm................. 124 5.4 Overview of Intuition for Robomotion.................. 127 vii 5.4.1 Fast Locomotion......................... 128 5.4.2 Stable Locomotion........................ 129 5.4.3 Scalable Locomotion....................... 131 5.4.4 Algorithm Outline: One Tunnel................. 133 5.4.5 Algorithm Outline: Connecting Adjacent Tunnels....... 135 5.4.6 Other Challenges Solved..................... 136 5.5 Simulation Results............................ 139 5.5.1 Speed-Efficiency Comparisons.................. 141 5.6 Formal Description of Problem, Terminology, and Algorithm..... 143 5.6.1 Forward Locomotion Pseudo-Code............... 145 5.6.2 Robomotion: Formal Problem Statement and Algorithmic Goal 150 5.7 Robomotion Proofs of Correctness.................... 153 5.7.1 Forward Locomotion....................... 153 5.7.2 Reverse Locomotion....................... 168 5.7.3 Locomotion With Turns..................... 176 5.8 Setting Up Tunnel Grid Configurations.................. 184 5.9 Handling Multi-Tunnel Coordination and Uneven Terrain....... 188 5.10 The BLOCKS Module Design...................... 191 5.11 Summary................................. 193 6 Conclusion 194 6.1 Summary of Contributions........................ 194 6.2 Future Work................................ 196 6.2.1 Scalable Control: Self-Reconfigurable Tools Framework.... 196 6.2.2 Scalable Adaptability: Building Bridges with SR Robots... 198 6.2.3 Scalable Power: Force Actions.................. 201 viii Bibliography 205 Biography 235 ix List of Figures 2.1 Left: CEBOT modules separate (left) and stacked (right) [279].... 12 2.2 A partially expanded Crystalline module [22].............. 13 2.3 A PolyPod segment [279]......................... 14 2.4 A PolyBot generation 1 module [161]................... 15 2.5 A CKbot module [199]........................... 15 2.6 Top: A male Molecule module. Bottom: A female Molecule [114].. 16 2.7 A Telecube module in contracted form [239]............... 17 2.8 Diagram of the Shady robot [253]..................... 18 2.9 A single Shady3D module [298]...................... 19 2.10 Two current-version Molecube modules [307].............. 19 2.11 Several Miche modules [83]........................ 20 2.12 Several EM-Cube modules reconfiguring [5]............... 20 2.13 10 ATRON modules collected together [14]............... 21 2.14 The ball and bar modules for the Odin robot [136]........... 22 2.15 A walker made from 9 M-TRAN modules [124]............. 23 2.16 A SuperBot module [193]......................... 23 2.17 Local Rules: The left side of the figure shows locomotion generated from local rules. The right side shows a grouping 5 such rules which would generate eastward locomotion (to the right) if no obstacles were present [25, 24]............................... 28 x 2.18 Million Module March: By applying a simple machine learning technique, highly scalable locomotion was possible [69]......... 31 2.19 Scalable Joint: Christensen et al. propose forming groups of modules into anatomical parts, like muscles and bones, to simply control of SR robots [50]................................. 35 3.1 The x-axis to y-axis problem: transforming a row of modules into a column. Our algorithm uses an intermediate step of forming a square. 42 3.2 The Squeeze problem: Expanding cube modules in (a), each of length 1, contract to each have length 1/2 and form the configuration in (b).................................... 52 3.3 Confined
Recommended publications
  • Robotic Manipulators Mechanical Project for the Domestic Robot HERA
    See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/333931156 Robotic Manipulators Mechanical Project For The Domestic Robot HERA Conference Paper · April 2019 CITATIONS READS 0 197 3 authors: Marina Gonbata Fabrizio Leonardi University Center of FEI University Center of FEI 3 PUBLICATIONS 0 CITATIONS 97 PUBLICATIONS 86 CITATIONS SEE PROFILE SEE PROFILE Plinio Thomaz Aquino Junior University Center of FEI 58 PUBLICATIONS 237 CITATIONS SEE PROFILE Some of the authors of this publication are also working on these related projects: Vehicle Coordination View project HERA: Home Environment Robot Assistant View project All content following this page was uploaded by Plinio Thomaz Aquino Junior on 21 June 2019. The user has requested enhancement of the downloaded file. BRAHUR-BRASERO 2019 II Brazilian Humanoid Robot Workshop and III Brazilian Workshop on Service Robotics Robotic Manipulators Mechanical Project For The Domestic Robot HERA Marina Yukari Gonbata1, Fabrizio Leonardi1 and Plinio Thomaz Aquino Junior1 Abstract— Robotics can ease peoples life, in the industrial that can ”read” the environment where it acts), ability to act and home environment. When talking about homes, robot may actuators and motors capable of producing actions, such as assist people in some domestic and tasks, done in repeat. To the displacement of the robot in the environment), robustness accomplish those tasks, a robot must have a robotic arm, so it can interact with the environment physically, therefore, a robot and intelligence (ability to handle the most diverse situations, must use its arm to do the tasks that are required by its user. in order to solve and perform tasks as complex as they are) [2].
    [Show full text]
  • History of Robotics: Timeline
    History of Robotics: Timeline This history of robotics is intertwined with the histories of technology, science and the basic principle of progress. Technology used in computing, electricity, even pneumatics and hydraulics can all be considered a part of the history of robotics. The timeline presented is therefore far from complete. Robotics currently represents one of mankind’s greatest accomplishments and is the single greatest attempt of mankind to produce an artificial, sentient being. It is only in recent years that manufacturers are making robotics increasingly available and attainable to the general public. The focus of this timeline is to provide the reader with a general overview of robotics (with a focus more on mobile robots) and to give an appreciation for the inventors and innovators in this field who have helped robotics to become what it is today. RobotShop Distribution Inc., 2008 www.robotshop.ca www.robotshop.us Greek Times Some historians affirm that Talos, a giant creature written about in ancient greek literature, was a creature (either a man or a bull) made of bronze, given by Zeus to Europa. [6] According to one version of the myths he was created in Sardinia by Hephaestus on Zeus' command, who gave him to the Cretan king Minos. In another version Talos came to Crete with Zeus to watch over his love Europa, and Minos received him as a gift from her. There are suppositions that his name Talos in the old Cretan language meant the "Sun" and that Zeus was known in Crete by the similar name of Zeus Tallaios.
    [Show full text]
  • Robot Control and Programming: Class Notes Dr
    NAVARRA UNIVERSITY UPPER ENGINEERING SCHOOL San Sebastian´ Robot Control and Programming: Class notes Dr. Emilio Jose´ Sanchez´ Tapia August, 2010 Servicio de Publicaciones de la Universidad de Navarra 987‐84‐8081‐293‐1 ii Viaje a ’Agra de Cimientos’ Era yo todav´ıa un estudiante de doctorado cuando cayo´ en mis manos una tesis de la cual me llamo´ especialmente la atencion´ su cap´ıtulo de agradecimientos. Bueno, realmente la tesis no contaba con un cap´ıtulo de ’agradecimientos’ sino mas´ bien con un cap´ıtulo alternativo titulado ’viaje a Agra de Cimientos’. En dicho capitulo, el ahora ya doctor redacto´ un pequeno˜ cuento epico´ inventado por el´ mismo. Esta pequena˜ historia relataba las aventuras de un caballero, al mas´ puro estilo ’Tolkiano’, que cabalgaba en busca de un pueblo recondito.´ Ya os podeis´ imaginar que dicho caballero, no era otro sino el´ mismo, y que su viaje era mas´ bien una odisea en la cual tuvo que superar mil y una pruebas hasta conseguir su objetivo, llegar a Agra de Cimientos (terminar su tesis). Solo´ deciros que para cada una de esas pruebas tuvo la suerte de encontrar a una mano amiga que le ayudara. En mi caso, no voy a presentarte una tesis, sino los apuntes de la asignatura ”Robot Control and Programming´´ que se imparte en ingles.´ Aunque yo no tengo tanta imaginacion´ como la de aquel doctorando para poder contaros una historia, s´ı que he tenido la suerte de encontrar a muchas personas que me han ayudado en mi viaje hacia ’Agra de Cimientos’. Y eso es, amigo lector, al abrir estas notas de clase vas a ser testigo del final de un viaje que he realizado de la mano de mucha gente que de alguna forma u otra han contribuido en su mejora.
    [Show full text]
  • Industrial Robot
    1 Introduction 25 1.2 Industrial robots - definition and classification 1.2.1 Definition (ISO 8373:2012) and delimitation The annual surveys carried out by IFR focus on the collection of yearly statistics on the production, imports, exports and domestic installations/shipments of industrial robots (at least three or more axes) as described in the ISO definition given below. Figures 1.1 shows examples of robot types which are covered by this definition and hence included in the surveys. A robot which has its own control system and is not controlled by the machine should be included in the statistics, although it may be dedicated for a special machine. Other dedicated industrial robots should not be included in the statistics. If countries declare that they included dedicated industrial robots, or are suspected of doing so, this will be clearly indicated in the statistical tables. It will imply that data for those countries is not directly comparable with those of countries that strictly adhere to the definition of multipurpose industrial robots. Wafer handlers have their own control system and should be included in the statistics of industrial robots. Wafers handlers can be articulated, cartesian, cylindrical or SCARA robots. Irrespective from the type of robots they are reported in the application “cleanroom for semiconductors”. Flat panel handlers also should be included. Mainly they are articulated robots. Irrespective from the type of robots they are reported in the application “cleanroom for FPD”. Examples of dedicated industrial robots that should not be included in the international survey are: Equipment dedicated for loading/unloading of machine tools (see figure 1.3).
    [Show full text]
  • Coordinated Control of a Mobile Manipulator
    University of Pennsylvania ScholarlyCommons Technical Reports (CIS) Department of Computer & Information Science March 1994 Coordinated Control of a Mobile Manipulator Yoshio Yamamoto University of Pennsylvania Follow this and additional works at: https://repository.upenn.edu/cis_reports Recommended Citation Yoshio Yamamoto, "Coordinated Control of a Mobile Manipulator", . March 1994. University of Pennsylvania Department of Computer and Information Science Technical Report No. MS-CIS-94-12. This paper is posted at ScholarlyCommons. https://repository.upenn.edu/cis_reports/240 For more information, please contact [email protected]. Coordinated Control of a Mobile Manipulator Abstract In this technical report, we investigate modeling, control, and coordination of mobile manipulators. A mobile manipulator in this study consists of a robotic manipulator and a mobile platform, with the manipulator being mounted atop the mobile platform. A mobile manipulator combines the dextrous manipulation capability offered by fixed-base manipulators and the mobility offered by mobile platforms. While mobile manipulators offer a tremendous potential for flexible material handling and other tasks, at the same time they bring about a number of challenging issues rather than simply increasing the structural complexity. First, combining a manipulator and a platform creates redundancy. Second, a wheeled mobile platform is subject to nonholonomic constraints. Third, there exists dynamic interaction between the manipulator and the mobile platform. Fourth,
    [Show full text]
  • Automation and the Future of Work–1’, Nlr 119, Sept–Oct 2019
    Part 1: New Left Review 119, Sept Oct 2019 Part 2: New Left Review 120, Nov Dec 2019 aaron benanav AUTOMATION AND THE FUTURE OF WORK—1 he world is abuzz with talk of automation. Rapid advances in artificial intelligence, machine learning and robotics seem set to transform the world of work. In the most advanced factories, companies like Tesla have been aiming for ‘lights- Tout’ production, in which fully automated work processes, no longer needing human hands, can run in the dark. Meanwhile, in the illu- minated halls of robotics conventions, machines are on display that can play ping-pong, cook food, have sex and even hold conversations. Computers are not only developing new strategies for playing Go, but are said to be writing symphonies that bring audiences to tears. Dressed in white lab coats or donning virtual suits, computers are learning to identify cancers and will soon be developing legal strategies. Trucks are already barrelling across the us without drivers; robotic dogs are carry- ing military-grade weapons across desolate plains. Are we living in the last days of human toil? Is what Edward Bellamy once called the ‘edict of Eden’ about to be revoked, as ‘men’—or at least, the wealthiest among them—become like gods?1 There are many reasons to doubt the hype. For one thing, machines remain comically incapable of opening doors or, alas, folding laundry. Robotic security guards are toppling into mall fountains. Computerized digital assistants can answer questions and translate documents, but not well enough to do the job without human intervention; the same is true of self-driving cars.2 In the midst of the American ‘Fight for Fifteen’ movement, billboards went up in San Francisco threatening to replace fast-food workers with touchscreens if a law raising the minimum wage were passed.
    [Show full text]
  • Motion Planning for a Mobile Humanoid Manipulator Working in an Industrial Environment
    applied sciences Article Motion Planning for a Mobile Humanoid Manipulator Working in an Industrial Environment Iwona Pajak † and Grzegorz Pajak *,† Institute of Mechanical Engineering, University of Zielona Gora, 65-516 Zielona Gora, Poland; [email protected] * Correspondence: [email protected] † These authors contributed equally to this work. Abstract: This paper presents the usage of holonomic mobile humanoid manipulators to carry out autonomous tasks in industrial environments, according to the smart factory concept and the Industry 4.0 philosophy. The problem of transporting lengthy objects, taking into account mechanical limitations, the conditions for avoiding collisions, as well as the dexterity of the manipulator arms was considered. The primary problem was divided into three phases, leading to three different types of robotic tasks. In the proposed approach, the pseudoinverse Jacobian method at the acceleration level to solve each of the tasks was used. The redundant degrees of freedom were used to satisfy secondary objectives such as robot kinetic energy, the maximization of the manipulability measure, and the fulfillment mechanical and collision-avoidance limitations. A computer example involving a mobile humanoid manipulator, operating in an industrial environment, illustrated the effectiveness of the proposed method. Keywords: humanoid manipulator; mobile robot; motion planning; transportation task Citation: Pajak, I.; Pajak, G. Motion Planning for a Mobile Humanoid Manipulator Working in an Industrial Environment. Appl. Sci. 2021, 11, 1. Introduction 6209. https://doi.org/10.3390/ The history of industrial robotics dates back to the 1950s. At that time, the first designs app11136209 of numerically controlled machine tools and programmable manipulators for industrial applications were created.
    [Show full text]
  • An Engineer's Guide to Industrial Robot Designs
    e-book An Engineer’s Guide to Industrial Robot Designs A compendium of technical documentation on robotic system designs ti.com/robotics Q2 | 2020 Table of Contents/Overview 1. Introduction 3. Robot arm and driving system (manipulator) 1.1 An introduction to an industrial robot system. 3 3.1.1 How to protect battery power management systems from thermal damage. 45 2. Robot system controller 3.1.2 Protecting your battery isn’t as hard as 2.1 Control panel you think.....................................46 2.1.1 Using Sitara™ processors for Industry 3.1.3 Position feedback-related reference designs 4.0 servo drives.......................9 for robotic systems............................47 2.2 Servo drives for robotic systems 4. Sensing and vision technologies 2.2.1 The impact of an isolated gate driver. 13 4.1 TI mmWave radar sensors in robotics 2.2.2 Understanding peak source and applications..................................48 sink current parameters . 17 4.2 Intelligence at the edge powers autonomous 2.2.3 Low-side gate drivers with UVLO versus factories .....................................53 BJT totem poles ......................19 4.3 Use ultrasonic sensing for graceful robots. 55 2.2.4 An external gate-resistor design guide for 4.4 How sensor data is powering AI in robotics. 57 gate drivers.......................... 20 4.5 Bringing machine learning to embedded 2.2.5 High-side motor current monitoring for systems .....................................61 overcurrent protection. 22 4.6 Robots get wheels to address new 2.2.6 Five benefits of enhanced PWM rejection for challenges and functions. 65 in-line motor control. 24 4.7 Vision and sensing-technology reference 2.2.7 How to protect control systems from thermal designs for robotic systems.
    [Show full text]
  • A Low-Cost Compliant 7-DOF Robotic Manipulator
    A Low-cost Compliant 7-DOF Robotic Manipulator Morgan Quigley, Alan Asbeck, and Andrew Y. Ng Abstract— We present the design of a new low-cost series- elastic robotic arm. The arm is unique in that it achieves reasonable performance for the envisioned tasks (backlash-free, sub-3mm repeatability, moves at 1.5m/s, 2kg payload) but with a significantly lower parts cost than comparable manipulators. The paper explores the design decisions and tradeoffs made in achieving this combination of price and performance. A new, human-safe design is also described: the arm uses stepper motors with a series-elastic transmission for the proximal four degrees of freedom (DOF), and non-series-elastic robotics servos for the distal three DOF. Tradeoffs of the design are discussed, especially in the areas of human safety and control bandwidth. The arm is used to demonstrate pancake cooking (pouring batter, flipping pancakes), using the intrinsic compliance of the arm to aid in interaction with objects. I. INTRODUCTION Fig. 1. The low-cost compliant manipulator described in this paper. Many robotic manipulators are very expensive, due to A spatula was used as the end effector in the demonstration application high-precision actuators and custom machining of compo- described in this paper. For ease of prototyping, lasercut plywood was used nents. We propose that robotic manipulation research can as the primary structural material. advance more rapidly if robotic arms of reasonable perfor- mance were greatly reduced in price. Increased affordability can lead to wider adoption, which in turn can lead to arms but at a drastically lower single-unit parts cost of $4135.
    [Show full text]
  • Unit 8 : ROBOTICS INTRODUCTION
    www.getmyuni.com Unit 8 : ROBOTICS INTRODUCTION Robots are devices that are programmed to move parts, or to do work with a tool. Robotics is a multidisciplinary engineering field dedicated to the development of autonomous devices, including manipulators and mobile vehicles. The Origins of Robots Year 1250 Bishop Albertus Magnus holds banquet at which guests were served by metal attendants. Upon seeing this, Saint Thomas Aquinas smashed the attendants to bits and called the bishop a sorcerer. Year 1640 Descartes builds a female automaton which he calls “Ma fille Francine.” She accompanied Descartes on a voyage and was thrown overboard by the captain, who thought she was the work of Satan. Year 1738 Jacques de Vaucanson builds a mechanical duck quack, bathe, drink water, eat grain, digest it and void it. Whereabouts of the duck are unknown today. Year 1805 Doll, made by Maillardet, that wrote in either French or English and could draw landscapes Year 1923 Karel Capek coins the term robot in his play Rossum’s Universal Robots (R.U.R). Robot comes from the Czech word robota , which means “servitude, forced labor.” Year 1940 Sparko, the Westinghouse dog, was developed which used both mechanical and electrical components. 1 www.getmyuni.com Year 1950’s to 1960’s Computer technology advances and control machinery is developed. Questions Arise: Is the computer an immobile robot? Industrial Robots created. Robotic Industries Association states that an “industrial robot is a re-programmable, multifunctional manipulator designed to move materials, parts, tools, or specialized devices through variable programmed motions to perform a variety of tasks” Year 1956 Researchers aim to combine “perceptual and problem-solving capabilities,” using computers, cameras, and touch sensors.
    [Show full text]
  • Mobile Manipulator Stability Measurements
    NIST Technical Note 1955 Mobile Manipulator Stability Measurements Roger Bostelman Tsai Hong This publication is available free of charge from: https://doi.org/10.6028/NIST.TN.1955 NIST Technical Note 1955 Mobile Manipulator Stability Measurements Roger Bostelman* Tsai Hong Intelligent Systems Division Engineering Laboratory *Le2i, Université de Bourgogne, BP 47870, 21078 Dijon, France This publication is available free of charge from: https://doi.org/10.6028/NIST.TN.1955 April 2017 U.S. Department of Commerce Wilbur L. Ross, Jr., Secretary National Institute of Standards and Technology Kent Rochford, Acting NIST Director and Under Secretary of Commerce for Standards and Technology Certain commercial entities, equipment, or materials may be identified in this document in order to describe an experimental procedure or concept adequately. Such identification is not intended to imply recommendation or endorsement by the National Institute of Standards and Technology, nor is it intended to imply that the entities, materials, or equipment are necessarily the best available for the purpose. National Institute of Standards and Technology Technical Note 1955 Natl. Inst. Stand. Technol. Tech. Note 1955, 13 pages (April 2017) CODEN: NTNOEF This publication is available free of charge from: https://doi.org/10.6028/NIST.TN.1955 ______________________________________________________________________________________________________ Abstract Mobile manipulators are being marketed for material handling and other tasks. Manufacturers suggest that the stability of the vehicle is best when the onboard loading tapers the centroid to the center of the wheelbase as the payload height increases. Experiments were performed at the National Institute of Standards and Technology (NIST) that verify this notion on an Adept Lynx mobile robot with onboard Universal Robots UR5 This manipulator.
    [Show full text]
  • Advancements in Autonomous Mobile Manipulation
    1 Advancements in Autonomous Mobile Manipulation Norm Williams, Director of Robotics Omron - Americas Produced by: Agenda - Advancements in Autonomous Mobile Manipulation • What Is Driving The Demand • Manufacturing and Retail Challenges • The Technology, Components & Integration • Real World Applications What is Driving the Demand for Mobile Manipulators • According to a study by Deloitte and the Manufacturing Institute, the skills gap may leave an estimated 2.4 million positions unfilled between 2018 and 2028. • The Society of Manufacturing Engineers (SME) reports that 89% of manufacturers are having difficulty finding skilled workers, which is partially due to an aging, retiring workforce and lack of desire among younger workers to enter the manufacturing field. • Research by Korn Ferry Institute estimates that the labor shortage in the global manufacturing industry could result in more than $607 billion in lost revenue by 2030, with the U.S. representing more than 10% of the global deficit at a total of $73 billion in unrealized output. Manufacturing Challenges Mobile Manipulation in Manufacturing Robotic Automation Line Autonomous Transportation Customer Needs • Flexible Manufacturing • Small Lot Sizes integrated intelligent • Quick Change Over • Increased throughput Applications • Machine Tending • Line Replenishment • Pick and Place Operations • Material Transport • Automated Inspection Continuous Improvement & interactive Zero Downtime Logistic and Operational Challenges Mobile Manipulation in Logistics Finished goods to Lineside
    [Show full text]