Book Image

ROS Robotics Projects

Book Image

ROS Robotics Projects

Overview of this book

Robot Operating System is one of the most widely used software frameworks for robotic research and for companies to model, simulate, and prototype robots. Applying your knowledge of ROS to actual robotics is much more difficult than people realize, but this title will give you what you need to create your own robotics in no time! This book is packed with over 14 ROS robotics projects that can be prototyped without requiring a lot of hardware. The book starts with an introduction of ROS and its installation procedure. After discussing the basics, you’ll be taken through great projects, such as building a self-driving car, an autonomous mobile robot, and image recognition using deep learning and ROS. You can find ROS robotics applications for beginner, intermediate, and expert levels inside! This book will be the perfect companion for a robotics enthusiast who really wants to do something big in the field.
Table of Contents (20 chapters)
ROS Robotics Projects
Credits
About the Author
Acknowledgements
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Designing and selecting the motors and wheels for the robot


The robot we are going to design should have a differential drive configuration, and from the preceding specification, we can first determine the motor torque values. From the payload value and robot body weight, we can easily compute the motor torque.

Computing motor torque

Let's calculate the torque required to move this robot.

The number of wheels is four, including two caster wheels. The number of wheels undergoing actuation is only two. We can assume the coefficient of friction is 0.6 and of wheel radius is 4.5 cm. We can use the following formula:

Total weight of robot = Weight of robot + Payload

Weight of the robot: 3 x 9.8 ≈ 30 N (W = mg)

Payload: 2 x 9.8 ≈ 20 N

Total weight: 30 + 20 = 50 N

This total weight should be split among the four wheels of the robot, so we can write it as W = 2 x N1 + 2 x N2, where N1 is the weight acting on each robot wheel and N2 is the weight acting on each caster wheels. The configuration of wheels...