Acidity Tester. Project OBJECTIVES DIFFICULTY LEVEL

Size: px
Start display at page:

Download "Acidity Tester. Project OBJECTIVES DIFFICULTY LEVEL"

Transcription

1 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 health effect, such as cancer, lung damage, skin irritation, or even death. If a mixture contains at least 1% of a known hazardous chemical, it is classified as a hazardous material. Consequently, many common household solutions, such as paints, cleaners, inks, and dyes can be considered hazardous. An acid is sometimes considered a hazardous chemical, because it can cause severe burns if it gets in your eyes, nose, or skin. Not all acids are hazardous, however. Some acids, such as vinegar and lemon juice, are used in cooking to give foods their distinctive flavor. In this project, your challenge is to build a sensor-controlled robot to determine the acidity of a liquid. Your robot should be mobile, so that hazardous chemicals can be kept away from human operators. You will use a Vernier ph Sensor and a Vernier NXT Sensor Adapter connected to your NXT to test the acidity of several common household solutions. Solutions that are acidic will have a ph value between 0 7. There are many ways to tackle this challenge. One idea described here is to have your robot move toward a cup of liquid, stop when a LEGO Touch Sensor contacts the cup, and then lower the ph Sensor into the cup. Once the ph of the liquid is determined, the robot should raise the ph Sensor from the cup and back away. You can play a sound file, such as a scream, to let people know the solution is hazardous. OBJECTIVES In this project, you will Build a robot to find a cup and lower a probe. Use the NXT to determine the ph value of a liquid. Play a sound based on sensor data. DIFFICULTY LEVEL Construction Intermediate Programming Intermediate STEM with Vernier and LEGO MINDSTORMS NXT 3-1

2 Project 3 MATERIALS computer coffee cup LEGO NXT Intelligent Brick household solutions (see Experiment 1) MINDSTORMS Edu NXT v2.0 software wash bottle filled with distilled water Vernier NXT Sensor Adapter waste cup Vernier ph Sensor* goggles LEGO MINDSTORMS NXT Educational Set *The ph Sensor should stand in ph 7 buffer solution when not in use to keep it from drying out. DESIGN REQUIREMENTS In this project, you will design and build a mobile robot for testing the ph of a solution. You should use a ceramic coffee cup or other relatively heavy container to hold the solution, since a lightweight container, like a Styrofoam cup, might tip over. The robot should approach the cup, stop when the touch sensor comes in contact with the cup, and then lower the ph Sensor. After a few seconds your robot should raise the ph Sensor, play a sound, and then back away from the cup. Your program should compare the ph value of the solution with a pre-defined limit. If the ph is less than 7, the robot should scream. If the ph is greater than 7, the robot should say good. We recommend using orange juice or cola for the acid in this project and water with a little baking soda added to it for the base. If you use any other acid solution, use caution as they can be toxic, corrosive, or irritating to the skin, eyes, lungs, or mucous membranes. Handle those solutions with care. Do not allow the solutions to contact your skin or clothing. You are strongly encouraged to use the Engineering Design Method and your creative imagination when tackling this challenge (see Appendix G). However, construction and programming instructions for one possible solution follow. CONSTRUCTION These directions were created using LEGO Digital Designer (LDD), a CAD-like software program for LEGO components. This program allows you to view the following building instructions interactively on your computer. A free download of LDD is available from The Acidity Tester LDD file is provided on the accompanying CD. The base for this robotic device is a basic Four-Wheel Cart. (See Appendix E for detailed building instructions. The 4Wheel Cart LDD file is also provided on the accompanying CD.) The building instructions below are for two subassemblies that will be added to the basic cart: the Touch Sensor & Motor and the ph Sensor Holder. The Touch Sensor & Motor subassembly will be attached to the two motors on the Four-Wheel Cart. The ph Sensor Holder subassembly will be attached to the motor on the Touch Sensor & Motor subassembly. 3-2 STEM with Vernier and LEGO MINDSTORMS NXT

3 Acidity Tester Touch Sensor & Motor Step 1 Step 2 Step 3 Step 4 STEM with Vernier and LEGO MINDSTORMS NXT 3-3

4 Project 3 Step 5 Step 6 Step 7 Step 8 Step 9 Step 10 See Appendix E for cart building instructions 3-4 STEM with Vernier and LEGO MINDSTORMS NXT

