REMOTE OPERATION WITH SUPERVISED AUTONOMY (ROSA)

Size: px
Start display at page:

Download "REMOTE OPERATION WITH SUPERVISED AUTONOMY (ROSA)"

Transcription

1 REMOTE OPERATION WITH SUPERVISED AUTONOMY (ROSA) Erick Dupuis (1), Ross Gillett (2) (1) Canadian Space Agency, 6767 route de l'aéroport, St-Hubert QC, Canada, J3Y 8Y9 (2) MD Robotics Limited, 9445 Airport Road, Brampton ON, Canada, L6S 4J3 ABSTRACT Remote Operation with Supervised Autonomy (ROSA) was a collaborative research and development project with the goal of developing a variable-autonomy architecture to support ground-based control of space-deployed robotic systems in dynamic workspace environments. The ROSA architecture was successfully demonstrated using two sample applications: a satellite-servicing scenario using a laboratory test-bed and MSS ground control using a high fidelity simulator. The project had two main thrusts: artificial intelligence techniques to enhance the local decision-making capability, and artificial vision to enrich the robot s perception of the environment. This paper describes the ROSA concept of operation and architecture concentrating on the autonomy aspects and it describes the experimental results. INTRODUCTION Most space robotic operations in the foreseeable future will require ground control. Depending on the application, the level of autonomy will wildly vary from case to case. On the International Space Station, operations of the Mobile Servicing System will eventually be conducted partially from the ground to free-up astronauts to conduct more science experiments. In this case, the autonomy requirements are relatively low since the environment is known and static, and the communication delays are relatively short. In contrast, for a rover or manipulator on a Mars exploration mission, the operator will be located on Earth and will interact with the robot only once or twice every day. The communication delays in this case will be on the order of minutes. Such an application will therefore require a very high level of autonomy: the robot being sent command scripts for up to 12 hours of operations at a time. In the case of Reusable Space Vehicles performing servicing of satellites in low Earth Orbit, the operator will still be located on Earth. Typical tasks of such a system would involve capture, refueling or maintenance of a satellite. Although the delays are only on the order of a few seconds, the level of autonomy will still be relatively high since the environment in which the robot operates changes dynamically. The objective of the Remote Operation with Supervised Autonomy (ROSA) project was to set-up an infrastructure enabling ground control and supporting varying levels of autonomy. The project had two main thrusts: local autonomy software for space robotics applications and vision algorithms to enrich the knowledge of the environment. This paper will concentrate on the autonomy aspects of the ROSA project. Over the last decade, many approaches have been implemented to circumvent these problems and allow controlling space-based robots from ground stations. In 1993 DLR demonstrated ground control capabilities with the ROTEX [1] flight experiment utilising various modes of control. In 1998, NASDA's ETS-VII satellite was successfully controlled from a ground station at NASDA's Tsukuba Space Center in Japan [2]. ETS-VII was also used to demonstrate ground control using DLR's MARCO architecture [3] and ESA's FAMOUS architecture [4]. Using a similar approach, the Canadian Space Agency (CSA) and MacDonald Dettwiler Space and Advanced Robotics (MD Robotics) developed an architecture for remote operation of space-based assets [5] and tested it in an operational environment by remotely controlling a robotic excavator in northern Canada. Recently, the CSA, DLR and MD Robotics have started to tailor their ground segment software specifically for MSS operations [6][7]. 1

2 ARCHITECTURE The ROSA architecture is based on the concept of pre-planned operations scenarios composed of sequences of commands with a varying level of autonomy. A ground station provides the capability for generation and verification of the Mission Script, execution of this script including uplinking of the scripts, and monitoring and/or control of transitions between script elements. At execution, scripts can be uploaded to the space segment in entirety or one element at a time depending on the required level of autonomy. All logical branching decisions related to the execution of the script are controlled by a script executor and are typically event-driven. Again, depending on the required level of autonomy, the script executor can be located in the space segment or the ground segment. In the ROSA architecture, the script executor can relay lowlevel commands directly to the equipment being controlled or high-level commands to an intelligent agent in charge of performing the necessary decomposition and monitoring to ensure success of the operation. To support many levels of autonomy, the ROSA architecture implements a tiered approach to task specification. Two technologies were tested for the implementation of the intelligent agent. The first approach used a Hierarchical Task Network (HTN) to provide reactive control capability. The HTN is a set of finite state machines that contain the expert knowledge required to decompose the high-level commands of a script into a sequence of low-level primitive commands and take corrective measures based on discrete events such as sensor, time or operator-entered data. The reactive inference engine that implemented the HTN functionality is dubbed the Amorphous Architecture for Variable Autonomy Robot Control (AArVARC). This HTN-based inference engine is event-driven and provides a capability for immediate reaction based on external information such as sensor data, time events and operator-entered commands. One of AArVARC s most interesting features is its capability to support, by itself, a broad variety of levels of autonomy: from MSS-type operations where autonomy is very low to planetary exploration robots. To ease implementation by non-expert users, AArVARC uses a graphical programming environment: Matlab/Simulink s Stateflow toolbox. This allows operators to use a high level of abstraction when implementing behaviours in the HTN and maximizes the reusability of the software between applications. The software is implemented in such a manner as to retain the same core functions changing only the pool of behaviours and the low-level interfaces to the robot. A deliberative goal-oriented layer (called the Cognitive Controller or CoCo) was added on top of the HTN to provide the capability to generate or modify a plan locally that will subsequently be fed to the HTN or to the primitive executor. CoCo plans a mission using a Goal Achievement approach by considering the current state of the system, the desired state of the system and by laying out a sequence of behaviours to achieve that goal. In principle, the human operator need only provide a single high-level instruction (representing a mission goal). CoCo then plans a mission script to achieve the objectives. The plan invokes lower-level commands passing them along to the HTN or directly to the robot. This provides the capability to accommodate for non-static worksites and mission anomalies. Unlike AArVARC, which is purely reactive, CoCo has a deliberative capability. When encountering anomalies, it has the possibility to generate a new plan. This process is longer than a purely reactive system. However, combining the two capabilities allows the ROSA architecture to take advantage of the quicker reaction of the HTN while having the robustness of an automatic planner when encountering situations where the HTN cannot achieve mission success using the pre-determined set of rules. To take advantage of the broadest range of autonomy, ROSA provides the capability to invoke commands from any level of autonomy seamlessly within a single script. For a satellite servicing scenario, it would therefore be possible to invoke the deliberative layer to plan the capture of a satellite, use the HTN to perform the capture and use scripted primitives for the satellite servicing after capture. RESULTS The ROSA ground control architecture was tested using two sample applications to demonstrate the adaptability of the system to different levels of autonomy. The first application was a satellite-servicing scenario. The ROSA software was implemented on MD Robotics Reusable Space Vehicle Payload Handling Simulator (RPHS), a dual arm robotic testbed used to validate various technologies for satellite servicing operations, shown on Fig. 1. The RPHS facility is located in a dark room environment to faithfully emulate the lighting environment of Low-Earth Orbit to validate various artificial vision technologies. 2

