Rule 1 of Sumo club is we don t talk about sumo club!

Size: px
Start display at page:

Download "Rule 1 of Sumo club is we don t talk about sumo club!"

Transcription

1 SumoBot Notes 1

2 The SumoBot Game General Overview: Two robots placed in the ring, facing away from each other. At the start of the match each robot must travel to the edge of the ring before it can engage the other. The first one to push the other out of the ring wins. Game Rules Rule 1 of Sumo club is we don t talk about sumo club! Robots are placed in the centre of the ring, back to back. Any opponent locating sensor such as an ultrasonic sensor must be facing to the outside of the ring at the commencement of a bout. Opponents must travel directly to the outside of the ring and physically turn around before engaging the opponent. If any part of a robot touches the ground outside the ring they immediately lose the match. In the event of a section of the robot becoming detached, if it is still tethered to the robot and touches the ground outside the ring the robot loses that bout. If the detached section is completely detached it is no longer counted as part of the robot and therefore will not be considered in determining whether a robot wins or loses. In the event of both robots leaving the ring at once, the losing bot is the one that touches the ground first as decided by the judge In the event of a simultaneous ground touch, the bout will be rerun. Each bout is best of 3 (3rd bout will not be run if a team wins two in a row). Robot must weigh less that 1000 grams. All bot must use wheels of any size. Caterpillar tracks style bots are not permitted. Before activation, a robot must pass through a 220*280mm square in plan and must not be higher than 180mm in elevation. A robot cannot be designed to inflict damage to the opposing robot. Destabilising devices are allowed but spinning objects are not permitted. If two robots are locked together for more than 30 seconds, the bout may be reset at the judge s discretion. If the bout continues for 1 minute or more without opponents engaging, a null bout will be declared with neither opponent scoring a point. If at the end of the 3 bouts each robot has won one each then the judge will declare the winner based on future potential performance. 2

3 The Ring (Dohyo) A raised circle 1.2 m in diameter. The surface is painted white, around the edge is a black circle 5 cm wide. SumoBot Building We find that it's best to construct your SumoBot bot in a series of steps. 3

4 1. Decide how your motors are going to be connected together to make a solid chassis. This may or may not include the NXT/EV3 brick. Make sure they are connected in at least two places to ensure that they don't twist, and make sure they are aligned squarely to each other. Use lots of black studs. 2. Add the NXT/EV3 if it's not part of the original drive chassis. Once again, make sure you have at least two points of connection. Four is even better. 3. Add the third wheel, skid or slider that will keep your robot on an even keel. A wide base gives the best support, and if you use a wheel, it's best to remove the tire to enable the robot to turn smoothly. 4. Add a line sensor. It's important that it is about 5mm off the ground pointing straight down. These should be in front of the forward-most ground-contact point of the robot to ensure that they sense the black line BEFORE the robot reaches the edge. 5. Add the ultrasonic sensor once everything else is on the robot. This must be at the front, pointing forward, level to the ground, or tilted slightly down. Ideally it should be 50-75mm off the ground. 6. Finally add the cables to the motors and sensors. Ensure that NO parts of the robot are anywhere near the front of the eyes as the SumoBot will start chasing it's tail (so to speak). General SumoBot Building Tips 1. When two well-built robots compete, the tires become the deciding factor. The better the tires grip the ring surface, the more the robot can shove and the less the robot can be shoved. Unless severely underpowered, motors rarely stall; almost always the tires spin. Narrow, worn tires spell disaster. Wide, clean, abundant tires spell victory. Don t stifle creativity, tracks and even legs should be considered. 4

5 2. A scoop or arm is vital. Anything that shifts the opponent s weight of off its wheels is desirable. A scoop can both reduce the grip of the opponent s wheels (by tilting weight off) and also increase the grip on the scooper s wheels (by tilting the opponent s weight on top). Also, a scoop may topple or tip an opponent onto its side or over the ring edge. Grabbers and pushers should also be considered for similar reasons. 3. Dark robots are more difficult for the opponent s infrared or light sensors to see. Fuzzy-surfaced robots are more difficult for sonic sensors to detect. 4. Slick, encased robots are more difficult for the opponent to grip or accidentally damage. 5. Although not required, infrared or other opponenttargeting sensors improve a robot s chances of contacting the opponent in a motion with the greatest forward momentum. Additionally, a robot with opponent sensors is less likely to get struck from an undesirable angle, such as on the side or from behind. To get started the following provides a basic starting point for a SumoBot but to be competitive you will need to put a lot of thought into the physical design of your SumoBot. NXT EV3 DomoBot The core kit comes with a booklet for a basic robot. This can also be found in the start menu of the EV3 Mindstorms software. Riley Rover: from classroom-robot-design.html Tommabot: from 5

6 Game Playing Basic Strategy There are two major tasks that your SumoBot will need to be able to do in order to be competitive. Firstly it needs to be able to find the edge of the ring and then turn around. At a basic level if your Bot can continually drive forward to the edge of the ring and turn around you can enter the SumoBot competition Secondly it needs to search for the opponent and charge when the opponent is located, while still staying in the ring. Finding the edge of the ring This can be done in two ways. Using senor wait blocks: o Start the motors running. o Wait until the colour sensor sees black. 6