5 Acidity Tester Note, the lower axle shown in Step 7 is the same axle shown in Step 3 of the Basic Cart instructions. Remove the 12M axle from the bottom of the Basic Cart, slide the long end of the angle beam down between the two motors, and reinsert the axle between all pieces. Secure on the ends with bushings. Use a cable to connect the upper motor to port A on the NXT. Connect the touch sensor to Port 2 and the cart s motors to Ports B and C. ph Sensor holder Step 1 Step 2 Step 3 Step 4 STEM with Vernier and LEGO MINDSTORMS NXT 3-5

6 Project 3 Step 5 Step 6 Step 7 Step 8 Step 9 Step STEM with Vernier and LEGO MINDSTORMS NXT

7 Acidity Tester Step 11 Step 12 Step 13 Step 14 Step 15 Step 16 STEM with Vernier and LEGO MINDSTORMS NXT 3-7

8 Project 3 Step 17 Step 18 Attach the ph Sensor Holder to the motor that is part of the Touch Sensor & Motor subassembly; then position a Vernier ph Sensor between the four axles of the ph Sensor Holder. The bulb of the ph Sensor is easily breakable and should not extend below the end of the beam. The beam was intentionally made longer to protect the bulb of the ph Sensor from hitting the bottom of the cup. Secure the ph Sensor in place by wrapping two rubber bands from your MINDSTORMS NXT Educational Set around the upper and lower pair of axles. Connect the ph Sensor to the Vernier NXT Adapter; then connect the Adapter to Port 1 on the NXT. 3-8 STEM with Vernier and LEGO MINDSTORMS NXT

9 PROGRAMMING Acidity Tester The 03 Acidity Test.rbt program created with MINDSTORMS Edu NXT v2.0 software is shown below. (This program can be found on the accompanying CD.) 03 Acidity Test is a simple single pass program. When the program starts, it waits a second before executing to allow the user to get out of the way. The program enters a loop that runs the drive motors B and C forward until the touch sensor on the front of the robot contacts the cup of solution; then it stops. The robot then lowers the Vernier ph Sensor into the solution using motor A, waits four seconds, takes a ph reading, and displays it on the NXT screen. Next, a Switch command performs a ph reading and determines what sound file is played based on the value of the reading (see the figure below). If the ph is below 7 (the acid), the solution is considered hazardous and the robot will shout. If the ph is above 7, the solution is considered safe and the robot will say Good. (Settings for formatting the Sound block are shown in the figure below.) The robot then raises the ph Sensor and backs away from the cup. STEM with Vernier and LEGO MINDSTORMS NXT 3-9

10 Project 3 The figure below shows the settings for formatting the Switch block. EXTENSIONS 1. Add a LEGO Motion Sensor and Light Sensor to your robot to allow it to sort a set of liquidfilled cups into an Acid area and a Safe area. You can use black tape to outline the areas on the floor. The robot described above is a four-wheeled cart constrained to moving forward and backward. It is a good design when you require a lot of stability, but it is not good for turning. A suggestion would be to substitute the three-wheeled Driving Base robot is described in the Robot Educator of the NXT Programming software. 2. Liquids have other properties that can be considered potentially hazardous to humans, such as temperature, conductivity, or salinity. Repeat this project substituting a Vernier Stainless Steel Temperature Probe to test for scalding liquids, a Vernier Conductivity Probe to check for a heavy ion concentration in a liquid, or a Vernier Salinity Sensor to test the saltiness of a solution STEM with Vernier and LEGO MINDSTORMS NXT

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

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

Heating of Land and Water

Heating of Land and Water Heating of Land and Water Experiment 8 How fast land and water heat and cool influences our weather. In Part I of this experiment, you will heat sand and water. You will use two Temperature Probes to see

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

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

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

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

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

NAVIGATOR Product demonstration prop building instructions

NAVIGATOR Product demonstration prop building instructions NAVIGATOR Product demonstration prop building instructions Regional competitions may build product demonstration props out of materials other than PVC pipe. Your regional coordinator will inform you of

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

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

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

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

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

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

Using the Lego NXT with Labview.

Using the Lego NXT with Labview. Using the Lego NXT with Labview http://www.legoengineering.com/component/content/article/105 The Lego NXT 32-bit ARM microcontroller - an Atmel AT91SAM7S256. Flash memory/file system (256 kb), RAM (64

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

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

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

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

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

Evaluation copy. Interdependence of Plants and Animals. computer OBJECTIVES MATERIALS