3 Fig. 1 - Reusable Space Vehicle Payload Handling Simulator (RPHS) The nominal scenario involved locating, tracking and capturing a moving satellite mock-up using a vision system. Transitions between phases of the operation were triggered by sensory events. Anomalies were injected in the scenario to verify the ability of AARVARC and CoCo to deal with off-nominal situations. In one case, the lights were turned off to emulate blinding of the vision system and in another case, the telemetry server was turned off thus emulating the loss of the link between the low-level controller and the intelligent agent. In all cases, both approaches performed admirably. When encountering anomalous conditions, the AARVARC engine executed a pre-determined set of rules to complete the operation successfully whereas the cognitive controller (CoCo) replanned a new operation sequence to accomplish its objectives taking into account the new starting conditions. As a testimony to its robustness, the set of behaviours implemented using the Hierarchical Task Network approach encountered a set of untested conditions during the final demonstration of the project and, nevertheless, succeeded in completing the capture of the satellite mock-up. The second application selected to demonstrate the power of ROSA was a simulation of MSS ground control using the MSS Operations and Training Simulator (MOTS), a high-fidelity dynamic and graphical simulator of the MSS used for astronaut training. See Fig. 2. Fig. 2 - Emulation of MSS on MOTS Simulator 3

4 Since MSS ground operations will likely be conducted with intensive operator intervention, the cognitive controller approach was not tested. The architecture was set-up such that the intelligent agent, in this case AARVARC, was located in the ground station and the operator monitored and approved all transitions between script elements. The AARVARC engine successfully completed the step-off and stow procedure that was executed during Canadarm-2 s maiden flight. This procedure involved many of the most complex operations to be expected of the Canadarm-2 such as the capture of a grapple fixture and a change of base from one grapple fixture to another. CONCLUSION Remote Operation with Supervised Autonomy (ROSA) is a collaborative research and development project with the goal of developing an architecture to support ground-based control of space-deployed robotic systems in dynamic workspace environments. The ROSA architecture is based on the concept of pre-planned operations scenarios composed of sequences of commands with a varying level of autonomy. It uses a tiered approach to implement different levels of autonomy that includes a Hierarchical Task Network capable of executing a high-level mission script and a deliberative goal-oriented layer capable of re-planning the mission script. ROSA demonstrated satellite docking at various levels of autonomy using MD Robotics Reusable Space Vehicle Payload Handling Simulator. In this facility, two industrial manipulators under controlled lighting environment are used to emulate satellite-docking operations. One manipulator maneuvers a mock-satellite while the other emulates a chaser satellite attempting to dock. Tests conducted using varying autonomy levels demonstrated successful docking in nominal situations as well as in off-nominal situations, such as when the lighting was turned off or when the vision system lost sight of the target. ROSA also successfully demonstrated ground control of the MSS, using a high-fidelity simulator, where safety constraints would preclude the deliberative layer and require that the operations scripts be known ahead of time. Today, ROSA has reached a sufficient level of maturity to become the baseline in many R&D projects both at CSA and MD Robotics. ROSA is also the baseline ground control software for MD Robotics robotic manipulator on the Orbital Express program. REFERENCES [1] Hirzinger, G., Brunner, B., Dietrich, J. and Heindl, J., Sensor-Based Space Robotics - ROTEX and Its Telerobotic Features, IEEE Trans. on Robotics and Automation, Vol.9, No.5, pp , October [2] Oda, M., Space Robot Experiments on NASDA's ETS-VII Satellite - Preliminary Overview of the Experiment Results, Proc IEEE Conf. on Robotics and Automation (ICRA 99), Detroit, USA, pp , [3] Brunner, B., Landzettel, K., Schreiber, G., Steinmetz, B.M. and Hirzinger, G., A Universal Task-Level Ground Control and Programming System for Space Robot Applications - the MARCO Concept and its Applications to the ETS-VII Project, Proc. Fifth International Symposium on Artificial Intelligence, Robotics and Automation in Space (isairas 99), ESTEC, Noordwijk, The Netherlands, pp , June [4] Galardini, G.M., Kapellos, K., Maesen, E., Visentin, G. and Didot, F., em Vision and Interactive Autonomy Bi- Lateral Experiments on the Japanese Satellite ETS-VII, Proc. Fifth International Symposium on Artificial Intelligence, Robotics and Automation in Space (isairas 99), ESTEC, Noordwijk, The Netherlands, pp , June [5] Dupuis, E., Gillett, R., Boulanger, P., Edwards, E., and Lipsett, M., Interactive, Intelligent Remote Operations: Application to Space Robotics, SPIE Telemanipulator and Telepresence Technologies VI, Boston, Massachusetts, USA, September [6] Dupuis, E., and Gillett, R., Validation of Ground Control Technology for International Space Station Robot Systems, Proc. Sixth International Symposium on Artificial Intelligence, Robotics and Automation in Space (isairas 2001), St-Hubert, Canada, June

5 [7] Landzettel, K., Brunner, B., Schreiber, G., Steinmetz, B.M., and Dupuis, E., MSS Ground Control Demo with MARCO, Proc. Sixth International Symposium on Artificial Intelligence, Robotics and Automation in Space (isairas 2001), St-Hubert, Canada, June 18-21,

A TEST-BED FOR THE DEMONSTRATION OF MSS GROUND CONTROL. É. Dupuis*, J.-C. Piedbœuf*, R. Gillett**, K. Landzettel***, B. Brunner***

A TEST-BED FOR THE DEMONSTRATION OF MSS GROUND CONTROL. É. Dupuis*, J.-C. Piedbœuf*, R. Gillett**, K. Landzettel***, B. Brunner*** A TEST-BED FOR THE DEMONSTRATION OF MSS GROUND CONTROL É. Dupuis*, J.-C. Piedbœuf*, R. Gillett**, K. Landzettel***, B. Brunner*** *Canadian Space Agency, 6767 route de l'aéroport, St-Hubert (Qc) J3Y 8Y9,

