Mobile Rescue Robot based on the RoboCup Rescue (NIST) Standards

Size: px
Start display at page:

Download "Mobile Rescue Robot based on the RoboCup Rescue (NIST) Standards"

Transcription

1 University of Manitoba Department of Electrical & Computer Engineering ECE 4600 Group Design Project Progress Report Mobile Rescue Robot based on the RoboCup Rescue (NIST) Standards by Group 05 Justin Dyck Josh Greenberg Morgan Sitter Joseph Ethier Craig Nemeth Academic Supervisor(s) Dr. Zahra Moussavi Industry Supervisors Dr. Ahmad Byagowi Younes Sleep Technology Date of Submission January 12, 2015 Copyright 2015 Justin Dyck, Joseph Ethier, Josh Greenberg, Craig Nemeth, Morgan Sitter

2 TABLE OF CONTENTS Table of Contents 1 Introduction Project Progress Chassis (Morgan Sitter) Motors (Morgan Sitter and Joe Ethier) Speed Controllers (Morgan Sitter and Joe Ethier) Batteries (Morgan Sitter and Joe Ethier) Robot Control Unit (Craig Nemeth and Josh Greenberg) Hard Real-Time Tasks (Craig Nemeth) Soft Real-Time Tasks (Josh Greenberg) Operator Station (Justin Dyck) Future Work Chassis (Morgan Sitter) Motors (Morgan Sitter and Joe Ethier) Batteries (Morgan Sitter and Joe Ethier) Hard Real-Time System (Craig Nemeth) Soft Real-Time System (Josh Greenberg) Operator Station (Justin Dyck) Conclusions Appendix A Updated Gantt Chart Appendix B Updated Budget i

3 1 Introduction 1 Introduction Our objective is to design, build and test a remotely operated robot capable of aiding in search and rescue relief efforts. The final product must be capable of traversing rough terrain to locate and identify potential victims. The robot consists of six major subsystems: mechanical design, motor and control, battery and power distribution system, command and data handling, vision system and operator station. Currently we are testing the battery, motors, motor controllers, and control hardware. Software for the operator station is being interfaced with the Linux system, and the Linux system is being transferred to a physical implementation on the UDOO. Finally, the Arduino s scheduling software and remaining device drivers are being developed. The project is approximately three weeks behind schedule due to funding difficulties resulting in a revised budget of $ (see Appendix B). With a minor redesign to reduce costs, we expect to complete the project on time. 2 Project Progress 2.1 Chassis (Morgan Sitter) The robot has been redesigned to weigh 20 kg instead of the original 30 kg estimate. 1/8-inch aluminum will be used instead of 3/16-inch to accommodate the lighter robot components. We have designed six separate aluminum plates which will be bolted together with steel brackets to form an enclosed casing for all components. An opening in the centre of the chassis will allow the manipulator arm to move through the body of the robot. 2.2 Motors (Morgan Sitter and Joe Ethier) The drive motors provide power to both the tracks and the flipper arms. In addition, four G15 Cube servos have been supplied by our advisor for use in the manipulator arm. Four geared motors will be used to drive the tracks and flipper arms. The motors need to handle the worst case scenario 1

4 2 Project Progress of climbing a 45-degree incline. We previously completed a preliminary design and one motor was ordered but later realized that the motor could potentially draw too much current from the battery. Furthermore, adding a gearbox to each motor would increase the weight and complexity of the design. As a replacement, we then found lighter, geared motors that draw less current. We have ordered these motors and they are expected to arrive in two weeks. 2.3 Speed Controllers (Morgan Sitter and Joe Ethier) Each of the four motors requires an electronic speed controller (ESC) to control the the drive speed of the motors. We originally purchased a SyRen-10A ESC rated at 30 V maximum. During testing, this ESC did not work with our 29.4 V peak battery. After contacting the supplier, we discovered the SyRen-10A has an undocumented 28.4 V shield preventing it from operating at the maximum voltage of our battery. The preferred solution was to buy new speed controllers. We were able to get a refund on the previous controller and have ordered two new ESCs (Sabertooth Dual 25A 6V-30V Regenerative Motor Driver). These new ESCs can each drive two motors simultaneously. Finally, a motion control algorithm will be designed by Joe Ethier and Morgan Sitter and passed on to Craig Nemeth for implementation on the Arduino. Currently the algorithm is in the beginning stages of development. 2.4 Batteries (Morgan Sitter and Joe Ethier) The main 29.4 V peak, 12.6 Ah lithium polymer battery is used to power the drive and flipper arm motors. The battery has arrived and has been tested with the first ESC. The secondary battery will be a lithium polymer battery specified at 11.1 V, 3 Ah and a maximum current discharge of 7 A. This is sufficient to power the UDOO and its peripherals. 2

5 2 Project Progress 2.5 Robot Control Unit (Craig Nemeth and Josh Greenberg) We defined tasks the system had to handle and classified them as periodic or sporadic. Next, we decided upon the periods and priorities of these tasks, dividing them into hard and soft real-time. Finally, we researched devices capable of handling these tasks and selected the best candidates based on efficiency, functionality, and cost. The UDOO single-board computer was chosen over microcontrollers and FPGAs as the central processing unit because it contains the low-level interface of a microcontroller, the high processing power of an ARM quad-core processor, and is simpler to implement over an FPGA. We have acquired the UDOO and software development is ongoing. We then designed a lightweight communication protocol to handle the transfer of data throughout the system. This protocol encompasses control and status messages between the operator and the hard real-time system via the soft real-time system. 2.6 Hard Real-Time Tasks (Craig Nemeth) The Arduino Due on the UDOO has been chosen to handle all hard real-time events. The nested vector interrupt controller (NVIC) has been utilized to implement a state machine to handle all tasks required by the system. The hard real-time processing system consists of a device to detect orientation and acceleration of the robot and a device to detect processor failure. The BNO055, an accelerometer, gyroscope and magnetometer (AGM), was selected to to detect orientation and acceleration. This AGM was chosen because it has an on-board processor for data gathering and uses all of the sensors to calibrate each other, providing an accurate and efficient input to the motion control algorithm. The AGM has been acquired and a software library has been developed. The watchdog timer, which is built into the UDOO, was selected to monitor the processors for failure and restart them if necessary. The hard real-time processing system interfaces with the electric drive, soft real-time processing 3