Evaluation copy. Interdependence of Plants and Animals. computer OBJECTIVES MATERIALS Interdependence of Plants and Animals Computer 14 Plants and animals share many of the same chemicals throughout their lives. In most ecosystems, O 2, CO 2, water, food and nutrients are exchanged between

More information

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

Rule 1 of Sumo club is we don t talk about sumo club! SumoBot Notes 1 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

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

The Mechanical Advantage

The Mechanical Advantage The Mechanical Advantage Subject Area(s) Physical Science, Science and Technology Associated Unit Yellow highlight = required component Associated Lesson Activity Title Wide World of Gears Figure 1 ADA

More information

National Robotics Competition 2018 NRC WRO Challenge Manual

National Robotics Competition 2018 NRC WRO Challenge Manual National Robotics Competition 2018 NRC WRO Challenge Manual Page 1 of 13 A. Competition Categories World Robot Olympiad has three regular competition categories, and an Open category: 1. Regular Category

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

General Rules 2010: Regular category

General Rules 2010: Regular category General Rules 2010: Regular category [1] The rules of competition at WORLD ROBOT OLYMPIAD are constituted by the WORLD ROBOT OLYMPIAD Steering Committee ( the committee in the following paragraphs), and

More information

OPERATOR S MANUAL Ar-Gone Weld Gas Analyzer

OPERATOR S MANUAL Ar-Gone Weld Gas Analyzer July 2011 OPERATOR S MANUAL Ar-Gone Weld Gas Analyzer WARNING! Before operating this product, read and understand this Operator s Manual. Become familiar with the potential hazards of this unit. Contact

More information

PREPARATION AND PROPERTIES OF ATMOSPHERIC GASES I: Carbon Dioxide and Oxygen

PREPARATION AND PROPERTIES OF ATMOSPHERIC GASES I: Carbon Dioxide and Oxygen PREPARATION AND PROPERTIES OF ATMOSPHERIC GASES I: Carbon Dioxide and Oxygen.... :O = C = O:.... :O = O: INTRODUCTION The atmosphere consists predominantly of three gases -- nitrogen (N 2 ) 78%, oxygen

More information

Chemistry Safety Packet

Chemistry Safety Packet Chemistry Safety Packet Mr. Buchanan Chemistry TO THE STUDENT Chemistry is exciting! Each day in the laboratory you are given the opportunity to confront the unknown, and to understand it. Each experiment

More information

SAFTETY DATA SHEET WINSOR & NEWTON BRUSH CLEANER AND RECONDITIONER

SAFTETY DATA SHEET WINSOR & NEWTON BRUSH CLEANER AND RECONDITIONER REVISION DATE: O6/03/08 SAFTETY DATA SHEET WINSOR & NEWTON BRUSH CLEANER AND RECONDITIONER 1 IDENTIFICATON OF THE SUBSTANCE/ PREPARATION AND COMPANY UNDERTAKING PRODUCT NAME APPLICATION SUPPLIER WINSOR

More information

SAFETY DATA SHEET S415L VER 15-1 DATE: 8/17/15 SW

SAFETY DATA SHEET S415L VER 15-1 DATE: 8/17/15 SW SAFETY DATA SHEET VER 15-1 DATE: 8/17/15 SW 24 HOUR TELEPHONE NUMBER (CHEMTREC) 800-424-9300 SECTION 1. CHEMICAL PRODUCT AND COMPANY INFORMATION PRODUCT NAME: PRODUCT TYPE: COOLING TOWER BIOCIDE CHEMICAL

More information

Tokyo Industries Limited Control of Substances Hazardous to Health (COSHH) Manual

Tokyo Industries Limited Control of Substances Hazardous to Health (COSHH) Manual Tokyo Industries Limited Control of Substances Hazardous to Health (COSHH) Manual Name of Premises Location Acoura Consulting Ltd, 2 Arlington Court, Whittle Way, Arlington Business Park, Stevenage, SG1

More information

Component 1: Proprietary Component 3.5% (weight %) (Trade Secret per 29 CFR i 1)

Component 1: Proprietary Component 3.5% (weight %) (Trade Secret per 29 CFR i 1) Page 1 of 3 1. Chemical and Company Identification Product Name: Silver Enhancer Solution A (Membrane) Unit size: 250ml Manufacturer/Supplier : CytoDiagnostics Inc., 919 Fraser Drive, Unit 11, Burlington,

More information

Second Edition Chemistry Experiment Supplies MODULE #1