More information

A FRAMEWORK FOR AUTONOMOUS SPACE ROBOTIC OPERATIONS

A FRAMEWORK FOR AUTONOMOUS SPACE ROBOTIC OPERATIONS A FRAMEWORK FOR AUTONOMOUS SPACE ROBOTIC OPERATIONS Erick Dupuis, Canadian Space Agency, Canada Régent L Archevêque, Canadian Space Agency, Canada Pierre Allard, Canadian Space Agency, Canada Ioannis Rekleitis,

More information

Tele-manipulation of a satellite mounted robot by an on-ground astronaut

Tele-manipulation of a satellite mounted robot by an on-ground astronaut Proceedings of the 2001 IEEE International Conference on Robotics & Automation Seoul, Korea May 21-26, 2001 Tele-manipulation of a satellite mounted robot by an on-ground astronaut M. Oda, T. Doi, K. Wakata

More information

A Unified Ground Control and Programming Methodology for Space Robotics Applications Demonstrations on ETS-VII

A Unified Ground Control and Programming Methodology for Space Robotics Applications Demonstrations on ETS-VII A Unified Ground Control and Programming Methodology for Space Robotics Applications Demonstrations on ETS-VII K. Landzettel, B. Brunner, G. Hirzinger, R. Lampariello, G. Schreiber, B.-M. Steinmetz DLR

More information

Autonomous and Autonomic Systems: With Applications to NASA Intelligent Spacecraft Operations and Exploration Systems

Autonomous and Autonomic Systems: With Applications to NASA Intelligent Spacecraft Operations and Exploration Systems Walt Truszkowski, Harold L. Hallock, Christopher Rouff, Jay Karlin, James Rash, Mike Hinchey, and Roy Sterritt Autonomous and Autonomic Systems: With Applications to NASA Intelligent Spacecraft Operations

More information

Multi-Agent Planning

Multi-Agent Planning 25 PRICAI 2000 Workshop on Teams with Adjustable Autonomy PRICAI 2000 Workshop on Teams with Adjustable Autonomy Position Paper Designing an architecture for adjustably autonomous robot teams David Kortenkamp

More information

Automation & Robotics (A&R) for Space Applications in the German Space Program

Automation & Robotics (A&R) for Space Applications in the German Space Program B. Sommer, RD-RR 1 Automation & Robotics (A&R) for Space Applications in the German Space Program ASTRA 2002 ESTEC, November 2002 1 2 Current and future application areas Unmanned exploration of the cold

More information

Mission Applications for Space A&R - G.Visentin 1. Automation and Robotics Section (TEC-MMA)

Mission Applications for Space A&R - G.Visentin 1. Automation and Robotics Section (TEC-MMA) In the proceedings of the 8th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2004' ESTEC, Noordwijk, The Netherlands, November 2-4, 2004 Gianfranco Visentin Head, Automation

More information

RobOps Approaching a Holistic and Unified Interface Service Definition for Future Robotic Spacecraft

RobOps Approaching a Holistic and Unified Interface Service Definition for Future Robotic Spacecraft www.dlr.de Chart 1 RobOps Approaching a Holistic and Unified Interface Service Definition for Future Robotic Spacecraft Steffen Jaekel, Bernhard Brunner (1) Christian Laroque, Zoran Pjevic (2) Felix Flentge

More information

Canadian Activities in Intelligent Robotic Systems - An Overview

Canadian Activities in Intelligent Robotic Systems - An Overview In Proceedings of the 8th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2004' ESTEC, Noordwijk, The Netherlands, November 2-4, 2004 Canadian Activities in Intelligent Robotic

More information

AVATAR: Autonomous Operations of Ground- Based Robots Performed from the ISS

AVATAR: Autonomous Operations of Ground- Based Robots Performed from the ISS AVATAR: Autonomous Operations of Ground- Based Robots Performed from the ISS Eric Martin, Régent L'Archevêque, Sébastien Gemme, Tony Pellerin, Jean-François Cusson, Erick Dupuis Canadian Space Agency,

More information

ROKVISS Verification of Advanced Tele-Presence Concepts for Future Space Missions

ROKVISS Verification of Advanced Tele-Presence Concepts for Future Space Missions ROKVISS Verification of Advanced Tele-Presence Concepts for Future Space Missions ASTRA 2002 Klaus Landzettel, Bernhard Brunner, Alexander Beyer, Erich Krämer, Carsten Preusche, Bernhard-Michael Steinmetz,

More information

Autonomous Cooperative Robots for Space Structure Assembly and Maintenance

Autonomous Cooperative Robots for Space Structure Assembly and Maintenance Proceeding of the 7 th International Symposium on Artificial Intelligence, Robotics and Automation in Space: i-sairas 2003, NARA, Japan, May 19-23, 2003 Autonomous Cooperative Robots for Space Structure

More information

NASA s X2000 Program - an Institutional Approach to Enabling Smaller Spacecraft

NASA s X2000 Program - an Institutional Approach to Enabling Smaller Spacecraft NASA s X2000 Program - an Institutional Approach to Enabling Smaller Spacecraft Dr. Leslie J. Deutsch and Chris Salvo Advanced Flight Systems Program Jet Propulsion Laboratory California Institute of Technology

More information

ETS-VII: Achievements, Troubles and Future

ETS-VII: Achievements, Troubles and Future Proceeding of the 6 th International Symposium on Artificial Intelligence and Robotics & Automation in Space: i-sairas 2001, Canadian Space Agency, St-Hubert, Quebec, Canada, June 18-22, 2001. ETS-VII:

More information

C. R. Weisbin, R. Easter, G. Rodriguez January 2001

C. R. Weisbin, R. Easter, G. Rodriguez January 2001 on Solar System Bodies --Abstract of a Projected Comparative Performance Evaluation Study-- C. R. Weisbin, R. Easter, G. Rodriguez January 2001 Long Range Vision of Surface Scenarios Technology Now 5 Yrs

More information

Tool Chains for Simulation and Experimental Validation of Orbital Robotic Technologies

Tool Chains for Simulation and Experimental Validation of Orbital Robotic Technologies DLR.de Chart 1 > The Next Generation of Space Robotic Servicing Technologies > Ch. Borst Exploration of Orbital Robotic Technologies > 26.05.2015 Tool Chains for Simulation and Experimental Validation