6 2 Project Progress system, and power system. Driver software has been developed and tested for the ESCs. Quadrature encoders, with built-in decoders, have been selected for positional input to the electric drive. These high resolution encoders can determine the direction of rotation and offload some of the processing. Interprocessor serial communication has been tested between the soft and hard real-time systems. Temperature and voltage sensors have been selected to monitor the power system but have yet to be interfaced. 2.7 Soft Real-Time Tasks (Josh Greenberg) Robot Operating System (ROS), a heavily backed open source robotics platform, was chosen to handle the soft real-time tasks since it provides a number of libraries that are directly applicable to the project. Significant literature review has been dedicated to understanding ROS. Among the soft real-time components is the vision system. Two cameras were specified and purchased, and a proof-of-concept video streaming server was implemented in ROS. This work was done on a virtual Linux machine using GStreamer, a multimedia library which simplifies the task of media streaming. In order to reduce processor load, a lightweight operating system was chosen. Ubuntu Core was chosen for its kernel size and minimal footprint (no graphical user-interface). Currently, all the major parts required for the soft real-time tasks have been received and development is ongoing. 2.8 Operator Station (Justin Dyck) The operator station provides an interface to control and monitor the robot remotely. A Windows PC coupled with a gaming joystick serves as the hardware platform. Custom graphical user interface (GUI) software is being developed for the PC allowing the operator to observe on-board cameras, sensors and other indicators, and monitor system health. The Logitech Extreme 3D Pro joystick has been selected, tested, and confirmed to perform all functions required to operate the robot. This device has four analog axes, one hat switch, and 4

7 3 Future Work twelve buttons, all of which have been interfaced with the Simple DirectMedia Layer (SDL) library. The custom GUI software is being developed in C++ with the Qt application framework, allowing for streamlined development and cross-platform compatibility if desired in the future. Subcomponents of the software which are complete and ready for testing include the TCP network socket interface, data packet generators and parsers, joystick handling thread (SDL context), text indicator displays, console display, and various configuration dialogs. 3 Future Work 3.1 Chassis (Morgan Sitter) The chassis design and layout of components still need to be finalized with construction to begin immediately after. 3.2 Motors (Morgan Sitter and Joe Ethier) The motion control algorithms for the drive motors still need to be designed and tested. 3.3 Batteries (Morgan Sitter and Joe Ethier) The main battery will need to be tested with the newly purchased motor controllers. The secondary battery needs to be ordered and tested with the UDOO and its peripherals. A 10 A current limiter circuit will be needed at the power terminals of each motor controller to limit the current drawn by the 25 A ESCs. A capacitor will be added at the terminals of the battery to handle burst currents if all drive and flipper arm motors are activated. 3.4 Hard Real-Time System (Craig Nemeth) Future work on the hard real-time processing system will involve the development of a real-time operating system, which is currently in progress. The NVIC state machine is a contingency in case 5

8 4 Conclusions the operating system fails to materialize. Device software remaining includes the drivers for the quadrature encoders, temperature sensors, voltage sensors, and watchdog timer. The encoders are the only devices yet to be acquired. They have been ordered and are expected to arrive next week. 3.5 Soft Real-Time System (Josh Greenberg) The UDOO must be loaded with a pre-configured image of the operating system and tested to ensure all hardware integration works as expected. The Wi-Fi module must be configured as an access point and tested. Additionally, both camera streams need to be tested and fine-tuned for quality and reliability. ROS must be configured to route messages and data between the operator station and the hard real-time system. 3.6 Operator Station (Justin Dyck) Subcomponents which are incomplete or currently in development include the UDP network interface, video data parser and displays, graphical indicator displays, supplementary control panel, and 3D visualization implementation. 4 Conclusions Apart from the electric drive, other systems have not experienced major technical issues during development. Despite the delay incurred by funding gaps, we still plan to complete the project with our revised budget of $ by the expected due date. 6

9 Appendix A Updated Gantt Chart Figure A.1 shows a Gantt chart depicting the project timeline. Our original Gantt chart has been updated to indicate our progress on certain tasks. Green indicates completion, red indicates delay and blue indicates future work. Currently, we are about three weeks behind schedule due to delays in funding. Software development is nearing completion and the majority of parts have been received or ordered. In order to save time, we will be combining the component and system assembly phases of the project. 7

10 Component Task Name Duration Phase 1 Research, Design & Procurement 130 days August 1 September 1 October 1 November 1 December 1 January 1 February 1 March 1 7/20 8/3 8/17 8/31 9/14 9/28 10/12 10/26 11/9 11/23 12/7 12/21 1/4 1/18 2/1 2/15 3/1 3/15 12/20 N/A RoboCup competition research / 7 days requirements gathering ALL Design robot architecture 14 days CHASSIS Design robot chassis 10 days POWER Design power system and drive mechanics 18 days CMD Design and develop command & control 99 days system VISION Design and develop vision system 99 days OPS Design and develop operator interface 99 days ALL Order/Manufacture Long Lead-Time Parts 14 days ALL Order/Manufacture Short Lead-Time 30 days Parts Phase 2 Component Assembly & Testing 18 days 1/7 CHASSIS Assemble chassis and track system 3 days CHASSIS Test chassis durability and mechanics 2 days POWER Assemble drive-train and motor/battery 7 days system POWER Test power system and drive-train 6 days OPS Test operator station functionality 18 days VISION Assemble main and secondary camera 4 days modules VISION Test vision system 7 days CMD Interface command & control system with3 days other modules and sensors CMD Test command & control system 3 days Phase 3 System Assembly & Testing 25 days 2/1 POWER Install power system and drive-train onto 5 days chassis POWER Test chassis/drive-train/power system 5 days CMD Install command & control system onto 3 days chassis VISION Install vision system onto chassis 3 days CMD Test robot-operator communications 3 days OPS Test control interface and functions 5 days ALL Adjust design parameters based on 4 days system tests Phase 4 Live Testing & Fine-Tuning 14 days 2/14 N/A Create mockup arena 3 days N/A Test different mission scenarios 6 days ALL Adjust control parameters as needed 4 days N/A Final project sign-off 0 days Fig. A.1: GANTT Chart for the mobile rescue robot design project. 8