Second Edition Chemistry Experiment Supplies MODULE #1 Second Edition Chemistry Experiment Supplies Those items with "(kit)" next to them are contained the laboratory equipment set that we sell. Those items with "(home)" next to them are considered household

More information

SAFETY DATA SHEET NDA-50 (Non-Damaging Acid)

SAFETY DATA SHEET NDA-50 (Non-Damaging Acid) Section 1: Product & Company Identification Product Name: Product Use: NDA-50 Non-Damaging Acid Company: Plant Facility: Corporate Office: CoilChem, LLC CoilChem, LLC 3928 Hwy 80 2103 East Ladd Rd Rayville,

More information

Product Identification. Hazard Overview

Product Identification. Hazard Overview Page 1 Product Name: Synonyms: Chemical Formula: Formula Weight: Chemical Family: Integra Product Numbers: Product Identification CHROMOTROPIC ACID TS Mixture Laboratory test solution C606.7A HMIS Rating:

More information

Material Safety Data Sheet

Material Safety Data Sheet Material Safety Data Sheet This MSDS is prepared in accordance with OSHA 29 CFR 1910.1200 HCS CLASS: Corrosive liquid. WHMIS Class D-2A: Material causing other toxic effects (VERY TOXIC). WHMIS Class E:

More information

FILTER AND CARTRIDGE CONCENTRATED CLEANER

FILTER AND CARTRIDGE CONCENTRATED CLEANER SAFETY DATA SHEET Version No. 1 Revision No. Authorisation date March 19 th 2006 1. IDENTIFICATION OF SUBSTANCE / PREPARATION AND COMPANY Product Name Use(s) Company Identification Emergency Telephone

More information

e d u c a t i o n NXT Solar Station

e d u c a t i o n NXT Solar Station e d u c a t i o n NXT Solar Station de LEGO Group. 2010 The LEGO Group. e d u c a t i o n NXT Solar Station Description Investigating the NXT Solar Station s ability to generate power by data logging wattage

More information

Competition Rules Location: Texas A&M AgriLife Extension - Brazoria County Office CR 171 Angleton, TX 77515

Competition Rules Location: Texas A&M AgriLife Extension - Brazoria County Office CR 171 Angleton, TX 77515 Competition Rules Location: Texas A&M AgriLife Extension - Brazoria County Office 21017 CR 171 Angleton, TX 77515 When: April 14, 2018 8:30am Doors Open 9:00 am Welcome & Orientation 9:15 am Practice,

More information

Aerobic Respiration. Evaluation copy

Aerobic Respiration. Evaluation copy Aerobic Respiration Computer 17 Aerobic cellular respiration is the process of converting the chemical energy of organic molecules into a form immediately usable by organisms. Glucose may be oxidized completely

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

INTRODUCTION TO WHMIS

INTRODUCTION TO WHMIS WHMIS 2015 WORKSHOP OBJECTIVES 1. Define WHMIS and GHS 2. Describe the important hazard groups 3. Identify and describe the nine pictograms 4. Identify WHMIS supplier labels and elements of a workplace

More information

Material Safety Data Sheet Smoke Generating Tubes

Material Safety Data Sheet Smoke Generating Tubes Material Safety Data Sheet Smoke Generating Tubes SECTION 1. - MANUFACTURER AND CONTACT INFORMATION Manufacturer: RAE Systems Inc. Emergency Telephone Number: 1-888-723-4800 Address: 3775 North First Street

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

3.0 Manage. hazardous substances. risks IN THIS SECTION:

3.0 Manage. hazardous substances. risks IN THIS SECTION: 3.0 Manage hazardous substances risks IN THIS SECTION: 3.1 Hazardous substances can damage your health 3.2 Applying substance controls 3.3 Prepare an inventory of your hazardous substances 3.4 Find and

More information

Introduction to ChemSense

Introduction to ChemSense Introduction to ChemSense As you may have seen, the ChemSense software allows you to create drawings and animation of chemical phenomena (and non-chemical phenomena for some of you). The software also

More information

Right To Know 12 NYCRR PART 820

Right To Know 12 NYCRR PART 820 Right To Know 12 NYCRR PART 820 Hazard Communication 29 CFR 1910.1200 Purpose To protect employees from chemical hazards in the work place Right to know training must cover the following: Hazardous chemical(s)

More information

DISSOLVING AND SOLUBILITY

DISSOLVING AND SOLUBILITY DISSOLVING AND SOLUBILITY QUICK REVIEW: Homogeneous mixtures: a solution of substances in which no settling occurs (looks like one thing). A solution occurs when the particles of the components slip in