7 Using a loop and a switch: o Inside a loop use a switch that is conditional on the colour sensor. If black, stop, reverse. If not black (white), move forward turning. o You can use the colour sensor in either colour model or reflected light intensity mode. In a switch, the top section is executed if the conditional statement is true. The bottom section is executed if the statement is false. Finding the Opponent The objective here is to find the opponent using a sensor such as the ultrasonic sensor then charge at the opponent while ensuring that your Sumobot still stays within the ring. This requires nested switches inside a loop: Inside a loop you need a switch that is checking whether you are on the playing surface. o If no, then turn around. o If yes then enter the second switch based on the ultrasonic sensor: o In the second switch, if the opponent cannot be seen, turn in a circle at low speed looking for the opponent. If the opponent can be seen then charge full power. 7

8 Take care when you turn the motors on, if you ask for a set number of revolutions or time, the execution will stop whilst the motors are turning. Setting the motors to On, allows the execution to carry on, leaving the motors running. 8

9 Tips and common problems 1. Remember a motor block can be switched on, switched on for a period of time, switched on for number of rotations or switched off. If the motor block switched on for a period of time or a number of revolutions the execution of the program will stop until that task is done. That means it will be stuck at that block, not going round the loop looking for the line or opponents. For our use, it is always best to have a motor block simply switched on. 2. Check that your motor ports on each block match the motor blocks on the Sumobot. 3. Check the sensor ports match the sensor ports on the SumoBot. 4. Check that your Mindstorms Brick is charged. 9

GEN II Robot Soccer EV3 Compass Training Curriculum Brian Thomas

GEN II Robot Soccer EV3 Compass Training Curriculum Brian Thomas GEN II Robot Soccer EV3 Compass Training Curriculum Brian Thomas RoboCup Junior Australia Inc Copyright 2015 1 GEN II EV3 Robot Soccer Training Overview Welcome! The aim of this curriculum is to guide

More information

Utah Elementary Robotics SUMO Rules. Competition During USU Physics Lagoon in Farmington, UT. May 12, 2017 Starting at 10:30 AM

Utah Elementary Robotics SUMO Rules. Competition During USU Physics Lagoon in Farmington, UT. May 12, 2017 Starting at 10:30 AM Utah Elementary Robotics SUMO Rules Competition During USU Physics Day @ Lagoon in Farmington, UT May 12, 2017 Starting at 10:30 AM COMPETITION OBJECTIVE The aim of the competition is to foster math, science,

More information

Simple Simon GEN II Robot Soccer EV3 -Tris 10 Training Curriculum

Simple Simon GEN II Robot Soccer EV3 -Tris 10 Training Curriculum Simple Simon GEN II Robot Soccer EV3 -Tris 10 Training Curriculum Brian Thomas **LEGO, Mindstorms and Robolab are Registered Trademarks of the LEGO Corporation RoboCup Junior Australia Inc Copyright 2015

More information

Texas 4-H Robotics Challenge

Texas 4-H Robotics Challenge Texas 4-H Robotics Challenge Description Beginning in 2018, the Texas 4-H Roundup robotics contest is structured as a sumo-style competition. This format replaces the blind challenge format, which is still

More information

NXT SUMO Rules USU Physics Day Lagoon Farmington, UT

NXT SUMO Rules USU Physics Day Lagoon Farmington, UT NXT SUMO Rules USU Physics Day Lagoon Farmington, UT May 17, 2013 COMPETITION OBJECTIVE The aim of the competition is to foster math, science, engineering and team work in students in 6 th grade. DESIGN

More information

Standard League WRO Football Simple Simon EV3 Training Curriculum

Standard League WRO Football Simple Simon EV3 Training Curriculum Standard League WRO Football Simple Simon EV3 Training Curriculum Brian Thomas **LEGO, EV3 Mindstorms and Robolab are Registered Trademarks of the LEGO Corporation RoboCup Junior Australia Inc Copyright

More information

Main Events. LEGO Creation Contest. Mindstorms SumoBots. Mindstorms Drag Racing. FLL Hydro Dynamics Robot Challenge. Angry Birds Robotics

Main Events. LEGO Creation Contest. Mindstorms SumoBots. Mindstorms Drag Racing. FLL Hydro Dynamics Robot Challenge. Angry Birds Robotics CNY Robotics & Science Foundation Spring Robotics Tournament Saturday April 7, 2018 Fayetteville-Manlius High School House 2 Gym 2 Main Events LEGO Creation Contest Mindstorms SumoBots Mindstorms Drag

More information

Chapter 13. ANTY: the robotic ant

Chapter 13. ANTY: the robotic ant Chapter 13. ANTY: the robotic ant By now, you ve gotten the hang of building models that move on wheels. Another fun, but slightly more challenging, kind of model you can build is an animal robot that

More information

Line Following with RobotC Page 1