More information

Exploration Systems Research & Technology

Exploration Systems Research & Technology Exploration Systems Research & Technology NASA Institute of Advanced Concepts Fellows Meeting 16 March 2005 Dr. Chris Moore Exploration Systems Mission Directorate NASA Headquarters Nation s Vision for

More information

Demonstrating Robotic Autonomy in NASA s Intelligent Systems Project

Demonstrating Robotic Autonomy in NASA s Intelligent Systems Project In Proceedings of the 8th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2004' ESTEC, Noordwijk, The Netherlands, November 2-4, 2004 Demonstrating Robotic Autonomy in NASA

More information

Graphical Simulation and High-Level Control of Humanoid Robots

Graphical Simulation and High-Level Control of Humanoid Robots In Proc. 2000 IEEE RSJ Int l Conf. on Intelligent Robots and Systems (IROS 2000) Graphical Simulation and High-Level Control of Humanoid Robots James J. Kuffner, Jr. Satoshi Kagami Masayuki Inaba Hirochika

More information

On Application of Virtual Fixtures as an Aid for Telemanipulation and Training

On Application of Virtual Fixtures as an Aid for Telemanipulation and Training On Application of Virtual Fixtures as an Aid for Telemanipulation and Training Shahram Payandeh and Zoran Stanisic Experimental Robotics Laboratory (ERL) School of Engineering Science Simon Fraser University

More information

Unmanned on-orbit servicing (OOS), ROKVISS and the TECSAS mission

Unmanned on-orbit servicing (OOS), ROKVISS and the TECSAS mission In Proceedings of the 8th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2004' ESTEC, Noordwijk, The Netherlands, November 2-4, 2004 On-Orbit Servicing (OOS), ROKVISS and

More information

A Robust Neural Robot Navigation Using a Combination of Deliberative and Reactive Control Architectures

A Robust Neural Robot Navigation Using a Combination of Deliberative and Reactive Control Architectures A Robust Neural Robot Navigation Using a Combination of Deliberative and Reactive Control Architectures D.M. Rojas Castro, A. Revel and M. Ménard * Laboratory of Informatics, Image and Interaction (L3I)

More information

Randomized Motion Planning for Groups of Nonholonomic Robots

Randomized Motion Planning for Groups of Nonholonomic Robots Randomized Motion Planning for Groups of Nonholonomic Robots Christopher M Clark chrisc@sun-valleystanfordedu Stephen Rock rock@sun-valleystanfordedu Department of Aeronautics & Astronautics Stanford University

More information

Autonomous Satellite Servicing Using the Orbital Express Demonstration Manipulator System

Autonomous Satellite Servicing Using the Orbital Express Demonstration Manipulator System Autonomous Satellite Servicing Using the Orbital Express Demonstration Manipulator System Andrew Ogilvie, Justin Allport, Michael Hannah, John Lymer MDA, 9445 Airport Road, Brampton, Ontario, Canada L6S

More information

Credits. National Aeronautics and Space Administration. United Space Alliance, LLC. John Frassanito and Associates Strategic Visualization

Credits. National Aeronautics and Space Administration. United Space Alliance, LLC. John Frassanito and Associates Strategic Visualization A New Age in Space The Vision for Space Exploration Credits National Aeronautics and Space Administration United Space Alliance, LLC John Frassanito and Associates Strategic Visualization Coalition for

More information

An Overview of Space Robotics Activities at the Canadian Space Agency

An Overview of Space Robotics Activities at the Canadian Space Agency An Overview of Space Robotics Activities at the Canadian Space Agency 30 Years of Space Exploration Canadarm on Space Shuttle Mobile Servicing System (including Canadarm 2 & Dextre) on ISS Vision system

More information

Development of an Intelligent Agent based Manufacturing System

Development of an Intelligent Agent based Manufacturing System Development of an Intelligent Agent based Manufacturing System Hong-Seok Park 1 and Ngoc-Hien Tran 2 1 School of Mechanical and Automotive Engineering, University of Ulsan, Ulsan 680-749, South Korea 2

More information

An Agent-Based Architecture for an Adaptive Human-Robot Interface

An Agent-Based Architecture for an Adaptive Human-Robot Interface An Agent-Based Architecture for an Adaptive Human-Robot Interface Kazuhiko Kawamura, Phongchai Nilas, Kazuhiko Muguruma, Julie A. Adams, and Chen Zhou Center for Intelligent Systems Vanderbilt University

More information

Constellation Systems Division

Constellation Systems Division Lunar National Aeronautics and Exploration Space Administration www.nasa.gov Constellation Systems Division Introduction The Constellation Program was formed to achieve the objectives of maintaining American

More information

The ESA A&R technology R&D

The ESA A&R technology R&D The ESA A&R technology R&D Gianfranco Visentin Head, Automation and Robotics Section Directorate of Technical and Quality Management Outline The R&D funding schemes (GSP, TRP, CTP, GSTP, ARTES ) Robotics

More information

On- orbit Satellite Servicing Status and Strategy of Japan