More information

MATERIAL SAFETY DATA SHEET

MATERIAL SAFETY DATA SHEET MATERIAL SAFETY DATA SHEET SECTION 1. Identification of the Material and Supplier Product Name: Floor Kleen Recommended Use: Commercial grade floor cleaner Supplier Name: A Plus Chemicals and Fragrances

More information

"SAFETY SHOWERS AND EYE WASHES"

SAFETY SHOWERS AND EYE WASHES MAJOR PROGRAM POINTS "SAFETY SHOWERS AND EYE WASHES" Part of the "GENERAL SAFETY SERIES" Quality Safety and Health Products, for Today...and Tomorrow OUTLINE OF MAJOR PROGRAM POINTS The following outline

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

Control of Substances Hazardous to Health (COSHH) Policy

Control of Substances Hazardous to Health (COSHH) Policy Control of Substances Hazardous to Health (COSHH) Policy & Procedure Document Type Author Owner (Dept) Control of Substances Hazardous to Health (COSHH) Policy & Procedure Health & Safety Human Resources

More information

Date Printed: 06/09/2006 Date Updated: 01/27/2006 Version 1.5 PHOSPHATE BUFFERED SALINE, PH 7.4, TRU- MEASURE CHEMICAL

Date Printed: 06/09/2006 Date Updated: 01/27/2006 Version 1.5 PHOSPHATE BUFFERED SALINE, PH 7.4, TRU- MEASURE CHEMICAL SIGMA-ALDRICH MATERIAL SAFETY DATA SHEET Date Printed: 06/09/2006 Date Updated: 01/27/2006 Version 1.5 Section 1 - Product and Company Information Product Name Product Number Brand PHOSPHATE BUFFERED SALINE,

More information

Material Safety Data Sheet

Material Safety Data Sheet Material Safety Data Sheet Preparation Date: 20-Dec-2007 Revision Number: 3 1. IDENTIFICATION OF THE SUBSTANCE/PREPARATION AND OF THE COMPANY/UNDERTAKING Product Name Item#: Recommended use Supplier Emergency

More information

BIL 151 Laboratory Enzymes: Practicing the Protocol

BIL 151 Laboratory Enzymes: Practicing the Protocol BIL 151 Laboratory Enzymes: Practicing the Protocol Bring a laptop, electronic pad, or other USB-equipped device for recording and storing data. Today you will learn a technique for measuring the rate

More information

MERLIN LOW FOAM SCRUBBER DRIER DETERGENT

MERLIN LOW FOAM SCRUBBER DRIER DETERGENT SECTION 1: IDENTIFICATION OF THE SUBSTANCE/MIXTURE AND OF THE COMPANY/UNDERTAKING 1.1. Product identifier Product name Product No. 012.508 MERLIN LOW FOAM SCRUBBER DRIER DETERGENT 1.2. Relevant identified

More information

Date Printed: 04/29/2008 Date Updated: 12/06/2006 Version 1.9. LUDOX AM-30 COLLOIDAL SILICA, 30 WT. % & Product Number

Date Printed: 04/29/2008 Date Updated: 12/06/2006 Version 1.9. LUDOX AM-30 COLLOIDAL SILICA, 30 WT. % & Product Number SIGMA-ALDRICH MATERIAL SAFETY DATA SHEET Date Printed: 04/29/2008 Date Updated: 12/06/2006 Version 1.9 Section 1 - Product and Company Information Product Name LUDOX AM-30 COLLOIDAL SILICA, 30 WT. % &

More information

CALL INFOTRAC 1(800) Appearance: Pink Liquid Physical State: Liquid Odor: Pleasant odor

CALL INFOTRAC 1(800) Appearance: Pink Liquid Physical State: Liquid Odor: Pleasant odor 50 C H E M I C A L S, I N C. SAFETY DATA SHEET 1. Product and company identification Product Name PERRIN S DEGREASER UN/ID No. DOT (U.S.) Not Classified as Hazardous Recommended use of the chemical and

More information

General No. 25 and D-25 Handy Operating Instructions

General No. 25 and D-25 Handy Operating Instructions General No. 25 and D-25 Handy For 1-1/4 through 3 lines (30mm 75mm) No. 25 Handy D- 25 Handy This tool is designed to give you years of trouble-free, profitable service. However, no machine is better than

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

Safety Data Sheet. AB Page 1 of 6 January 01, Relevant routes of exposure: Eye contact, skin contact, inhalation, ingestion