Line Following with RobotC Page 1 Line Following with RobotC Page 1 Line Following with By Michael David Lawton Introduction Line following is perhaps the best way available to VEX Robotics teams to quickly and reliably get to a certain

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the sound data will

More information

Beginner Category Tug of War 2v2

Beginner Category Tug of War 2v2 1 Beginner Category Tug of War 2v2 Game Description, Rules, and Scoring 2 1. General Rules 1.1. Team 1. A team consists of two (2) members and/or one (1) coach. 2. Participants are categorized into two

More information

SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR

SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR INTRODUCTION Robotics is a very common and discussed problem recently. Robotic arms and manipulators are used in industry, transport or medicine. They often

More information

Robot Games Ireland Tournament

Robot Games Ireland Tournament Robot Games Ireland Tournament May 2018 2018 Mini Sumo Tournament Rules V1.1 Updated 9/4/18 1. Definition of the Sumo Match 1.1. Definition A match is fought between two teams, each team having one or

More information

The NXT Generation. A complete learning solution

The NXT Generation. A complete learning solution The NXT Generation A complete learning solution 2008 The NXT Generation LEGO MINDSTORMS Education is the latest in educational robotics, enabling students to discover ICT, science, D&T and maths concepts

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. NXT Main Menu My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the

More information

all i imck >Э1 1 I Vf I \ Ш i ш ,M; цриазд IF 4 ifipm>v*' %тл sioaoy DNicning HUM

all i imck >Э1 1 I Vf I \ Ш i ш ,M; цриазд IF 4 ifipm>v*' %тл sioaoy DNicning HUM p all i imck >Э1 N! w Ш i ш 1 I Vf I \ w,m; цриазд i IF 4 ifipm>v*' HUM V* %тл mk sioaoy DNicning Contents Foreword Preface xxiii xxv Chapter 1 Understanding LEGO Geometry 1 Introduction 2 Expressing Sizes

More information

Robot Activity: Programming the NXT 2.0

Robot Activity: Programming the NXT 2.0 Robot Activity: Programming the NXT 2.0 About this Activity In this activity, you will learn about some features of the NXT 2.0 programming software. You will write and save a program for the Lego NXT

More information

Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas

Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas RoboCup Junior Australia Inc Copyright 2018 1 Standard League Robot Soccer EV3 Compass Training Welcome! The aim of this curriculum

More information

FIRA ROBOT SOCCER COMPETITION. Robot Soccer Competition Singapore Robotic Games 2012 INTRODUCTION

FIRA ROBOT SOCCER COMPETITION. Robot Soccer Competition Singapore Robotic Games 2012 INTRODUCTION INTRODUCTION ROBOT SOCCER COMPETITION The objective of the robot soccer is to build a team of robots to play 5-a-side football against an opponent robot team. Each robot soccer team shall setup a global

More information

1001ICT Introduction To Programming Lecture Notes

1001ICT Introduction To Programming Lecture Notes 1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 4 Lego Mindstorms 4.1 Robotics? Any programming course will set

More information

1 P a g e GPISD STEaMposium 2.0 Lego Competition Handbook

1 P a g e GPISD STEaMposium 2.0 Lego Competition Handbook 1 P a g e 2016 GPISD STEaMposium 2.0 Lego Competition Handbook Overview: All district 4 th 8 th grade campuses and current First Lego League teams are invited to participate in the 2nd Annual GPISD STEaMposium

More information

FLL Indonesia Category

FLL Indonesia Category FLL Indonesia Category Rules & Scoring System Page1 This document explains the rules and valid scoring system for FIRST LEGO League (FLL) Indonesia Category in Indonesian Robotic Olympiad 2016 (IRO2016).

More information

LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008

LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008 LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008 NXT-G Program Book II: Intermediate Robotics Activities for use with the NXT 2008 Tufts Center for Engineering Education

More information

2014 National Robotics Competition - GEN II Football

2014 National Robotics Competition - GEN II Football 2014 National Robotics Competition - GEN II Football General guidelines 1. A school team should comprise of 2 or 3 students and 1 school teacher. 2. Each school can send a maximum of 5 teams for GEN II

More information

Farm to Fork Local Food Production and Marketing

Farm to Fork Local Food Production and Marketing Farm to Fork Local Food Production and Marketing LEGO Robotics 4- H Challenge Through the Farm to Fork Robotics Challenge, 4- H members involved in robotics will create LEGO robots that complete local

More information

Acidity Tester. Project OBJECTIVES DIFFICULTY LEVEL

Acidity Tester. Project OBJECTIVES DIFFICULTY LEVEL Acidity Tester Project 3 Engineers use robots to do tasks that might be harmful to humans. One common example is working with hazardous chemicals. A hazardous chemical is one that could cause a negative

More information

World Robot Olympiad 2018

World Robot Olympiad 2018 World Robot Olympiad 2018 REGULAR CATEGORY RULES Version: Final Version January 15 th Table of Contents Introduction... 3 Important changes for WRO 2018... 3 Regular Category Rules... 4 1. Surprise Rule...

More information

Rescue Rover. Robotics Unit Lesson 1. Overview