11 Appendix B Updated Budget Table I provides a breakdown of our updated budget. Our initial budget proposed two different design options based on how much funding we could receive. The first option involved machining the chassis ourselves and the second option involved purchasing a pre-built chassis, alleviating us of much of the mechanical design work. The two design options were projected to cost $3575 and $7990 respectively. After an unsuccessful funding campaign and further design iterations, the budget was reduced to $ $500 is covered by the Department of Electrical and Computer Engineering and $200 is covered by Fort Garry Fire Trucks. The remaining cost of $ will be absorbed by the team members or by other organizations should we receive funding in the future. Most of the parts for the project have already been received or are on order. The parts that still need to be ordered include the tracks, track wheels, wheel bearings, flipper arms, flipper arm wheels, secondary battery and charger, sensors, connectors, and LED lights. We expect to have these remaining parts ordered by January 16, 2015 and delivered by the end of January. 9

12 Table I: Project Budget Item Part Number Supplier Unit Cost QTY Total Chassis Aluminium Plate N/A Speciallaser Tech $ $95.00 Robot Tracks TBD TBD $ $ Wheels TBD TBD $ $ Wheel Bearing Sets TBD TBD $ $40.00 Flipper Arm Rods TBD TBD $ $40.00 Flipper Arm Wheels TBD TBD $ $15.00 Motors, Controllers and Batteries 24V LH Drive Motor AME RobotMarketPlace $ $ V RH Drive Motor AME RobotMarketPlace $ $71.00 Dual Motor Driver RB-Dim-23 RobotShop $ $ Rotary Encoders RB-Sbo-31 RobotShop $ $78.12 Cube Servo Motor G15 Supplied by ECE $ $ V 12.6Ah Battery PL-25.9V12.6Ah Battery Space $ $ V Battery Charger CH-L25928 Battery Space $ $ V 3.65Ah Battery TBD TBD $ $ V Battery Charger TBD TBD $ $20.00 Robot Control Unit UDOO Board UDOO Quad Supplied by ECE $ $0.00 AGM BNO055 Supplied by ECE $ $0.00 Various Sensors N/A N/A $50.00 N/A $50.00 Wires/Connectors N/A N/A $ N/A $ Primary Camera Logitech C525 BestBuy $ $70.00 Secondary Camera PS3 Eye Supplied by Team $ $0.00 LED Lights TBD TBD $ $20.00 Operator Station Operator Laptop N/A Supplied by Team N/A 1 N/A Joystick Amazon $ $33.00 Subtotal: $ Shipping, Taxes and Duties: $ Total: $

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking ECE 4600 GROUP DESIGN PROJECT PROGRESS REPORT GROUP 03 Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking Authors Radeon Shamilov Kresta Zumel Valeria Pevtsov Reza Fazel-Darbandi

More information

UNIVERSITÉ DE MONCTON FACULTÉ D INGÉNIERIE. Moncton, NB, Canada PROJECT BREAKPOINT 2015 IGVC DESIGN REPORT UNIVERSITÉ DE MONCTON ENGINEERING FACULTY

UNIVERSITÉ DE MONCTON FACULTÉ D INGÉNIERIE. Moncton, NB, Canada PROJECT BREAKPOINT 2015 IGVC DESIGN REPORT UNIVERSITÉ DE MONCTON ENGINEERING FACULTY FACULTÉ D INGÉNIERIE PROJECT BREAKPOINT 2015 IGVC DESIGN REPORT UNIVERSITÉ DE MONCTON ENGINEERING FACULTY IEEEUMoncton Student Branch UNIVERSITÉ DE MONCTON Moncton, NB, Canada 15 MAY 2015 1 Table of Content

More information

Solar Powered Golf Cart

Solar Powered Golf Cart Solar Powered Golf Cart Group 9 Jake Bettis Jacob Krueger Matt Roland Matt Tourtelot Project Description The main objective of this project is to design and build a solar-powered, energy efficient electric

More information

INTRODUCTION Team Composition Electrical System

INTRODUCTION Team Composition Electrical System IGVC2015-WOBBLER DESIGN OF AN AUTONOMOUS GROUND VEHICLE BY THE UNIVERSITY OF WEST FLORIDA UNMANNED SYSTEMS LAB FOR THE 2015 INTELLIGENT GROUND VEHICLE COMPETITION University of West Florida Department

More information

NASA University Student Launch Initiative (Sensor Payload) Final Design Review. Payload Name: G.A.M.B.L.S.

NASA University Student Launch Initiative (Sensor Payload) Final Design Review. Payload Name: G.A.M.B.L.S. NASA University Student Launch Initiative (Sensor Payload) Final Design Review Payload Name: G.A.M.B.L.S. CPE496-01 Computer Engineering Design II Electrical and Computer Engineering The University of

More information