Safety Data Sheet. AB Page 1 of 6 January 01, Relevant routes of exposure: Eye contact, skin contact, inhalation, ingestion AB 30.00 Page 1 of 6 Section 1: PRODUCT AND COMPANY IDENTIFICATION Omega Products International P.O. Box 77220 Corona, CA 92877-0107 Company Phone Number: 1-951-737-7447 Emergency Phone Number: 1-951-737-7447

More information

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

Computer Integrated Manufacturing (PLTW) TEKS/LINKS Student Objectives One Credit

Computer Integrated Manufacturing (PLTW) TEKS/LINKS Student Objectives One Credit Computer Integrated Manufacturing (PLTW) TEKS/LINKS Student Objectives One Credit Suggested Time Ranges First Six Weeks History of Manufacturing PFD 1.1(A) The student will describe why and how manufacturing

More information

CALL INFOTRAC 1(800) Appearance: Clear Liquid Physical State: Liquid Odor: Bland

CALL INFOTRAC 1(800) Appearance: Clear Liquid Physical State: Liquid Odor: Bland SAFETY DATA SHEET 1. Product and company identification Product Name UN/ID No. C I P Cleaner UN1760 Corrosive Liquid, N.O.S. (Sodium Hydroxide, Potassium Hydroxide) Recommended use of the chemical and

More information

clubs STEM BALLOON ROCKETS Focus: Physics AIM Equipment: Instructions: Discuss: Useful Links:

clubs STEM BALLOON ROCKETS Focus: Physics AIM Equipment: Instructions: Discuss: Useful Links: BALLOON ROCKETS Focus: Physics A balloon provides a simple example of how a rocket engine works. The air trapped inside the balloon pushes out the open end, causing the balloon to move forward. The force

More information

QUALITY ALUMINUM BOAT LIFTS, INC. INSTRUCTIONS. Dominator Lake Lift

QUALITY ALUMINUM BOAT LIFTS, INC. INSTRUCTIONS. Dominator Lake Lift INSTRUCTIONS Dominator Lake Lift PHONE:251-986-3882 * FAX:251-986-3136 QABLDOMINATORINST.2014 P a g e 1 Quality Aluminum Boat Lifts, INC. Installation Instructions: Dominator Lake Lift Thank you for your

More information

Emergency Phone: (800) Water-based alkali detergent Supplier: BRANSON MARKETING 41 EAGLE ROAD BRIANE KEENE DANBURY, CT

Emergency Phone: (800) Water-based alkali detergent Supplier: BRANSON MARKETING 41 EAGLE ROAD BRIANE KEENE DANBURY, CT Section 1 Identification Trade Name: Product Identification: Synonyms: Product Use Description: Cleaner / Degreaser General Info Phone: (203) 796-0400 6035 Emergency Phone: (800) 535-5053 Water-based alkali

More information

* Material Safety Data Sheet (MSDS)*

* Material Safety Data Sheet (MSDS)* * Material Safety Data Sheet (MSDS)* Code: USC Page: 1 Section 1 - Product and Company Identification PRODUCT NAME: MANUFACTURER'S NAME: EMERGENCY TELEPHONE NUMBER U.S. Chemical & Plastic, Inc. (800)424-9300

More information

Laboratory Personal Protective Equipment & Hazard Assessment Tool

Laboratory Personal Protective Equipment & Hazard Assessment Tool Laboratory Personal Protective Equipment & Hazard Assessment Tool This form must be completed by the person in charge of the laboratory, with the guidance of the Chemical Hygiene Officer to conduct a laboratory

More information

R: The Ideal Gas Constant Pre-Lab Assignment

R: The Ideal Gas Constant Pre-Lab Assignment R: The Ideal Gas Constant Pre-Lab Assignment Read the entire laboratory investigation and the relevant pages in your textbook, then answers the questions that follow in the space provided below. 1 Describe

More information

Safety Data Sheet. AK Page 1 of 6 January 01, Appearance/Odor: Thick, viscous, white to off-white liquid with a mild ammonia odor

Safety Data Sheet. AK Page 1 of 6 January 01, Appearance/Odor: Thick, viscous, white to off-white liquid with a mild ammonia odor AK 40.00 Page 1 of 6 Section 1: PRODUCT AND COMPANY IDENTIFICATION Omega Products International P.O. Box 77220 Corona, CA 92877-0107 Company Phone Number: 1-951-737-7447 Emergency Phone Number: 1-951-737-7447