Rescue Rover. Robotics Unit Lesson 1. Overview Robotics Unit Lesson 1 Overview In this challenge students will be presented with a real world rescue scenario. The students will need to design and build a prototype of an autonomous vehicle to drive

More information

Mapping a Magnetic Field. Evaluation copy. Figure 1: Detecting the magnetic field around a bar magnet

Mapping a Magnetic Field. Evaluation copy. Figure 1: Detecting the magnetic field around a bar magnet Mapping a Magnetic Field Experiment 16 The region around a magnet where magnetic forces can be detected is called a magnetic field. All magnets, no matter what their shape, have two poles labeled north

More information

Competition statute for SUMO Robots

Competition statute for SUMO Robots Competition statute for SUMO Robots Rules are copied from: http://www.robogames.net/rules/all-sumo.php Name of Event: Sumo Number of Robots per Event: Two Length of Event: 3 minutes Robot Weight Range:

More information

RARC Competition 3 - Elementary Division Guidelines - Page 1

RARC Competition 3 - Elementary Division Guidelines - Page 1 2015-2016 RARC Competition 3 - Elementary Division Guidelines - Page 1 The Wonders of the World Congratulations on completing your first two adventures and advancing on to the final leg of your journey.

More information

HOW TO HOLD THE SHOT

HOW TO HOLD THE SHOT HOW TO HOLD THE SHOT Balance the shot in his hand so it is resting at the point where the fingers are connected to the palm of the hand. Keep their fingers together and allow their thumb to gently rest

More information

Rulebook Revision 2016 v1.0 Published September 18, 2015 Sponsored By

Rulebook Revision 2016 v1.0 Published September 18, 2015 Sponsored By Rulebook Revision 2016 v1.0 Published September 18, 2015 Sponsored By 1 Table of Contents 1 General Overview... 3 1.1 General Team Rules... 3 2 Mini-Urban Challenge... 4 2.1 The Challenge... 4 2.2 Navigation...

More information

Your challenge is to create a programme that will make the NXT:

Your challenge is to create a programme that will make the NXT: Your challenge is to create a programme that will make the NXT: Go forwards until It bumps into something using the touch sensor It then needs to reverse for 2 seconds rotate for 1 revolution say 'whoops'

More information

SNOOKER SCORE BOARD. Snooker Scorer. Digital snooker score board. Operator & Reference Handbook

SNOOKER SCORE BOARD. Snooker Scorer. Digital snooker score board. Operator & Reference Handbook Snooker Scorer. Digital snooker score board. Operator & Reference Handbook Rev 1 By Geoff Hackett Copyright 2002 Book reference Part number 'DOC SSN1' Contents 1 Welcome Copyright information. 2 Panel

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION NXT User Guide Introduction WELCOME TO LEGO MINDSTORMS EDUCATION LEGO MINDSTORMS Education is the next generation in educational robotics, enabling students to discover Science, Technology, Engineering

More information

FIRST LEGO League - Massachusetts

FIRST LEGO League - Massachusetts FIRST LEGO League - Massachusetts Thank you for agreeing to serve as a referee for a FIRST LEGO League event! You were asked to serve as an FLL referee because we believe that your passion and excitement

More information

World Robot Olympiad 2018

World Robot Olympiad 2018 World Robot Olympiad 2018 WRO Football Game Description, Rules and Scoring Version: Final Version January 15 th Table of Contents WRO 2018 WRO Football - Game Description, Rules, and Scoring Introduction...

More information

World Robot Olympiad 2019

World Robot Olympiad 2019 World Robot Olympiad 2019 REGULAR CATEGORY GENERAL RULES Age groups Elementary, Junior, Senior (for WeDo Rules, please see the WeDo documents) Version: January 15 th WRO International Premium Partners

More information

Lego Mindstorm Robot for Robowl-a-Rama Tournament. Submitted by: Carlotta Berry Rose Hulman Institute of Technology

Lego Mindstorm Robot for Robowl-a-Rama Tournament. Submitted by: Carlotta Berry Rose Hulman Institute of Technology Lego Mindstorm Robot for Robowl-a-Rama Tournament Submitted by: Carlotta Berry Rose Hulman Institute of Technology berry123@rose-hulman.edu ECE 160 Product Design Specification (PDS) Fall 2012-2013 Version

More information

Northern Rocky Mountain Division

Northern Rocky Mountain Division Northern Rocky Mountain Division Adaptive Snowboard Level 1 Riding Requirements Riding Skills Work with your trainer(s) on the following riding demonstrations and tasks, any item listed may be used for

More information

Introduction Terminology Creating the Club Materials Kits and Software Space and Time... 4

Introduction Terminology Creating the Club Materials Kits and Software Space and Time... 4 Version 3.0 (2017) TABLE OF CONTENTS Introduction... 3 Terminology... 3 Creating the Club... 3 Materials... 4 Kits and Software... 4 Space and Time... 4 People and Creating Teams... 4 Timeline... 5 Planning

More information

Lego Mindstorm Robot for Coup de Bot Tournament. Submitted by: Carlotta Berry Rose Hulman Institute of Technology