On- orbit Satellite Servicing Status and Strategy of Japan On- orbit Satellite Servicing Status and Strategy of Japan May 2012 Mitsushige Oda (Prof. Dr.Eng.) Japan Aerospace ExploraGon Agency (JAXA) Tokyo InsGtute of Technology Mitsushige Oda Joined NASDA (now

More information

SPACE SERVICING: PAST, PRESENT AND FUTURE. Dan King

SPACE SERVICING: PAST, PRESENT AND FUTURE. Dan King Proceeding of the 6 th International Symposium on Artificial Intelligence and Robotics & Automation in Space: i-sairas 2001, Canadian Space Agency, St-Hubert, Quebec, Canada, June 18-22, 2001. SPACE SERVICING:

More information

Satellite Servicing and The Spirit of Innovation

Satellite Servicing and The Spirit of Innovation Satellite Servicing and The Spirit of Innovation Presented to Goddard Contractors Association June 29, 2012 Frank Cepollina, Associate Director Satellite Servicing Capabilities Office Frank.J.Cepollina@nasa.gov

More information

On-demand printable robots

On-demand printable robots On-demand printable robots Ankur Mehta Computer Science and Artificial Intelligence Laboratory Massachusetts Institute of Technology 3 Computational problem? 4 Physical problem? There s a robot for that.

More information

ESA Human Spaceflight Capability Development and Future Perspectives International Lunar Conference September Toronto, Canada

ESA Human Spaceflight Capability Development and Future Perspectives International Lunar Conference September Toronto, Canada ESA Human Spaceflight Capability Development and Future Perspectives International Lunar Conference 2005 19-23 September Toronto, Canada Scott Hovland Head of Systems Unit, System and Strategy Division,

More information

Eurobot Control Station ECoS: The Control Station of the Eurobot Underwater Model

Eurobot Control Station ECoS: The Control Station of the Eurobot Underwater Model In Proceedings of the 9th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2006' ESTEC, Noordwijk, The Netherlands, November 28-30, 2006 Eurobot Control Station ECoS: The

More information

MOSAIC: Automated Model Transfer in Simulator Development

MOSAIC: Automated Model Transfer in Simulator Development MOSAIC: Automated Model Transfer in Simulator Development W.F. Lammen, A.H.W. Nelisse and A.A. ten Dam Nationaal Lucht- en Ruimtevaartlaboratorium National Aerospace Laboratory NLR MOSAIC: Automated Model

More information

Using Reactive Deliberation for Real-Time Control of Soccer-Playing Robots

Using Reactive Deliberation for Real-Time Control of Soccer-Playing Robots Using Reactive Deliberation for Real-Time Control of Soccer-Playing Robots Yu Zhang and Alan K. Mackworth Department of Computer Science, University of British Columbia, Vancouver B.C. V6T 1Z4, Canada,

More information

Behaviour-Based Control. IAR Lecture 5 Barbara Webb

Behaviour-Based Control. IAR Lecture 5 Barbara Webb Behaviour-Based Control IAR Lecture 5 Barbara Webb Traditional sense-plan-act approach suggests a vertical (serial) task decomposition Sensors Actuators perception modelling planning task execution motor

More information

Space Robotic Capabilities David Kortenkamp (NASA Johnson Space Center)

Space Robotic Capabilities David Kortenkamp (NASA Johnson Space Center) Robotic Capabilities David Kortenkamp (NASA Johnson ) Liam Pedersen (NASA Ames) Trey Smith (Carnegie Mellon University) Illah Nourbakhsh (Carnegie Mellon University) David Wettergreen (Carnegie Mellon

More information

CS 730/830: Intro AI. Prof. Wheeler Ruml. TA Bence Cserna. Thinking inside the box. 5 handouts: course info, project info, schedule, slides, asst 1

CS 730/830: Intro AI. Prof. Wheeler Ruml. TA Bence Cserna. Thinking inside the box. 5 handouts: course info, project info, schedule, slides, asst 1 CS 730/830: Intro AI Prof. Wheeler Ruml TA Bence Cserna Thinking inside the box. 5 handouts: course info, project info, schedule, slides, asst 1 Wheeler Ruml (UNH) Lecture 1, CS 730 1 / 23 My Definition

More information

OFFensive Swarm-Enabled Tactics (OFFSET)

OFFensive Swarm-Enabled Tactics (OFFSET) OFFensive Swarm-Enabled Tactics (OFFSET) Dr. Timothy H. Chung, Program Manager Tactical Technology Office Briefing Prepared for OFFSET Proposers Day 1 Why are Swarms Hard: Complexity of Swarms Number Agent

More information

Cognitive Robotics 2016/2017

Cognitive Robotics 2016/2017 Cognitive Robotics 2016/2017 Course Introduction Matteo Matteucci matteo.matteucci@polimi.it Artificial Intelligence and Robotics Lab - Politecnico di Milano About me and my lectures Lectures given by

More information

Distributed Vision System: A Perceptual Information Infrastructure for Robot Navigation

Distributed Vision System: A Perceptual Information Infrastructure for Robot Navigation Distributed Vision System: A Perceptual Information Infrastructure for Robot Navigation Hiroshi Ishiguro Department of Information Science, Kyoto University Sakyo-ku, Kyoto 606-01, Japan E-mail: ishiguro@kuis.kyoto-u.ac.jp

More information

An Unreal Based Platform for Developing Intelligent Virtual Agents

An Unreal Based Platform for Developing Intelligent Virtual Agents An Unreal Based Platform for Developing Intelligent Virtual Agents N. AVRADINIS, S. VOSINAKIS, T. PANAYIOTOPOULOS, A. BELESIOTIS, I. GIANNAKAS, R. KOUTSIAMANIS, K. TILELIS Knowledge Engineering Lab, Department

More information

TELEROBOTICS CONTROL OF SYSTEMS WITH TIME DELAY GAP ASSESSMENT REPORT

TELEROBOTICS CONTROL OF SYSTEMS WITH TIME DELAY GAP ASSESSMENT REPORT TELEROBOTICS CONTROL OF SYSTEMS WITH TIME DELAY GAP ASSESSMENT REPORT 7/1/2018 ISECG Technology Working Group TABLE OF CONTENTS 1. EXECUTIVE SUMMARY... 5 2. GOALS, OBJECTIVES AND APPROACH... 7 2.1. Working

More information

Introduction. Abstract

Introduction. Abstract From: Proceedings of the Twelfth International FLAIRS Conference. Copyright 1999, AAAI (www.aaai.org). All rights reserved. An Overview of Agent Technology for Satellite Autonomy Paul Zetocha Lance Self

More information

Intelligent Control For Spacecraft Autonomy An Industry Survey

Intelligent Control For Spacecraft Autonomy An Industry Survey Intelligent Control For Spacecraft Autonomy An Industry Survey David. B. LaVallee Jeremy Jacobsohn Johns Hopkins University Applied Physics Laboratory Intelsat, Ltd. 11100 Johns Hopkins Road 3400 International

More information

SCOE SIMULATION. Pascal CONRATH (1), Christian ABEL (1)

SCOE SIMULATION. Pascal CONRATH (1), Christian ABEL (1) SCOE SIMULATION Pascal CONRATH (1), Christian ABEL (1) Clemessy Switzerland AG (1) Gueterstrasse 86b 4053 Basel, Switzerland E-mail: p.conrath@clemessy.com, c.abel@clemessy.com ABSTRACT During the last

More information

RECONFIGURABLE SLAM UTILISING FUZZY REASONING

RECONFIGURABLE SLAM UTILISING FUZZY REASONING RECONFIGURABLE SLAM UTILISING FUZZY REASONING Dr. Affan Shaukat Abhinav Bajpai Prof Yang Gao 13th Symposium on Advanced Space Technologies in Robotics and Automation ASTRA 2015 11-13 May ESA/ESTEC, Noordwijk,

More information

Key-Words: - Fuzzy Behaviour Controls, Multiple Target Tracking, Obstacle Avoidance, Ultrasonic Range Finders

Key-Words: - Fuzzy Behaviour Controls, Multiple Target Tracking, Obstacle Avoidance, Ultrasonic Range Finders Fuzzy Behaviour Based Navigation of a Mobile Robot for Tracking Multiple Targets in an Unstructured Environment NASIR RAHMAN, ALI RAZA JAFRI, M. USMAN KEERIO School of Mechatronics Engineering Beijing

More information

An Agent-based Heterogeneous UAV Simulator Design

An Agent-based Heterogeneous UAV Simulator Design An Agent-based Heterogeneous UAV Simulator Design MARTIN LUNDELL 1, JINGPENG TANG 1, THADDEUS HOGAN 1, KENDALL NYGARD 2 1 Math, Science and Technology University of Minnesota Crookston Crookston, MN56716

More information

The DLR On-Orbit Servicing Testbed

The DLR On-Orbit Servicing Testbed The DLR On-Orbit Servicing Testbed J. Artigas, R. Lampariello, B. Brunner, M. Stelzer, C. Borst, K. Landzettel, G. Hirzinger, A. Albu-Schäffer Robotics and Mechatronics Center, DLR VR-OOS Workshop 2012

More information

PLANLAB: A Planetary Environment Surface & Subsurface Emulator Facility

PLANLAB: A Planetary Environment Surface & Subsurface Emulator Facility Mem. S.A.It. Vol. 82, 449 c SAIt 2011 Memorie della PLANLAB: A Planetary Environment Surface & Subsurface Emulator Facility R. Trucco, P. Pognant, and S. Drovandi ALTEC Advanced Logistics Technology Engineering

More information

Results and Verification of Spacecraft Docking Emulation using Hardware-in-the-Loop Simulation

Results and Verification of Spacecraft Docking Emulation using Hardware-in-the-Loop Simulation Results and Verification of Spacecraft Docking Emulation using Hardware-in-the-Loop Simulation S6bastien Laurier Chapleau t*, l~ric Martin t* and Luc Baron* t Canadian Space Agency, St-Hubert (QC), Canada,

More information

MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT

MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT F. TIECHE, C. FACCHINETTI and H. HUGLI Institute of Microtechnology, University of Neuchâtel, Rue de Tivoli 28, CH-2003

More information

ESA UNCLASSIFIED - Releasable to the Public. ESA Workshop: Research Opportunities on the Deep Space Gateway

ESA UNCLASSIFIED - Releasable to the Public. ESA Workshop: Research Opportunities on the Deep Space Gateway ESA Workshop: Research Opportunities on the Deep Space Gateway Prepared by James Carpenter Reference ESA-HSO-K-AR-0000 Issue/Revision 1.1 Date of Issue 27/07/2017 Status Issued CHANGE LOG ESA Workshop:

More information

Status of the European Robotic Arm Project and Other Activities of the Robotics Office of ESA's ISS Programme

Status of the European Robotic Arm Project and Other Activities of the Robotics Office of ESA's ISS Programme Status of the European Robotic Arm Project and Other Activities of the Robotics Office of ESA's ISS Programme Philippe Schoonejans Head, ERA and Robotic Projects Office ESA directorate of Human Spaceflight

More information

Experimental Cooperative Control of Fixed-Wing Unmanned Aerial Vehicles

Experimental Cooperative Control of Fixed-Wing Unmanned Aerial Vehicles Experimental Cooperative Control of Fixed-Wing Unmanned Aerial Vehicles Selcuk Bayraktar, Georgios E. Fainekos, and George J. Pappas GRASP Laboratory Departments of ESE and CIS University of Pennsylvania

More information

WE SPECIALIZE IN MILITARY PNT Research Education Engineering

WE SPECIALIZE IN MILITARY PNT Research Education Engineering Defense-Focused Autonomy & Navigation Anywhere, Anytime, Using Anything WE SPECIALIZE IN MILITARY PNT Research Education Engineering RESEARCH THRUST 1 RESEARCH THRUST 2 RESEARCH THRUST 3 Autonomous & Cooperative

More information

Cognitive Robotics 2017/2018

Cognitive Robotics 2017/2018 Cognitive Robotics 2017/2018 Course Introduction Matteo Matteucci matteo.matteucci@polimi.it Artificial Intelligence and Robotics Lab - Politecnico di Milano About me and my lectures Lectures given by

More information

7th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2002' ESTEC, Noordwijk, The Netherlands, November 19-21, 2002

7th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2002' ESTEC, Noordwijk, The Netherlands, November 19-21, 2002 KEYWORDS: A Novel Robotic Hand-SARAH For Operations on the International Space Station Bruno Rubinger (1), Mike Brousseau (1), John Lymer (1), Clement Gosselin (2), Thierry Laliberté (2), Jean-Claude Piedbœuf

More information

A simple embedded stereoscopic vision system for an autonomous rover

A simple embedded stereoscopic vision system for an autonomous rover In Proceedings of the 8th ESA Workshop on Advanced Space Technologies for Robotics and Automation 'ASTRA 2004' ESTEC, Noordwijk, The Netherlands, November 2-4, 2004 A simple embedded stereoscopic vision

More information

ACHIEVING SEMI-AUTONOMOUS ROBOTIC BEHAVIORS USING THE SOAR COGNITIVE ARCHITECTURE

ACHIEVING SEMI-AUTONOMOUS ROBOTIC BEHAVIORS USING THE SOAR COGNITIVE ARCHITECTURE 2010 NDIA GROUND VEHICLE SYSTEMS ENGINEERING AND TECHNOLOGY SYMPOSIUM MODELING & SIMULATION, TESTING AND VALIDATION (MSTV) MINI-SYMPOSIUM AUGUST 17-19 DEARBORN, MICHIGAN ACHIEVING SEMI-AUTONOMOUS ROBOTIC

More information

Cognitive robots and emotional intelligence Cloud robotics Ethical, legal and social issues of robotic Construction robots Human activities in many

Cognitive robots and emotional intelligence Cloud robotics Ethical, legal and social issues of robotic Construction robots Human activities in many Preface The jubilee 25th International Conference on Robotics in Alpe-Adria-Danube Region, RAAD 2016 was held in the conference centre of the Best Western Hotel M, Belgrade, Serbia, from 30 June to 2 July

More information

NASA Mission Directorates

NASA Mission Directorates NASA Mission Directorates 1 NASA s Mission NASA's mission is to pioneer future space exploration, scientific discovery, and aeronautics research. 0 NASA's mission is to pioneer future space exploration,

More information

FORCE-FEEDBACK TELEOPERATION OF ON-GROUND ROBOTS FROM THE INTERNATIONAL SPACE STATION IN THE FRAME OF THE KONTUR-2 EXPERIMENT

FORCE-FEEDBACK TELEOPERATION OF ON-GROUND ROBOTS FROM THE INTERNATIONAL SPACE STATION IN THE FRAME OF THE KONTUR-2 EXPERIMENT J. Artigas (1), C. Riecke (1), B. Weber (1), M. Stelzer (1), R. Balachandran (1), S. Schaetzle (1), R. Bayer (1), M. Steinmetz (1), J. Voegl (1), B. Brunner (1), A. Albu-Schaeffer (1), M. Guk (2),V. Zaborovskyi

More information

estec PROSPECT Project Objectives & Requirements Document

estec PROSPECT Project Objectives & Requirements Document estec European Space Research and Technology Centre Keplerlaan 1 2201 AZ Noordwijk The Netherlands T +31 (0)71 565 6565 F +31 (0)71 565 6040 www.esa.int PROSPECT Project Objectives & Requirements Document

More information

Traded Control with Autonomous Robots as Mixed Initiative Interaction

Traded Control with Autonomous Robots as Mixed Initiative Interaction From: AAAI Technical Report SS-97-04. Compilation copyright 1997, AAAI (www.aaai.org). All rights reserved. Traded Control with Autonomous Robots as Mixed Initiative Interaction David Kortenkamp, R. Peter

More information

The EUROPA Ground Segment

The EUROPA Ground Segment The EUROPA Ground Segment R. Leone - S. Losito - R. Mugnuolo - A. Olivieri - F. Pasquali (ASI) F. Didot (ESA-ESTEC) M. Favaretto - R. Finotello - A. Terribile (Tecnomare SpA) ABSTRACT For more than 10

More information

Overview. Modularity In Space Assembly Robotics

Overview. Modularity In Space Assembly Robotics Building A Solar Power Satellite: Modularity, In Space Assembly, and Robotics Paul Jaffe paul.jaffe@nrl.navy.mil 1 Overview Modularity In Space Assembly Robotics 2 What is Modularity? Source: https://www.merriam

More information

Asteroid Redirect Mission and Human Exploration. William H. Gerstenmaier NASA Associate Administrator for Human Exploration and Operations

Asteroid Redirect Mission and Human Exploration. William H. Gerstenmaier NASA Associate Administrator for Human Exploration and Operations Asteroid Redirect Mission and Human Exploration William H. Gerstenmaier NASA Associate Administrator for Human Exploration and Operations Leveraging Capabilities for an Asteroid Mission NASA is aligning

More information

Stanford Center for AI Safety

Stanford Center for AI Safety Stanford Center for AI Safety Clark Barrett, David L. Dill, Mykel J. Kochenderfer, Dorsa Sadigh 1 Introduction Software-based systems play important roles in many areas of modern life, including manufacturing,

More information

Skyworker: Robotics for Space Assembly, Inspection and Maintenance

Skyworker: Robotics for Space Assembly, Inspection and Maintenance Skyworker: Robotics for Space Assembly, Inspection and Maintenance Sarjoun Skaff, Carnegie Mellon University Peter J. Staritz, Carnegie Mellon University William Whittaker, Carnegie Mellon University Abstract

More information

Capturing and Adapting Traces for Character Control in Computer Role Playing Games

Capturing and Adapting Traces for Character Control in Computer Role Playing Games Capturing and Adapting Traces for Character Control in Computer Role Playing Games Jonathan Rubin and Ashwin Ram Palo Alto Research Center 3333 Coyote Hill Road, Palo Alto, CA 94304 USA Jonathan.Rubin@parc.com,

More information

Spacecraft Autonomy. Seung H. Chung. Massachusetts Institute of Technology Satellite Engineering Fall 2003

Spacecraft Autonomy. Seung H. Chung. Massachusetts Institute of Technology Satellite Engineering Fall 2003 Spacecraft Autonomy Seung H. Chung Massachusetts Institute of Technology 16.851 Satellite Engineering Fall 2003 Why Autonomy? Failures Anomalies Communication Coordination Courtesy of the Johns Hopkins

More information

NASA s Strategy for Enabling the Discovery, Access, and Use of Earth Science Data

NASA s Strategy for Enabling the Discovery, Access, and Use of Earth Science Data NASA s Strategy for Enabling the Discovery, Access, and Use of Earth Science Data Francis Lindsay, PhD Martha Maiden Science Mission Directorate NASA Headquarters IEEE International Geoscience and Remote

More information

Intelligent Power Economy System (Ipes)

Intelligent Power Economy System (Ipes) American Journal of Engineering Research (AJER) e-issn : 2320-0847 p-issn : 2320-0936 Volume-02, Issue-08, pp-108-114 www.ajer.org Research Paper Open Access Intelligent Power Economy System (Ipes) Salman

More information

Design and Control of the BUAA Four-Fingered Hand

Design and Control of the BUAA Four-Fingered Hand Proceedings of the 2001 IEEE International Conference on Robotics & Automation Seoul, Korea May 21-26, 2001 Design and Control of the BUAA Four-Fingered Hand Y. Zhang, Z. Han, H. Zhang, X. Shang, T. Wang,

More information

Keywords: Multi-robot adversarial environments, real-time autonomous robots

Keywords: Multi-robot adversarial environments, real-time autonomous robots ROBOT SOCCER: A MULTI-ROBOT CHALLENGE EXTENDED ABSTRACT Manuela M. Veloso School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213, USA veloso@cs.cmu.edu Abstract Robot soccer opened

More information

Platform Independent Launch Vehicle Avionics

Platform Independent Launch Vehicle Avionics Platform Independent Launch Vehicle Avionics Small Satellite Conference Logan, Utah August 5 th, 2014 Company Introduction Founded in 2011 The Co-Founders blend Academia and Commercial Experience ~20 Employees

More information

Exploration Partnership Strategy. Marguerite Broadwell Exploration Systems Mission Directorate

Exploration Partnership Strategy. Marguerite Broadwell Exploration Systems Mission Directorate Exploration Partnership Strategy Marguerite Broadwell Exploration Systems Mission Directorate October 1, 2007 Vision for Space Exploration Complete the International Space Station Safely fly the Space

More information

Fault Management Architectures and the Challenges of Providing Software Assurance

Fault Management Architectures and the Challenges of Providing Software Assurance Fault Management Architectures and the Challenges of Providing Software Assurance Presented to the 31 st Space Symposium Date: 4/14/2015 Presenter: Rhonda Fitz (MPL) Primary Author: Shirley Savarino (TASC)

More information

From ISS to Human Space Exploration: TAS-I contribution and perspectives

From ISS to Human Space Exploration: TAS-I contribution and perspectives Mem. S.A.It. Vol. 82, 443 c SAIt 2011 Memorie della From ISS to Human Space Exploration: TAS-I contribution and perspectives P. Messidoro Thales Alenia Space Italia Strada A. di Collegno 253, I-10146 Torino,

More information

MarineSIM : Robot Simulation for Marine Environments

MarineSIM : Robot Simulation for Marine Environments MarineSIM : Robot Simulation for Marine Environments P.G.C.Namal Senarathne, Wijerupage Sardha Wijesoma,KwangWeeLee, Bharath Kalyan, Moratuwage M.D.P, Nicholas M. Patrikalakis, Franz S. Hover School of

More information

Autonomous Control for Unmanned

Autonomous Control for Unmanned Autonomous Control for Unmanned Surface Vehicles December 8, 2016 Carl Conti, CAPT, USN (Ret) Spatial Integrated Systems, Inc. SIS Corporate Profile Small Business founded in 1997, focusing on Research,

More information

61 st International Astronautical Congress, Prague, CZ. Copyright 2010 by the International Astronautical Federation. All rights reserved.

61 st International Astronautical Congress, Prague, CZ. Copyright 2010 by the International Astronautical Federation. All rights reserved. IAC-10-A3.1.1 ASSESSING SPACE EXPLORATION TECHNOLOGY REQUIREMENTS AS A FIRST STEP TO- WARDS ENSURING TECHNOLOGY READINESS FOR INTERNATIONAL COOPERATION IN SPACE EXPLORATION Jean-Claude Piedbœuf Canadian

More information

Model Based AOCS Design and Automatic Flight Code Generation: Experience and Future Development

Model Based AOCS Design and Automatic Flight Code Generation: Experience and Future Development ADCSS 2016 October 20, 2016 Model Based AOCS Design and Automatic Flight Code Generation: Experience and Future Development SATELLITE SYSTEMS Per Bodin Head of AOCS Department OHB Sweden Outline Company

More information

Introduction To Cognitive Robots

Introduction To Cognitive Robots Introduction To Cognitive Robots Prof. Brian Williams Rm 33-418 Wednesday, February 2 nd, 2004 Outline Examples of Robots as Explorers Course Objectives Student Introductions and Goals Introduction to

More information

Dream Chaser Frequently Asked Questions

Dream Chaser Frequently Asked Questions Dream Chaser Frequently Asked Questions About the Dream Chaser Spacecraft Q: What is the Dream Chaser? A: Dream Chaser is a reusable, lifting-body spacecraft that provides a flexible and affordable space

More information

QUEST Vision for Exploration of Space

QUEST Vision for Exploration of Space QUEST for Human Exploration of the Solar System GSAW99 NASA/JSC/Lynn R. Vernon 1 Why are we Here? Present a vision of the Ground and Space architecture to support the Human exploration of space. Develop

More information

The PROBA Missions Design Capabilities for Autonomous Guidance, Navigation and Control. Jean de Lafontaine President

The PROBA Missions Design Capabilities for Autonomous Guidance, Navigation and Control. Jean de Lafontaine President The PROBA Missions Design Capabilities for Autonomous Guidance, Navigation and Control Jean de Lafontaine President Overview of NGC NGC International Inc (holding company) NGC Aerospace Ltd Sherbrooke,

More information

Human Robot Interaction (HRI)

Human Robot Interaction (HRI) Brief Introduction to HRI Batu Akan batu.akan@mdh.se Mälardalen Högskola September 29, 2008 Overview 1 Introduction What are robots What is HRI Application areas of HRI 2 3 Motivations Proposed Solution

More information

A Virtual Reality Tool for Teleoperation Research

A Virtual Reality Tool for Teleoperation Research A Virtual Reality Tool for Teleoperation Research Nancy RODRIGUEZ rodri@irit.fr Jean-Pierre JESSEL jessel@irit.fr Patrice TORGUET torguet@irit.fr IRIT Institut de Recherche en Informatique de Toulouse

More information

Science Enabled by the Return to the Moon (and the Ares 5 proposal)

Science Enabled by the Return to the Moon (and the Ares 5 proposal) Science Enabled by the Return to the Moon (and the Ares 5 proposal) Harley A. Thronson Exploration Concepts & Applications, Flight Projects Division NASA GSFC and the Future In-Space Operations (FISO)

More information

Happy ChickenS. Innovative technologies for mission operations

Happy ChickenS. Innovative technologies for mission operations innovative technologies Happy ChickenS from Fresh Eggs Innovative technologies for mission operations Alessandro Donati Head of Advanced Mission Concepts and Technologies Office Directorate of Operations

More information

Dream Chaser for European Utilization (DC 4 EU):

Dream Chaser for European Utilization (DC 4 EU): 54th European Space Science Committee Plenary Meeting 22-24 November 2017 German Aerospace Centre DLR Obepfaffenhofen, Germany Presenter: Dr. Marco Berg Dream Chaser for European Utilization (DC 4 EU):

More information

II. ROBOT SYSTEMS ENGINEERING

II. ROBOT SYSTEMS ENGINEERING Mobile Robots: Successes and Challenges in Artificial Intelligence Jitendra Joshi (Research Scholar), Keshav Dev Gupta (Assistant Professor), Nidhi Sharma (Assistant Professor), Kinnari Jangid (Assistant

More information

Using Dynamic Capability Evaluation to Organize a Team of Cooperative, Autonomous Robots

Using Dynamic Capability Evaluation to Organize a Team of Cooperative, Autonomous Robots Using Dynamic Capability Evaluation to Organize a Team of Cooperative, Autonomous Robots Eric Matson Scott DeLoach Multi-agent and Cooperative Robotics Laboratory Department of Computing and Information

More information