More information

Air Ball! LabQuest Vernier Gas Pressure Sensor Vernier Motion Detector basketball stopper with needle, stopper stem and tubing attached meter stick

Air Ball! LabQuest Vernier Gas Pressure Sensor Vernier Motion Detector basketball stopper with needle, stopper stem and tubing attached meter stick Air Ball! LabQuest 24 Do you ever wonder how the National Basketball Association (NBA) decides how much air should be in the basketballs used during a game? The NBA measures the pressure inside the ball

More information

1. IDENTIFICATION INFOTRAC (North America) 2. HAZARDS IDENTIFICATION. Physical State Liquid

1. IDENTIFICATION INFOTRAC (North America) 2. HAZARDS IDENTIFICATION. Physical State Liquid Safety Data Sheet Issue Date 01-Aug-2013 Revision Date: 05-Oct-2017 Version 1 1. IDENTIFICATION Product Identifier Product Name Passivation Acid Cleaner Other means of identification SDS # Recommended

More information

Myers Chemical. Material Safety Data Sheets (MSDS), Spill Clean-Up and Blood Borne Pathogens

Myers Chemical. Material Safety Data Sheets (MSDS), Spill Clean-Up and Blood Borne Pathogens Myers Chemical Material Safety Data Sheets (MSDS), Spill Clean-Up and Blood Borne Pathogens (Control and Use of Flammable, Toxic and Caustic Materials) To lessen potential hazardous conditions that can

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

Air Ball! Evaluation copy

Air Ball! Evaluation copy Air Ball! Computer 24 Do you ever wonder how the National Basketball Association (NBA) decides how much air should be in the basketballs used during a game? The NBA measures the pressure inside the ball

More information

MATERIAL SAFETY DATA SHEET

MATERIAL SAFETY DATA SHEET INSPECTA - SHIELD 1. IDENTIFICATION OF THE MATERIAL AND SUPPLIER Product Name Inspecta - Shield Product Code - Other Names Phosphate Sulfate Salt Product Use An interior fire retardant coating for absorbent

More information

Safety Data Sheet. Trade Name: DYNAMITE CONCRETE CLEANER

Safety Data Sheet. Trade Name: DYNAMITE CONCRETE CLEANER Section 1 Identification Trade Name: Product Identification: Synonyms: Product Use Description: Concrete cleaner DYNAMITE CONCRETE CLEAN General Info Phone: (800) 811-2987 7135 Emergency Phone: (800) 535-5053

More information

Additel 761 Automated Pressure Calibrators Selection Guide

Additel 761 Automated Pressure Calibrators Selection Guide Automated Calibrators Selection Guide Model Features Range 761-LLP 761-D 761-L 761-LA 761-M 761-MA 761-H 761-HA 761-BP 0.05 to 8 bar.a -0.90 to 25 bar (1.2 to 115 psi.a) (-13 to 375 psi) 0.1 to 26 bar.a

More information

50 % CAUSTC SODA SOLUTION

50 % CAUSTC SODA SOLUTION BEBBINGTON INDUSTRIES SAFETY DATA SHEET 50 % CAUSTC SODA SOLUTION SECTION 1 - IDENTIFICATION Product identifier used on the label: CAUSTIC SODA 50 % Recommended use and restrictions on use: For professional

More information

What a Drag! Evaluation copy. Make observations and predictions about shoes. Measure the force needed to pull different shoes across a surface.

What a Drag! Evaluation copy. Make observations and predictions about shoes. Measure the force needed to pull different shoes across a surface. What a Drag! Computer 29 Why do you have to wear tennis shoes to your physical education class? Have you ever worn slippery-soled dress shoes? In this lab, you will observe the differences between the

More information

Missions and Rules for 2009 Smart Move FLL Competition

Missions and Rules for 2009 Smart Move FLL Competition Robot Game Overview The Smart Move Robot Game gives you first-hand experience in getting a sensorequipped vehicle (your robot) to gain access to places and things, while avoiding or surviving impacts,

More information

Additel 761 Automated Pressure Calibrators

Additel 761 Automated Pressure Calibrators Additel 761 Fully automated pressure calibrator with built-in pressure generator / controller to as high as 600 psi (40 bar) or as low as 0.01 Pa (0.00004 inh 2 O) accuracy Dual pressure modules Built-in

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

SAFETY DATA SHEET BUMPER AND TRIM GEL