Lego Mindstorm Robot for Coup de Bot Tournament. Submitted by: Carlotta Berry Rose Hulman Institute of Technology Lego Mindstorm Robot for Coup de Bot Tournament Submitted by: Carlotta Berry Rose Hulman Institute of Technology berry123@rose-hulman.edu ECE 160 Design Project Overview Winter 2011-12 Project Description:

More information

Rules for. Polyathlon. Version Released

Rules for. Polyathlon. Version Released Object of the game: What is a polyathlon? Rules for Polyathlon Version 151021 Released Polyathlon is a series of contests or events similar to the athletic decathlon where robots compete to determine the

More information

CIRCLE WRESTLING 10U/12U PHASE I - UPPER & LOWER BODY HAND WRESTLING & CIRCLE WRESTLING 10U/12U PHASE I - UPPER & LOWER BODY HAND WRESTLING &

CIRCLE WRESTLING 10U/12U PHASE I - UPPER & LOWER BODY HAND WRESTLING & CIRCLE WRESTLING 10U/12U PHASE I - UPPER & LOWER BODY HAND WRESTLING & 0U/U PHASE I - UPPER & LOWER BODY HAND WRESTLING & HAND WRESTLING SETUP Divide players into partners. Pair up players of similar size. Grasp partner s right hand like a handshake. Place left foot forward

More information

2013 National Robotics Competition - GEN II Football

2013 National Robotics Competition - GEN II Football 2013 National Robotics Competition - GEN II Football General guidelines 1. A school team should comprise of 2 or 3 students and 1 school teacher. 2. All rules and regulations are subject to change without

More information

NATIONAL INSTRUMENTS AUTONOMOUS ROBOTICS COMPETITION Task and Rules Document

NATIONAL INSTRUMENTS AUTONOMOUS ROBOTICS COMPETITION Task and Rules Document NATIONAL INSTRUMENTS AUTONOMOUS ROBOTICS COMPETITION 2018 2018 Task and Rules Document Table of Contents Competition Background:... 2 Theme: Autonomous Vehicles Fast Track to the Future... 2 Design Elements

More information

RoboHit TM Robofest 2017 Game

RoboHit TM Robofest 2017 Game RoboHit TM Robofest 2017 Game V1.7.1 Jan 27, 2017 (Frozen Official Version. Clarifications or updates after 1.7 are listed in Red) 1. Game Synopsis A ball-stand is located at the center of a white square

More information

SomnoSuite FAQ. Setup. Calibration 4. What are the calibration requirements for the SomnoSuite? Settings

SomnoSuite FAQ. Setup. Calibration 4. What are the calibration requirements for the SomnoSuite? Settings SomnoSuite FAQ V1.3 January 2015 Setup 1. How do I connect the SomnoSuite to my oxygen source? 2. Is there a way to speed up the downward movement of the pusher block when setting the empty position? 3.

More information

Jump Rope Skills

Jump Rope Skills Jump Rope Skills 2018-2019 Jump Rope Skills Introduction Jumping rope is a fun fitness activity that is shared all over the world. It is an indoor/outdoor activity that needs little space or equipment.

More information

SPARC Judging Guidelines v1.1

SPARC Judging Guidelines v1.1 SPARC Judging Guidelines v1.1 If an event chooses to use non-standard rules they will make the alterations clear and publicly available prior to the event. The Judges will be located close enough to the

More information

PARA-BADMINTON WHEELCHAIR DEVELOPMENT

PARA-BADMINTON WHEELCHAIR DEVELOPMENT PARA-BADMINTON WHEELCHAIR DEVELOPMENT Para-Badminton Wheelchair Development Introduction The use of the arms for both movement and hitting technique are the main challenges in the wheelchair sports class.

More information

Playing Catch - Throwing The Baseball

Playing Catch - Throwing The Baseball Playing Catch - Throwing The Baseball Entire Body When kids are taught to throw, often the instruction is watered down into just a couple of steps. The act of throwing a baseball is not that simple. Throwing

More information

Begleitheft Activity booklet Manual d accompagnement Begeleidend boekje Cuaderno adjunto Folheto Libretto di istruzioni Сопроводительная инструкция

Begleitheft Activity booklet Manual d accompagnement Begeleidend boekje Cuaderno adjunto Folheto Libretto di istruzioni Сопроводительная инструкция Begleitheft Activity booklet Manual d accompagnement Begeleidend boekje Cuaderno adjunto Folheto Libretto di istruzioni Сопроводительная инструкция 附带说明书 Contents PROFI DYNAMIC XXL 2 What does dynamics

More information

Robot Soccer Challenge

Robot Soccer Challenge Robot Soccer Challenge Pre-Activity Quiz 1. What kind of wireless electrical connection can NXT robots use to communicate with other electrical devices (including other NXTs)? 2. Can you think of a way

More information

Animal Allies Robot Game

Animal Allies Robot Game Animal Allies Robot Game What s Allowed 1 EV3, RCX or Controller 4 Motors What s Allowed As many of the following external sensors as you like: What s Allowed Regular LEGO Elements (non-electric) MINDSTORMS

More information

CONSTRUCTOPEDIA NXT Kit 9797