Super Squadron technical paper for. International Aerial Robotics Competition Team Reconnaissance. C. Aasish (M.

Super Squadron technical paper for. International Aerial Robotics Competition Team Reconnaissance. C. Aasish (M. Super Squadron technical paper for International Aerial Robotics Competition 2017 Team Reconnaissance C. Aasish (M.Tech Avionics) S. Jayadeep (B.Tech Avionics) N. Gowri (B.Tech Aerospace) ABSTRACT The

More information

UAV KF-1 helicopter. CopterCam UAV KF-1 helicopter specification

UAV KF-1 helicopter. CopterCam UAV KF-1 helicopter specification UAV KF-1 helicopter The provided helicopter is a self-stabilizing unmanned mini-helicopter that can be used as an aerial platform for several applications, such as aerial filming, photography, surveillance,

More information

SAE Mini BAJA: Suspension and Steering

SAE Mini BAJA: Suspension and Steering SAE Mini BAJA: Suspension and Steering By Zane Cross, Kyle Egan, Nick Garry, Trevor Hochhaus Team 11 Progress Report Submitted towards partial fulfillment of the requirements for Mechanical Engineering

More information

Linear Induction Motor (LIMO) Modular Test Bed for Various Applications

Linear Induction Motor (LIMO) Modular Test Bed for Various Applications Linear Induction Motor (LIMO) Modular Test Bed for Various Applications ECE 4901 Senior Design I Fall 2013 Fall Project Report Team 190 Members: David Hackney Jonathan Rarey Julio Yela Faculty Advisor

More information

Linear Induction Motor (LIMO) Modular Test Bed for Various Applications

Linear Induction Motor (LIMO) Modular Test Bed for Various Applications Linear Induction Motor (LIMO) Modular Test Bed for Various Applications University of Connecticut Department of Electrical and Computer Engineering Advanced Power Electronics and Electric Drives Lab (APEDL)

More information

Cilantro. Old Dominion University. Team Members:

Cilantro. Old Dominion University. Team Members: Cilantro Old Dominion University Faculty Advisor: Dr. Lee Belfore Team Captain: Michael Micros lbelfore@odu.edu mmicr001@odu.edu Team Members: Ntiana Sakioti Matthew Phelps Christian Lurhakumbira nsaki001@odu.edu

More information

Eurathlon Scenario Application Paper (SAP) Review Sheet

Eurathlon Scenario Application Paper (SAP) Review Sheet Scenario Application Paper (SAP) Review Sheet Team/Robot Scenario FKIE Reconnaissance and surveillance in urban structures (USAR) For each of the following aspects, especially concerning the team s approach

More information

NAU Robosub. Project Proposal

NAU Robosub. Project Proposal NAU Robosub Project Proposal Mansour Alajemi, Feras Aldawsari, Curtis Green, Daniel Heaton, Wenkai Ren, William Ritchie, Bethany Sprinkle, Daniel Tkachenko December 09, 2015 Bethany Overview Introduction

More information

Table of Contents. Abstract... Pg. (2) Project Description... Pg. (2) Design and Performance... Pg. (3) OOM Block Diagram Figure 1... Pg.

Table of Contents. Abstract... Pg. (2) Project Description... Pg. (2) Design and Performance... Pg. (3) OOM Block Diagram Figure 1... Pg. March 5, 2015 0 P a g e Table of Contents Abstract... Pg. (2) Project Description... Pg. (2) Design and Performance... Pg. (3) OOM Block Diagram Figure 1... Pg. (4) OOM Payload Concept Model Figure 2...

More information

Cooperative EVA/Telerobotic Surface Operations in Support of Exploration Science

Cooperative EVA/Telerobotic Surface Operations in Support of Exploration Science Cooperative EVA/Telerobotic Surface Operations in Support of Exploration Science David L. Akin http://www.ssl.umd.edu Planetary Surface Robotics EVA support and autonomous operations at all physical scales

More information

PRELIMINARY DESIGN REVIEW. LFEV-ESCM-2014 February 13, 2014

PRELIMINARY DESIGN REVIEW. LFEV-ESCM-2014 February 13, 2014 PRELIMINARY DESIGN REVIEW LFEV-ESCM-2014 February 13, 2014 LFEV-Y2-2014 Continuation of Lafayette Formula Electric Vehicle-Energy Storage, Control, and Management (LFEV-ESCM) project for use in the Formula

More information

EcoCar3-ADAS. Project Plan. Summary. Why is This Project Important?

EcoCar3-ADAS. Project Plan. Summary. Why is This Project Important? EcoCar3-ADAS Project Plan Summary Scott Smith This project is the Advanced Driver Assistance System (ADAS) of the 2015-2016 Senior Design for the EcoCar3. This will be an embedded system for the EcoCar3

More information

Adult Sized Humanoid Robot: Archie

Adult Sized Humanoid Robot: Archie Adult Sized Humanoid Robot: Archie Jacky Baltes 1, Chi Tai Cheng 1, M.C. Lau 1, Ahmad Byagowi 2, Peter Kopacek 2, and John Anderson 1 1 Autonomous Agent Lab University of Manitoba Winnipeg, Manitoba Canada,

More information

AcuBMS Battery Management System for Rechargeable Lithium-Based Batteries ELECOMP Capstone Design Project

AcuBMS Battery Management System for Rechargeable Lithium-Based Batteries ELECOMP Capstone Design Project AcuBMS Battery Management System for Rechargeable Lithium-Based Batteries ELECOMP Capstone Design Project 2018-2019 Sponsoring Company: Acumentrics, Inc 10 Walpole Park South Walpole, MA 02081 1-617-935-7877

More information

IEEE SoutheastCon Hardware Challenge

IEEE SoutheastCon Hardware Challenge IEEE SoutheastCon Hardware Challenge Cameron McSweeney, Kendall Knapp Brian Roskuszka, Daniel Hofstetter Advisors: Dr. Jing Wang, Dr. Yufeng Lu, Dr. In Soo Ahn Overview Introduction Review of Literature

More information

Build Season Overview Nabeel Peshimam October 27 th, 2014

Build Season Overview Nabeel Peshimam October 27 th, 2014 Build Season Overview Nabeel Peshimam October 27 th, 2014 ! Two Robots?!! Documentation! Subteam Division! Kickoff! Game Analysis! Priority List! Weeks 1-4! Concept Design! Prototyping! Design Freezes!!

More information

Eurathlon Scenario Application Paper (SAP) Review Sheet

Eurathlon Scenario Application Paper (SAP) Review Sheet Scenario Application Paper (SAP) Review Sheet Team/Robot Scenario FKIE Autonomous Navigation For each of the following aspects, especially concerning the team s approach to scenariospecific challenges,

More information

Mobile Robot Design Notes

Mobile Robot Design Notes Mobile Robot Design Notes The mobile robot is a simple design with two-wheel differential steering and a rear castor. It is designed for teaching use in MTRX3700 Mechatronics 3 and other units of study.

More information

Closing Sale Prices. AmigoBot Pioneer 3-DX Pioneer 3-AT Pioneer LX Pioneer Manipulator PeopleBot PowerBot Seekur Jr

Closing Sale Prices. AmigoBot Pioneer 3-DX Pioneer 3-AT Pioneer LX Pioneer Manipulator PeopleBot PowerBot Seekur Jr 10 Columbia Drive Amherst, NH 03031 USA T. +1.603.881.7960 F. +1.603.881.3818 www.mobilerobots.com Closing Prices 90 Day Warranty on all s Limited Quantities Available Models AmigoBot Pioneer 3-DX Pioneer

More information

NASA Glenn Research Center Intelligent Power System Control Development for Deep Space Exploration

NASA Glenn Research Center Intelligent Power System Control Development for Deep Space Exploration National Aeronautics and Space Administration NASA Glenn Research Center Intelligent Power System Control Development for Deep Space Exploration Anne M. McNelis NASA Glenn Research Center Presentation

More information

Design and Hardware Implementation of a Supervisory Controller for a Wind Power Turbine

Design and Hardware Implementation of a Supervisory Controller for a Wind Power Turbine ECE 4600 Group Design Project Proposal Group 09 Design and Hardware Implementation of a Supervisory Controller for a Wind Power Turbine Supervisors Annakkage, Udaya D., P.Eng McNeill, Dean, P.Eng Bagen

More information

Week 11. Module 5: EE100 Course Project Making your first robot

Week 11. Module 5: EE100 Course Project Making your first robot Week 11 Module 5: EE100 Course Project Making your first robot Dr. Ing. Ahmad Kamal Nasir Office Hours: Room 9-245A Tuesday (1000-1100) Wednesday (1500-1600) Course Project: Wall-Follower Robot Week 1

More information

RIMRES: A project summary

RIMRES: A project summary RIMRES: A project summary at ICRA 2013 -- Planetary Rovers Workshop presented by Thomas M Roehr, thomas.roehr@dfki.de DFKI Robotics Innovation Center Bremen Robert-Hooke Straße 5 28359 Bremen 1 Acknowledgements

More information

Technical Review Agenda

Technical Review Agenda KGCOE MSD Technical Review Agenda P13261: Electric Motorcycle Powertrain Development Meeting Purpose: 1. To give the customers a better idea of what we had in mind for the scope of the project. 2. To confirm

More information

Crestmont Development Update 2017 AGM

Crestmont Development Update 2017 AGM Crestmont Development Update 2017 AGM West Crestmont West Crestmont Will be built in phases finally reaching about 524 residential units. Rough grading for phases 9 & 10 already underway. First show home

More information

Lithium Ion Medium Power Battery Design

Lithium Ion Medium Power Battery Design Bradley University Lithium Ion Medium Power Battery Design Project Proposal By: Jeremy Karrick and Charles Lau Advised by: Dr. Brian D. Huggins 12/10/2009 Introduction The objective of this project is

More information

Robust Flight Controller for a Hexcopter

Robust Flight Controller for a Hexcopter Robust Flight Controller for a Hexcopter ECE 4600 Group Project Proposal Group 02 Members: Bryan Drobot Curtis Einarson Stephanie English Kelly Riha Supervising Professor: Dr. Witold Kinsner Submission

More information

Control of Mobile Robots

Control of Mobile Robots Control of Mobile Robots Introduction Prof. Luca Bascetta (luca.bascetta@polimi.it) Politecnico di Milano Dipartimento di Elettronica, Informazione e Bioingegneria Applications of mobile autonomous robots

More information

PROJECT PROPOSAL FIRE FIGHTING ROBOT CHALLENGE THE ENGINEERS: SUBMITTED TO: SPONSORED BY: Micro Fire Extinguisher

PROJECT PROPOSAL FIRE FIGHTING ROBOT CHALLENGE THE ENGINEERS: SUBMITTED TO: SPONSORED BY: Micro Fire Extinguisher FIRE FIGHTING ROBOT CHALLENGE Micro Fire Extinguisher PROJECT PROPOSAL SUBMITTED TO: JOHN KENNEDY & R. LAL TUMMALA DESIGN CO. LTD, SAN DIEGO, CA SPONSORED BY: SAN DIEGO STATE UNIVERSITY SENIOR DESIGN PROJECT

More information

Physical Layer Switch

Physical Layer Switch Technology White Paper Physical Layer Switch Simultaneous Processing and Recording of High-speed Sensor Data Introduction The Sensor Application Environment Surveillance and intelligence gathering applications

More information

accompanying the up-dated working document on the Review of Regulation (EC) No 278/2009 regarding External Power Supplies

accompanying the up-dated working document on the Review of Regulation (EC) No 278/2009 regarding External Power Supplies Explanatory Note accompanying the up-dated working document on the Review of Regulation (EC) No 278/2009 regarding External Power Supplies 1. Context A Consultation Forum was held on 18 April 2013 which

More information

Embodied Speech and Facial Expression Avatar Progress Report 1

Embodied Speech and Facial Expression Avatar Progress Report 1 Embodied Speech and Facial Expression Avatar Progress Report 1 Presented to Professor Ricardo Gutierrez-Osuna on February 23, 2004 by Dan Harbin - Evan Zoss - Jaclyn Tech - Brent Sicking - 1 - Table of

More information

Oakland University Presents:

Oakland University Presents: Oakland University Presents: I certify that the engineering design present in this vehicle is significant and equivalent to work that would satisfy the requirements of a senior design or graduate project

More information

Project Title: Wireless Hummer. ECE Final Written Report

Project Title: Wireless Hummer. ECE Final Written Report Project Title: Wireless Hummer ECE 792 - Final Written Report Project Team Members: Justin Audley, Blake Brown, Christopher Dean, Andrew Russell, Andrew Saunders ECE Faculty Advisor: Dr. Richard A. Messner

More information

Solar Power-Optimized Cart

Solar Power-Optimized Cart Solar Power-Optimized Cart Initial Project and Group Identification Document Due: September 17, 2013 Group #28 Group Members: Jacob Bitterman Cameron Boozarjomehri William Ellett Potential Sponsors: Duke

More information

Preliminary Design Report. Project Title: Lunabot

Preliminary Design Report. Project Title: Lunabot EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 30 January 2012 Project Title: Lunabot Team Name: UF Lunabotics Team Members: Name: Matt Morgan Name: UF Lunabotics Team

More information

GCAT. University of Michigan-Dearborn

GCAT. University of Michigan-Dearborn GCAT University of Michigan-Dearborn Mike Kinnel, Joe Frank, Siri Vorachaoen, Anthony Lucente, Ross Marten, Jonathan Hyland, Hachem Nader, Ebrahim Nasser, Vin Varghese Department of Electrical and Computer

More information

KIKS 2014 Team Description Paper

KIKS 2014 Team Description Paper KIKS 2014 Team Description Paper Soya Okuda, Kosuke Matsuoka, Tetsuya Sano, Yu Yamauchi, Hayato Yokota, Masato Watanabe and Toko Sugiura Toyota National College of Technology, Department of Electrical

More information

Detailed Design Review

Detailed Design Review Detailed Design Review P16241 AUTONOMOUS PEOPLE MOVER PHASE III Team 2 Agenda Problem Definition Review Background Problem Statement Project Scope Customer Requirements Engineering Requirements Detailed

More information

EMC System Engineering of the Hybrid Vehicle Electric Motor and Battery Pack

EMC System Engineering of the Hybrid Vehicle Electric Motor and Battery Pack The Southeastern Michigan IEEE EMC Society EMC System Engineering of the Hybrid Vehicle Electric Motor and Battery Pack Presented by: James Muccioli Authors: James Muccioli & Dale Sanders Jastech EMC Consulting,

More information

congestion management program

congestion management program congestion management program 2550 Rail Vehicle Program March 2012 11-0319tr 2010 lacmta Q U A R T E R LY P R O J E C T S TAT U S R E P O R T 255O RAIL VEHICLE PROGRAM QUARTERLY PROJECT STATUS REPORT THE

More information

M40e and M160 Cooling System Installation Instructions

M40e and M160 Cooling System Installation Instructions M40e and M160 Cooling System Installation Instructions 6 August 2004 Part No: 530-005280-01 Revision 4 This document describes how to remove and replace the cooling system components on the Juniper Networks

More information

Open & Evolutive UAV Architecture

Open & Evolutive UAV Architecture Open & Evolutive UAV Architecture 13th June UAV 2002 CEFIF 16-juin-02 Diapositive N 1 / 000 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection of information

More information

Precision Station Stopping Progress Update

Precision Station Stopping Progress Update Washington Metropolitan Area Transit Authority Precision Station Stopping Progress Update Presented to: The Board of Directors; Customer Service, Operations and Safety Committee By PlanninghDevelopmenthEngineeringhConstruction

More information

OBI-M2. Compact and Rugged Combustion Analysis System for use on Vehicles, Motorbikes and Test Benches

OBI-M2. Compact and Rugged Combustion Analysis System for use on Vehicles, Motorbikes and Test Benches OBI-M2 Compact and Rugged Combustion Analysis System for use on Vehicles, Motorbikes and Test Benches OBI-M2 is an extremely compact and fully featured combustion analysis system suitable for use on test

More information

System Level Design Review

System Level Design Review System Level Design Review HABIP High Altitude Balloon Instrumentation Platform P17104 & P17105 October 6, 2016 Team Members Team Communications Data Acquisition and Control Systems Team Member Major Team

More information

Initial Project and Group Identification Document. Metal detecting robotic vehicle (seek and find metallic objects using a robotic vehicle)

Initial Project and Group Identification Document. Metal detecting robotic vehicle (seek and find metallic objects using a robotic vehicle) Initial Project and Group Identification Document Project Idea: Metal detecting robotic vehicle (seek and find metallic objects using a robotic vehicle) Team Members: Robertson Augustine (Computer Engineer)

More information

An Autonomous Braking System of Cars Using Artificial Neural Network

An Autonomous Braking System of Cars Using Artificial Neural Network I J C T A, 9(9), 2016, pp. 3665-3670 International Science Press An Autonomous Braking System of Cars Using Artificial Neural Network P. Pavul Arockiyaraj and P.K. Mani ABSTRACT The main aim is to develop

More information

Club Capra- Minotaurus Design Report

Club Capra- Minotaurus Design Report Table of content Introduction... 3 Team... 3 Cost... 4 Mechanical design... 4 Structure of Minotaurus... 5 Drive train... 6 Electronics... 7 Batteries... 7 Power supply... 7 System signal processing...

More information

Discovery Center Gesture Control Robotics Exhibit Product Requirements

Discovery Center Gesture Control Robotics Exhibit Product Requirements Discovery Center Gesture Control Robotics Exhibit Product Requirements U of I Discovery Austyn Sullivan-Watson Angelo Stratigakes Zhihui Wang Chaeun Kim 1 Document History Rev Number Date Modified By Reason

More information

ZT-USB Series User Manual

ZT-USB Series User Manual ZT-USB Series User Manual Warranty Warning Copyright All products manufactured by ICP DAS are under warranty regarding defective materials for a period of one year, beginning from the date of delivery

More information

Energy Harvesting Platform

Energy Harvesting Platform Energy Harvesting Platform Group 8 S A N JAY K H E ML A NI T R AV I S B A D A L L K I A R A R O D R I G U EZ M I C H A EL L I N EE EE EE EE Motivation Non-renewable energy sources harm the environment

More information

Electronic Shifter. Lee Redstone V Lewis Weston V Jason Deglint V Group #5. Supervisor Ashoka K. S. Bhat. Due Oct.

Electronic Shifter. Lee Redstone V Lewis Weston V Jason Deglint V Group #5. Supervisor Ashoka K. S. Bhat. Due Oct. Electronic Shifter Lee Redstone V00662175 Lewis Weston V00766616 Jason Deglint V00730963 Group #5 Supervisor Ashoka K. S. Bhat Due Oct. 16, 2012 Dept. Electrical and Computer Engineering University of

More information

MiR Hook. Technical Documentation

MiR Hook. Technical Documentation MiR Hook Technical Documentation Version 1.7 Software release 1.7 Release date: 10.11.2016 Table of contents 1 Introduction...3 2 The MiR Hook hardware...3 3 Trolley specifications...4 4 Space requirements...5

More information

Modernising the Great Western railway

Modernising the Great Western railway Report by the Comptroller and Auditor General Department for Transport and Network Rail Modernising the Great Western railway HC 781 SESSION 2016-17 9 NOVEMBER 2016 4 Key facts Modernising the Great Western

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 [Subtrack 2] Vehicle Dynamics Blockset 소개 김종헌부장 2015 The MathWorks, Inc. 2 Agenda What is Vehicle Dynamics Blockset? How can I use it? 3 Agenda What is Vehicle Dynamics Blockset?

More information

2016 IGVC Design Report Submitted: May 13, 2016

2016 IGVC Design Report Submitted: May 13, 2016 2016 IGVC Design Report Submitted: May 13, 2016 I certify that the design and engineering of the vehicle by the current student team has been significant and equivalent to what might be awarded credit

More information

MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot

MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot ECE 3992 Senior Project Proposal MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot 6 May 2005 Prepared By: Kevin E. Waters Department of Electrical and Computer Engineering University

More information

Autonomous Quadrotor for the 2014 International Aerial Robotics Competition

Autonomous Quadrotor for the 2014 International Aerial Robotics Competition Autonomous Quadrotor for the 2014 International Aerial Robotics Competition Yongseng Ng, Keekiat Chua, Chengkhoon Tan, Weixiong Shi, Chautiong Yeo, Yunfa Hon Temasek Polytechnic, Singapore ABSTRACT This

More information

Motor, Bracket and Wheel Kit (# )

Motor, Bracket and Wheel Kit (# ) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

DD2-PRO+ Gps enabled Datalogger & display system mm (W) x 90mm (H) x 28mm (D) Datalogger Front 109mm (W) x 35mm (H) x 121mm (D) Datalogger Back

DD2-PRO+ Gps enabled Datalogger & display system mm (W) x 90mm (H) x 28mm (D) Datalogger Front 109mm (W) x 35mm (H) x 121mm (D) Datalogger Back DD2-PRO+ Gps enabled Datalogger & display system PRO Display - 160.4mm (W) x 90mm (H) x 28mm (D) Datalogger Front 109mm (W) x 35mm (H) x 121mm (D) Datalogger Back Feature Summary Display Programmable Speed

More information

Automated Vehicle Anti-Theft Security System

Automated Vehicle Anti-Theft Security System Senior Design I Initial Project and Group Identification Document Divide and Conquer 09/09/16 Automated Vehicle Anti-Theft Security System University of Central Florida Department of Electrical Engineering

More information

SAE Mini BAJA: Suspension and Steering

SAE Mini BAJA: Suspension and Steering SAE Mini BAJA: Suspension and Steering By Zane Cross, Kyle Egan, Nick Garry, Trevor Hochhaus Team 11 Project Progress Submitted towards partial fulfillment of the requirements for Mechanical Engineering

More information

Preliminary Design Report. Project Name: Digital Dashboard. Team Name: Uncensored Sensors

Preliminary Design Report. Project Name: Digital Dashboard. Team Name: Uncensored Sensors EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 25 January 2011 Project Name: Digital Dashboard Team Name: Uncensored Sensors Team Members: Name: Matthew Greenberg Email:

More information

TORONTO TRANSIT COMMISSION REPORT NO.

TORONTO TRANSIT COMMISSION REPORT NO. Form Revised: February 2005 TORONTO TRANSIT COMMISSION REPORT NO. MEETING DATE: September 27, 2012 SUBJECT: NOTICE OF AWARD PROCUREMENT AUTHORIZATION - ARTICULATED BUSES INFORMATION ITEM RECOMMENDATION

More information

MLT Surveillance Platform

MLT Surveillance Platform MLT Surveillance Platform MLT 310F Configuration The SuperDroid Robots MLT 310F Surveillance Robot is a small rugged robot that can easily fit in backpack or carrying case. The robot weighs less than 8lbs.

More information

Reciprocating Compressor Installation and Validation

Reciprocating Compressor Installation and Validation Reciprocating Compressor Installation and Validation MSD II - 11452 John Blamer (ME) Team Leader Promit Bagchi (ME) Lead Engineer Elliot Kendall (ME) Hydronics Engineer Matthias Purvis (ME) Operations

More information

Automated Seat Belt Switch Defect Detector

Automated Seat Belt Switch Defect Detector pp. 10-16 Krishi Sanskriti Publications http://www.krishisanskriti.org/publication.html Automated Seat Belt Switch Defect Detector Department of Electrical and Computer Engineering, Sri Lanka Institute

More information

MECH 486A - Senior Design Practicum Critical Design Review. Annemarie Kibbe, Cameron Ghia, Jiaxin Zhao, Mark Stratford, Michael McMann, Ryan Jensen

MECH 486A - Senior Design Practicum Critical Design Review. Annemarie Kibbe, Cameron Ghia, Jiaxin Zhao, Mark Stratford, Michael McMann, Ryan Jensen MECH 486A - Senior Design Practicum Critical Design Review Annemarie Kibbe, Cameron Ghia, Jiaxin Zhao, Mark Stratford, Michael McMann, Ryan Jensen 1 Content Introduction Design Problem Analysis Design

More information

Slippage Detection and Traction Control System

Slippage Detection and Traction Control System Slippage Detection and Traction Control System May 10, 2004 Sponsors Dr. Edwin Odom U of I Mechanical Engineering Department Advisors Dr. Jim Frenzel Dr. Richard Wall Team Members Nick Carter Kellee Korpi

More information

Sensor Suit for the Visually Impaired

Sensor Suit for the Visually Impaired Sensor Suit for the Visually Impaired Proposed Completion Date 2013 People today that are visually impaired at birth or by misfortune have few options for methods of getting around in their every-day lives.

More information

Overcoming Motor Driver Heat-Transfer Challenges in Robotic Applications

Overcoming Motor Driver Heat-Transfer Challenges in Robotic Applications Overcoming Motor Driver Heat-Transfer Challenges in Robotic Applications Jason D. Carr, M.S. and David W. Sundin, Ph.D. Page 1 This paper is protected by copyright law. Individuals may reproduce and distribute

More information

Homework 3: Design Constraint Analysis and Component Selection Rationale

Homework 3: Design Constraint Analysis and Component Selection Rationale Homework 3: Design Constraint Analysis and Component Selection Rationale Team Code Name: ATV (Autonomous Targeting Vehicle Group No. 3 Team Member Completing This Homework: Daniel Barrett E-mail Address

More information

Hybrid Nanopositioning Systems with Piezo Actuators

Hybrid Nanopositioning Systems with Piezo Actuators Hybrid Nanopositioning Systems with Piezo Actuators Long Travel Ranges, Heavy Loads, and Exact Positioning Physik Instrumente (PI) GmbH & Co. KG, Auf der Roemerstrasse 1, 76228 Karlsruhe, Germany Page

More information

Rose-Hulman Autonomous Terrain Traverser

Rose-Hulman Autonomous Terrain Traverser Rose-Hulman Autonomous Terrain Traverser Michael Auchter, Jay Kinzie, Jon Klein, Tom Most, Andy Spencer {auchtemm,kinziejh,kleinjt,mosttw,spenceal}@rose-hulman.edu Robotics Team, CM 5000 Rose-Hulman Institute

More information

RIT Formula SAE Senior Design

RIT Formula SAE Senior Design RIT Formula SAE Senior Design Agenda Project Description Work Breakdown Customer Needs Customer Specifications Current/Previous System Design Proposed Design #1 Proposed Design #2 Testing Plans Concept

More information

Using cloud to develop and deploy advanced fault management strategies

Using cloud to develop and deploy advanced fault management strategies Using cloud to develop and deploy advanced fault management strategies next generation vehicle telemetry V 1.0 05/08/18 Abstract Vantage Power designs and manufactures technologies that can connect and

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION The development of Long March (LM) launch vehicle family can be traced back to the 1960s. Up to now, the Long March family of launch vehicles has included the LM-2C Series, the LM-2D,

More information

Autonomously Controlled Front Loader Senior Project Proposal

Autonomously Controlled Front Loader Senior Project Proposal Autonomously Controlled Front Loader Senior Project Proposal by Steven Koopman and Jerred Peterson Submitted to: Dr. Schertz, Dr. Anakwa EE 451 Senior Capstone Project December 13, 2007 Project Summary:

More information

Multi Core Processing in VisionLab

Multi Core Processing in VisionLab Multi Core Processing in Multi Core CPU Processing in 25 August 2014 Copyright 2001 2014 by Van de Loosdrecht Machine Vision BV All rights reserved jaap@vdlmv.nl Overview Introduction Demonstration Automatic

More information

BASIC MECHATRONICS ENGINEERING

BASIC MECHATRONICS ENGINEERING MBEYA UNIVERSITY OF SCIENCE AND TECHNOLOGY Lecture Summary on BASIC MECHATRONICS ENGINEERING NTA - 4 Mechatronics Engineering 2016 Page 1 INTRODUCTION TO MECHATRONICS Mechatronics is the field of study

More information

Pre Commercial Procurement Austrian Pilot Calls

Pre Commercial Procurement Austrian Pilot Calls Pre Commercial Procurement Austrian Pilot Calls MLE Innovation Procurement, November 29th 2017, Madrid Jeannette Klonk, Austrian Research Promotion Agency ANCHORING PCP IN THE AUSTRIAN R&I POLICY CONTEXT

More information

Control System for a Diesel Generator and UPS

Control System for a Diesel Generator and UPS Control System for a Diesel Generator and UPS I. INTRODUCTION In recent years demand in the continuity of power supply in the local distributed areas is steadily increasing. Nowadays, more and more consumers

More information

Advanced Information Subject to Changes

Advanced Information Subject to Changes Advanced Information Subject to Changes High Efficiency 30/60V, 100 Amps Active Management System for Lithium Ion Batteries Roboteq s is a battery management system designed for building cost-effective,

More information

Update on the ODVA Energy Initiative

Update on the ODVA Energy Initiative Update on the ODVA Energy Initiative www.odva.org Marketing Track The case for ODVA energy actions Agenda What ODVA is doing about it What you can do Where do we go from here? Marketing Track 2014 Industry

More information

The MathWorks Crossover to Model-Based Design

The MathWorks Crossover to Model-Based Design The MathWorks Crossover to Model-Based Design The Ohio State University Kerem Koprubasi, Ph.D. Candidate Mechanical Engineering The 2008 Challenge X Competition Benefits of MathWorks Tools Model-based

More information

Alan Kilian Spring Design and construct a Holonomic motion platform and control system.

Alan Kilian Spring Design and construct a Holonomic motion platform and control system. Alan Kilian Spring 2007 Design and construct a Holonomic motion platform and control system. Introduction: This project is intended as a demonstration of my skills in four specific areas: Power system

More information

AFG Project Update Spring 2006 Semester 02/15/2006

AFG Project Update Spring 2006 Semester 02/15/2006 AFG Project Update Spring 2006 Semester 02/15/2006 Proposal: Unmanned Ground Vehicle Alternative Energy and Sensors Research Under this research program, the recipient will design, build, and test the

More information

Maritime State University AUV TEAM Autonomous underwater vehicle for RoboSub 2015

Maritime State University AUV TEAM Autonomous underwater vehicle for RoboSub 2015 Maritime State University AUV TEAM Autonomous underwater vehicle for RoboSub 2015 Igor Pushkarev, Nikolai Sergeenko, Vladislav Bolotov, Dmitrii Nechepurenko, Vadim Sorin, Ruslan Revel, Dmitrii Khokhlov,

More information

Semi-Linear Induction Motor

Semi-Linear Induction Motor Semi-Linear Induction Motor Edgar Ramos and Jacob Vangunten Project Advisor: Professor Steven D. Gutschlag Bradley University Department of Electrical Engineering May 12, 2016 I. Abstract A Linear Induction

More information

AGENDA. Hyperloop Competition Team Printed Circuit Board Sensor Data Actuation Communication Conclusion Questions. Hyperloop. Competition.

AGENDA. Hyperloop Competition Team Printed Circuit Board Sensor Data Actuation Communication Conclusion Questions. Hyperloop. Competition. CONTROLLER AGENDA Questions 2 INTRODUCTION Celeste Bean Connor Buckland Ben Hartl Cameron McCarthy Connor Mulcahey 3 HYPERLOOP Cities < 700 miles apart Max speed of 760 mph 4 HYPERLOOP Depressurized steel

More information

HDV CO2 emission certification 1 st meeting of the Editing board

HDV CO2 emission certification 1 st meeting of the Editing board HDV CO2 emission certification 1 st meeting of the Editing board DG Growth Maciej Szymański 2.03.2015 Internal market, Industry, Entrepreneurship and SMEs Meeting agenda Work of the Editing board: Objectives

More information

Explosion-Proof Painting Robots

Explosion-Proof Painting Robots Explosion-Proof Painting Robots up to 20 kg payload Kawasaki Robotics (USA), Inc. EXPLOSION-PROOF PAINTING ROBOTS The K-Series line of painting robots combines high operational performance with powerful

More information

Technical Robustness and Quality

Technical Robustness and Quality Technical Robustness and Quality www.teamrush27.net Rock Solid Robot Page Title 1-4 Robustness In Concept And Fabrication 5 Creative Concepts For Tomorrow s Technology 6-8 Rock Solid Controls 9-10 Effectively

More information

The Design of an Omnidirectional All-Terrain Rover Chassis

The Design of an Omnidirectional All-Terrain Rover Chassis The Design of an Omnidirectional All-Terrain Rover Chassis Abstract Submission for TePRA 2011: the 3rd Annual IEEE International Conference on Technologies for Practical Robot Applications Timothy C. Lexen,

More information