SAFETY DATA SHEET BUMPER AND TRIM GEL SAFETY DATA SHEET SECTION 1: Identification of the substance/mixture and of the company/undertaking 1.1. Product identifier Product name Product number Internal identification BTG325, BTG325AU, BTG325CA,

More information

BUILD A BETTER BUBBLE BLOWER

BUILD A BETTER BUBBLE BLOWER Grades K 2, 3 5 20 60 minutes BUILD A BETTER BUBBLE BLOWER DESIGN CHALLENGE Design, build, and test a successful bubble blower. MATERIALS Supplies and Equipment: Shallow bowls or trays Scissors Towels

More information

SECTION 1: PRODUCT AND COMPANY IDENTIFICATION PHOSPHORIC ACID 75% FOOD GRADE Acidic solution

SECTION 1: PRODUCT AND COMPANY IDENTIFICATION PHOSPHORIC ACID 75% FOOD GRADE Acidic solution S A F E T Y D A T A S H E E T 3141 Clifty Drive Madison, IN 47250 NAME: TYPE: PRODUCT # SECTION 1: PRODUCT AND COMPANY IDENTIFICATION Acidic solution EMERGENCY RESPONSE INFORMATION: CHEMTREC Company Offices:

More information

Health, safety and risk 1. Introduction. Personal and social life (eg as discussed in PSE lessons) Health and safety at work. Environmental safety

Health, safety and risk 1. Introduction. Personal and social life (eg as discussed in PSE lessons) Health and safety at work. Environmental safety Health, safety and risk 1 Introduction This book contains a series of student activities intended to promote health and safety within the world of school and work. The student activities place safety within

More information

SAFETY DATA SHEET B-415 VER 15-1 DATE: 3/31/15 24 HOUR TELEPHONE NUMBER (CHEMTREC)

SAFETY DATA SHEET B-415 VER 15-1 DATE: 3/31/15 24 HOUR TELEPHONE NUMBER (CHEMTREC) 1 SAFETY DATA SHEET VER 15-1 DATE: 3/31/15 24 HOUR TELEPHONE NUMBER (CHEMTREC) 800-424-9300 SECTION 1. CHEMICAL PRODUCT AND COMPANY INFORMATION PRODUCT NAME: PRODUCT TYPE: SCALE AND CORROSION INHIBITOR

More information

American Development Corporation

American Development Corporation American Development Corporation 821 William D. Jones Blvd, Fayetteville TN 37334 888-542-8561 Fax - 931-438-2673 www.adc-chem.com Material Safety Data Sheet This Material Safety Data Sheet conforms to

More information

Material Safety Data Sheet

Material Safety Data Sheet Page 1 of 6 Material Safety Data Sheet Secure Product Name Product Number Product Use Manufacturer/ Supplier Phone Number Section 1. Chemical Product and Company Identification Secure BL0930 Cleaner For

More information

SAFETY DATA SHEET (800) (800) Category 5 Category 1 Category 1

SAFETY DATA SHEET (800) (800) Category 5 Category 1 Category 1 SAFETY DATA SHEET 1. Identification Product Identifier F-200 Foaming Acid Cleaner Other means of identification Product code Recommended use Recommended restrictions Manufacturer information Company name

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

INSTRUCTION MANUAL. January 23, 2003, Revision 0

INSTRUCTION MANUAL. January 23, 2003, Revision 0 INSTRUCTION MANUAL Model 810A In-Vitro Test Apparatus for 310B Muscle Lever January 23, 2003, Revision 0 Copyright 2003 Aurora Scientific Inc. Aurora Scientific Inc. 360 Industrial Parkway S., Unit 4 Aurora,

More information

Material Safety Data Sheet

Material Safety Data Sheet Material Safety Data Sheet Hydroxypropyl Methyl Cellulose (HPMC) 1 COMPANY AND PRODUCT IDENTIFICATION Company Name: Gromax Enterprises Corporation Company Address: 17335 Daimler Street Irvine, CA 92614

More information

Surface Tension Test Ink (Red) SAFETY DATA SHEET Dynes/cm 59-71

Surface Tension Test Ink (Red) SAFETY DATA SHEET Dynes/cm 59-71 SAFETY DATA SHEET Dynes/cm 59-71 Version No. 2 First issue date 30-09-2005 Revision date 01-06-2015 1. IDENTIFICATION OF SUBSTANCE / PREPARATION AND COMPANY 1.1 Product Identifier 1.2 Relevant Use(s)/misuse(s)

More information