CONSTRUCTOPEDIA NXT Kit 9797 CONSTRUCTOPEDIA NXT Kit 9797 Beta Version 2.0 August 17, 2007 Center for Engineering Educational Outreach Tufts University Table of Contents Simple Shapes and Structures. Page 3 Ways To Attach NXT Motors...

More information

Official Guidebook. Version 1.1. A Washington FIRST Robotics Team

Official Guidebook. Version 1.1. A Washington FIRST Robotics Team Official Guidebook Version 1.1 A Washington FIRST Robotics Team Table of Contents Introduction... 3 Involvement... 3 Creating the Club... 3 Materials... 4 Upcoming Events... 4 Timeline... 5 Game and Tournament...

More information

2018 Bratney Companies 4-H Robotics Challenge

2018 Bratney Companies 4-H Robotics Challenge 2018 Bratney Companies 4-H Robotics Challenge @ the Iowa State Fair August 12 and 13, 2018 Robotics Club Packet Sponsored by: Event Overview This event is an opportunity for you, who has been learning

More information

DRIVERLESS SCHOOL BUS

DRIVERLESS SCHOOL BUS World Robot Olympiad 2019 WeDo Regular Category Game Description, Rules, and Scoring SMART CITIES DRIVERLESS SCHOOL BUS Version: January 15 th WRO International Premium Partners Table of Contents 1. Game

More information

Technology. Using Bluetooth

Technology. Using Bluetooth Bluetooth is a communication technology that makes it possible to send and receive data without using wires. Using the Bluetooth features, you can set up a wireless connection between your NXT and other

More information

Regular Elementary Category Rocket

Regular Elementary Category Rocket Introduction to WRO 14 Regular Elementary Category Rocket WRO-USA Last updated: 7/1/14 1 Regular Cat. Elementary: Rocket Note: there will be no wall in USA tournaments The ramp should be screwed on the

More information

HALF MARATHON TRAINING PROGRAMME

HALF MARATHON TRAINING PROGRAMME HALF MARATHON TRAINING PROGRAMME DURATION 15 weeks ACTIVITY 5 sessions and 2 rest days per week for the 15 week duration. Your sessions are outlined below SESSION 1 SESSION 2 SESSION 3 SESSION 4 SESSION

More information

Feature Picture Example Description Use Task Examples

Feature Picture Example Description Use Task Examples 3.3.1 Features Click on the features icon to enter the features. The features are the hand positions and grips that can be programmed onto your i-limb ultra revolution and triggers are the muscle signals

More information

2012 NRC - RULES AND REGULATIONS

2012 NRC - RULES AND REGULATIONS 2012 NRC - RULES AND REGULATIONS General Guidelines 1. A school team should comprise of 2 or 3 students and one teacher. 2. Each school can send a maximum of 5 teams for each category. 3. All rules and

More information

Force Vectors SHOT PUT MECHANICS

Force Vectors SHOT PUT MECHANICS SHOT PUT MECHANICS The shot put is an individual event that is dominated by big, powerful male and female athletes. There are two techniques for throwing the shot put---the glide and rotation--. Neither

More information

This document will provide detailed specifications, a bill of materials (BOM), and assembly instructions for the Official Competition Field.

This document will provide detailed specifications, a bill of materials (BOM), and assembly instructions for the Official Competition Field. This document will provide detailed specifications, a bill of materials (BOM), and assembly instructions for the Official Competition Field. Please note that this field utilizes the VEX IQ Challenge Field

More information

Drill Drill Description Equipment

Drill Drill Description Equipment 1 Table of Contents Warm Up Games... 3-6 Ball Carrying Drills/Games... 7-10 Passing/Catching Drills... 11-13 Passing/Catching Games... 14-18 Attacking/Defensive Drills/Games... 19-30 Modified Touch Games...

More information

-SWEPT AWAY- Description & Overview. VEX Classroom Competition Swept Away

-SWEPT AWAY- Description & Overview. VEX Classroom Competition Swept Away -SWEPT AWAY- Description & Overview Swept Away is a head-to-head robotics competition designed and scaled to be run in a classroom environment by a single teacher. This game provides a challenge for designers

More information

AN INVITATION TO SCHOOLS TO PARTICIPATE

AN INVITATION TO SCHOOLS TO PARTICIPATE AN INVITATION TO SCHOOLS TO PARTICIPATE Schools are cordially invited to participate in the QSITE Grand Prix Robotics Competition for 2017. Your school can register just one team or multiple teams of up

More information

Hebocon Official Rule Book. Content of contest. Basic rules

Hebocon Official Rule Book. Content of contest. Basic rules Hebocon Official Rule Book Content of contest This is a robot sumo-wrestling competition. It is an arranged version of Japanese sumowrestling. Basic rules Plywood that is about 100cm x 50cm in size is

More information

UK Kubb Championship Rules

UK Kubb Championship Rules UK Kubb Championship Rules V 0.3 These rules are authorized as official by the UK Kubb Championship, and have been designed in spirit to promote a fair and enjoyable tournament environment for all kubb

More information

Document provided as part of the The Modern Game Kicking Workshop

Document provided as part of the The Modern Game Kicking Workshop GAME SENSE KICKING S Document provided as part of the The Modern Game Kicking Workshop No.1 - STATIC FIELD KICKING EXTENSIONS To kick from a static position over someone on the mark 1. Players in groups

More information

MOOLOOLABA YACHT CLUB YOUTH SAILING PROGRAM DRILL BOOK 1

MOOLOOLABA YACHT CLUB YOUTH SAILING PROGRAM DRILL BOOK 1 MOOLOOLABA YACHT CLUB YOUTH SAILING PROGRAM 2017 DRILL BOOK 1 Drill 1 -Diamond Topic: Boat handling Focus: Mark Rounding, Sets & Drops # of Boats required: Any # of marks required: 4 Set up a Diamond shape

More information

World Robot Olympiad WeDo 2.0 Pilot Regular Challenge. Game Description, Rules and Scoring. Sustainabots [Robots for sustainability]

World Robot Olympiad WeDo 2.0 Pilot Regular Challenge. Game Description, Rules and Scoring. Sustainabots [Robots for sustainability] World Robot Olympiad 2017 WeDo 2.0 Pilot Regular Challenge Game Description, Rules and Scoring Sustainabots [Robots for sustainability] Sustainable Tourism Version: Final Version March 10 th Table of Contents

More information

The Soccer Guy. By Marcus Hilgers Faisal Ahmad Jacob Borer

The Soccer Guy. By Marcus Hilgers Faisal Ahmad Jacob Borer The Soccer Guy By Marcus Hilgers Faisal Ahmad Jacob Borer 1.0 Abstract The Soccer Guy automaton was created to provide a fun, interactive, simple game. It uses simple mechanical and computational elements

More information

Snowboard Certification Standards 2010

Snowboard Certification Standards 2010 American Association of Snowboard Instructors Snowboard Certification Standards 2010 National Standards: Level One, Level Two, Level Three Updated June 16, 2010 Table of Contents 1. Introduction 3 2. Movement

More information

-Round Down- Description & Overview. VEX Classroom Competition Round Down

-Round Down- Description & Overview. VEX Classroom Competition Round Down -Round Down- Description & Overview Round Down is a head-to-head robotics competition designed and scaled to be run in a classroom environment by a single teacher. This game provides a challenge for designers

More information

Coaching Principles. 1. Introduce 2. Demonstrate 3. Explain 4. Organize 5. Execute 6. Correct 7. Practice

Coaching Principles. 1. Introduce 2. Demonstrate 3. Explain 4. Organize 5. Execute 6. Correct 7. Practice 5 Pin Bowling Drill Book Updated August 2008 Coaching Principles STEPS IN TEACHING A DRILL 1. Introduce 2. Demonstrate 3. Explain 4. Organize 5. Execute 6. Correct 7. Practice GENERAL PRINCIPLES Drills

More information

Coaching Players Ages 17 to Adult

Coaching Players Ages 17 to Adult Coaching Players Ages 17 to Adult This section provides you with a twelve-week training program for players ages 17 through Adult. Each practice features four fun and progressive drills and culminates

More information

Rule 0. Construction and programming of robots has to be performed exclusively by the students.

Rule 0. Construction and programming of robots has to be performed exclusively by the students. World Robot Olympiad GEN II Football Rules 2015 Last Modified: March 1 2015 Index 1. Playing Field 2. Ball 3. Robots 4. Game Play 5. Conflict resolution 6. Inspection 7. Code of Conduct Rule 0. Construction

More information

Kite 750 kite shape folding table

Kite 750 kite shape folding table 750 kite shape folding table Kite shape folding table with Jewel casters 29 inch 36 inch Total depth 36 inch (four of the sides are to configure with the other tables in the 750 range) Finishes See page

More information

Finally Out of the Sand

Finally Out of the Sand Finally Out of the Sand A Guide to Success in the Bunker Written By: Master Teaching Professional Adam Kolloff www.scratchgolfschool.com Introduction I can't tell you how many people roll their eyes when

More information

Wheelchair Basketball Canada. November 2011 Toolbox

Wheelchair Basketball Canada. November 2011 Toolbox Wheelchair Basketball Canada November 2011 Toolbox All Materials Copyright Wheelchair Basketball Canada 2011 Preparation 1. Keep the body balanced above the axles and centred in the chair (body upright,

More information

A World In Motion Fuel Cell Challenge. Competition Guide

A World In Motion Fuel Cell Challenge. Competition Guide A World In Motion Fuel Cell Challenge Competition Guide Fuel Cell Endurance Challenge Objective: Student design teams will construct a Fuel Cell car that can travel in a circle for as long as possible.

More information

10 WEEK LESSON PLAN (COVER PAGE) INCLUDE A SANFL LOGO. Activity Booklet

10 WEEK LESSON PLAN (COVER PAGE) INCLUDE A SANFL LOGO. Activity Booklet 10 WEEK LESSON PLAN (COVER PAGE) INCLUDE A SANFL LOGO Activity Booklet INTRODUCTION NAB AFL Auskick is the key introductory program for primary aged children and their families. The program provides boys

More information

GREAT THINGS TO KNOW ABOUT YOUR. IRwin Methane Leak Detector

GREAT THINGS TO KNOW ABOUT YOUR. IRwin Methane Leak Detector 11 GREAT THINGS TO KNOW ABOUT YOUR IRwin Methane Leak Detector 1 START UP Turn the device on and wait a maximum of 2 minutes, while the instrument is warming up, and performing a self test. It also connects

More information

KINESIOLOGY PROJECTS:

KINESIOLOGY PROJECTS: KINESIOLOGY PROJECTS: INTERVIEW: Pick one person to interview in the Kinesiology field; TYPE a one-two page report on your findings in an Essay form. Interview, including and not limited to the following

More information

MHBYW Dynasty Program

MHBYW Dynasty Program MHBYW Dynasty Program Level 3: Red Skill Properly Executed? Comment Staggered/Square Stance Yes No Motion Yes No Starting Positions Neutral Yes No Top Yes No Bottom Yes No Four Defensive Stops Yes No Head,

More information

Delivery Step by Step Call now for expert advice: Lines open:

Delivery Step by Step   Call now for expert advice: Lines open: Delivery Step by Step www.h2ohottubs.co.uk Call now for expert advice: 0333 990 0320 Lines open: Monday - Friday 9am - 5pm, Saturday 8am - 3pm step by step guide We ve created this simple step by step

More information

Table of Contents. Copyright VisualEdge, Inc All rights reserved. Copyright VisualEdge, Incorporated All rights reserved.

Table of Contents. Copyright VisualEdge, Inc All rights reserved. Copyright VisualEdge, Incorporated All rights reserved. Instruction Manual Table of Contents Introduction...2. Field Description & Plans...3. Field Setup and Components...5. Playing the Game...6. Who Is Going to Play...7. Awards...7 Running a Tournament...8.

More information

REACTOR 40 MECHANICAL Configuration Guide

REACTOR 40 MECHANICAL Configuration Guide REACTOR 40 MECHANICAL Configuration Guide Important Safety Information WARNING See the Important Safety and Product Information guide in the product box for product warnings and other important information.

More information

KY Starter Bot Build Images and Coding Instructions from YouTube Videos

KY Starter Bot Build Images and Coding Instructions from YouTube Videos KY Starter Bot Build Images and Coding Instructions from YouTube Videos Acknowledgements Brentwood Academy (BA) gratefully acknowledges the work and generosity of the University of Kentucky (UK) Engineering,

More information

Uphill / Downhill. Super Elevations. Wide-Width 2/15/2016. March 22-24, 2016 Nashville, TN

Uphill / Downhill. Super Elevations. Wide-Width 2/15/2016. March 22-24, 2016 Nashville, TN Uphill / Downhill Wide-Width 1 Uphill Issue Loss of traction Downhill Issue Spills caused by truck rollaway Uphill Paving Obvious things Apply correct amount of tack Wait for tack to break 2 Uphill Paving

More information

This is the Quick Start Guide for the Optibike Pioneer Allroad electric bicycle. The Guide provides for basic information required to ride the

This is the Quick Start Guide for the Optibike Pioneer Allroad electric bicycle. The Guide provides for basic information required to ride the This is the Quick Start Guide for the Optibike Pioneer Allroad electric bicycle. The Guide provides for basic information required to ride the Allroad. It is not intended to be an extensive manual. It

More information

Australian Standards. Constraints

Australian Standards. Constraints Design Brief The client, Mr. Vaughn Anderson, the Technology Coordinator at Lyndale Secondary College, has requested the design and construction a motor vehicle or other device which can be programmed

More information

GOLFBOARD NEW USER ONBOARDING PROCEDURES

GOLFBOARD NEW USER ONBOARDING PROCEDURES GOLFBOARD NEW USER ONBOARDING PROCEDURES OVERVIEW Playing golf with a GolfBoard is new. It's fun, easy, and with just some simple instructions most anyone can quickly learn how to properly operate a GolfBoard.

More information

NXT Robotics Techniques Workshop 2008

NXT Robotics Techniques Workshop 2008 ORTOP NXT Robotics Techniques Workshop 2008 Opening doors to the worlds of science and technology for Oregon s youth 9/29/2008 NXT Robotics Techniques - 2008 1 Goals Audience: Rookie coaches/mentors, experienced

More information

#5 Regulate the magnitude of pressure created through ski/snow contact. Pressure Control Movements (PCM)

#5 Regulate the magnitude of pressure created through ski/snow contact. Pressure Control Movements (PCM) Task Level WTLF (What to Look For) Skill Falling Leaf 2 A series of forward and backward shaped #1 Control the relationship of the COM to the base of support to direct diagonal sideslips 1 cat track wide

More information

USTEM/SCRC Mars Space Challenge 2016

USTEM/SCRC Mars Space Challenge 2016 Rules to Space Challenge The Space Challenge consists of seven missions. All of them deal with setting up your space base, using the equipment, or launching a satellite that can help you explore planets

More information