First-Year Engineering Program Advanced Energy Vehicle External Sensors Reference:  AEV Lab Manual  External Sensors Grading Guidelines.

Slides:



Advertisements
Similar presentations
Advanced Energy Vehicle
Advertisements

How to Safely Jump-Start Your Car. Jump-starting a car can be dangerous if proper procedures are not followed. Always consult your owners manual for specific.
Lab 02: AEV Arduino Programming Basics Advanced Energy Vehicle (AEV)
Advanced Energy Vehicle (AEV)
Lab 09: Performance Test 1 Advanced Energy Vehicle.
Lab 07: System Analysis 3 (Wind Tunnel Testing) Advanced Energy Vehicle.
Lab 06: AEV System Analysis 2 Advanced Energy Vehicle (AEV)
Problem Solving Lab – Part B
Lab 01: AEV Project Introduction Advanced Energy Vehicle (AEV)
Lab 04: AEV External Sensors Advanced Energy Vehicle (AEV)
Using the EDP to Design a Fluid Powered System ENGR 8-4, Lesson 3 Syringe Crane Challenge Written by Roland Williams.
Curry Mouse EE296 Design Review Presentation Saturday, March 11, 2006.
Embedded Programming and Robotics Lesson 6 Mechanical Assembly 1.
Lab 08: AEV Design Analysis Tool Advanced Energy Vehicle (AEV)
First-Year Engineering Program Performance Test 1: Design Concept Comparisons Objective and Goals Lab Procedure Analysis Test Readiness Review.
Inclined Plane Vanderbilt Student Volunteers for Science Fall 2013 Training Presentation.
First-Year Engineering Program Advanced Energy Vehicle Performance Test 4: Final Test.
Lab 06: AEV System Analysis 2 Advanced Energy Vehicle (AEV)
First-Year Engineering Program Advanced Energy Vehicle System Analysis 2 Reference:  AEV Lab Manual  System Analysis 2 Grading Guidelines.
Lab 04: AEV External Sensors Advanced Energy Vehicle (AEV)
First-Year Engineering Program Advanced Energy Vehicle Arduino Programming Basics Reference:  AEV Lab Manual  Arduino Programming Basics Grading Guidelines.
Lab 02: Arduino Programming Basics Advanced Energy Vehicle (AEV)
Application of Math and Science Principles Creating a robot that moves a specified distance straight ahead and Creating a robot that turns a specified.
Maze Challenge Maze Challenge activity > TeachEngineering.org
First-Year Engineering Program Performance Test 2: Operational Objectives Objective and Goals Analysis Test Readiness Review.
Lab 03: AEV Arduino Programming Basics Advanced Energy Vehicle (AEV)
Estimating the Efficiency of a Parallax Servo living with the lab.
PRODUCTS SYSTEMS STEM Teachers Summit Hardware Build Manual.
Lab 01: Creative Design Thinking* Advanced Energy Vehicle (AEV) *Directly from the EEIC Multidisciplinary Capstone Program.
Lab 06: AEV System Analysis 2 (Performance Analysis) Advanced Energy Vehicle (AEV)
Lab 05: AEV System Analysis 1 Advanced Energy Vehicle (AEV)
The George Washington University Department of ECE ECE 1010 Intro: Electrical & Computer Engineering –Introducing KIPR Link/Interface and Set-up –Continuation.
First-Year Engineering Program Advanced Energy Vehicle Topics: AEV Design Concept Screening and Scoring.
First-Year Engineering Program Performance Test 3: Energy Optimization Objective and Goals Lab Procedure Analysis Test Readiness Review.
Lab 07: AEV Design Analysis Tool Advanced Energy Vehicle (AEV)
Negative Power or Negative Rotation makes robot go backwards. But if both are negative, the robot will go forward! Move Steering Block.
First-Year Engineering Program Advanced Energy Vehicle System Analysis 3 Reference:  AEV Lab Manual  System Analysis 3 Grading Guidelines.
ENGR 1182 AEV Lab Proficiency Quiz Review
Lab 07: System Analysis 3 (Wind Tunnel Testing) Advanced Energy Vehicle.
Lab 04: AEV External Sensors Advanced Energy Vehicle (AEV)
College of Engineering Problem Solving Lab Final Build & Testing Lab – Problem Solving C Engineering Education Innovation Center ENGR 1181.
Critical Design Review (CDR)
Sonar Sensor Project Polaroid Sonar Sensor Details of the Project
Speed Sensor Calibration
Welcome to Engineering 1182 or Lab Attendance  Expected to attend all labs  Missing a lab meeting time A valid documented excuse required  Allowed.
First-Year Engineering Program Advanced Energy Vehicle System Analysis 1 Reference:  AEV Lab Manual  System Analysis 1 Grading Guidelines.
Preliminary Design Review (PDR) Advanced Energy Vehicle.
Lab 01: AEV Project Introduction Advanced Energy Vehicle (AEV)
First-Year Engineering Program Advanced Energy Vehicle Design Analysis Tool Reference:  AEV Lab Manual  Design Analysis Tool Grading Guidelines.
AEV PROJECT DESIGN--OSWALD GROUP K –MATTHEW BRODSKY, TROY CROSS, HANK MCNAMARA, SIVAN ZOUELA.
First-Year Engineering Program Preliminary Design Review (PDR) Definition PDR Objectives PDR Material Project Management Review.
National Highway Institute 5-1 REV-2, JAN 2006 EQUIPMENT FACTORS AFFECTING INERTIAL PROFILER MEASUREMENTS BLOCK 5.
Lab 05: System Analysis 1 (Wind Tunnel Testing) Advanced Energy Vehicle.
Lab 07: System Analysis 3 (Wind Tunnel Testing) Advanced Energy Vehicle.
Lab 05: AEV System Analysis 1 Advanced Energy Vehicle (AEV)
VEX IQ Curriculum Smart Machines Lesson 09 Lesson Materials:
Team Millinium Apache ENG 1182
Understanding Communication with a Robot? Activity (60 minutes)
Robo-Math How Far? The Distance a Robot Travels in One Rotation of the Motor = The Circumference of the Wheel Circumference (of the Wheel) = Diameter (of.
Advanced Energy Vehicle (AEV)
Group B Advanced Energy Vehicle
SCOUTBOTICS Engineering Notebook
Group F Asad Idris Kaixin Luo Manan Kedia
Advanced Energy Vehicle
Roller Coaster Design Project
Problem Solving Lab – Part C
Advanced Energy Vehicle
SCOUTBOTICS Engineering Notebook
Advanced Energy Vehicle
Advanced Energy Vehicle
Presentation transcript:

First-Year Engineering Program Advanced Energy Vehicle External Sensors Reference:  AEV Lab Manual  External Sensors Grading Guidelines

First-Year Engineering Program AEV Project Objective (Problem Definition) INITIAL CONCEPTS (Brainstorming) EXPERIMENTAL RESEARCH ANALYZE DESIGN DECISION RESEARCH COMPARE FINAL DESIGN Present AEV Design PT 1 PT 2 PT 3 PT 4 (System Analysis)(Programming)

First-Year Engineering Program Lab Objectives  The objectives of this lab are: 1.Become familiar with the external sensor hardware components  Become familiar with troubleshooting techniques 2.Program the function calls in controlling the AEV using external sensors

First-Year Engineering Program External Sensors  The importance of external sensors on the AEV is to provide real-time information being provided to the Arduino for autonomous vehicle operation  This is known as feedback control.  The sensor that will be the focus of today’s lab is the Reflectance Sensor

First-Year Engineering Program Reflectance Sensors  The sensor will produce a low voltage due to the reflectance of the aluminum tape and produce a high voltage due to the dark color of the wheel.

First-Year Engineering Program Mounting the Sensor  Make sure to use the small #2 bolt and zip tie to securly mount the sensor on the opposite side of the wheels on the vertical support  The closer the sensor is to the wheel, the better voltage reading the sensor will usually have.  Optimal distance for readings is 3 mm as illustrated. Optimum Too far away

First-Year Engineering Program Making the Connections  Take careful consideration where reflectance sensor is attached to the Arduino!!  READ AEV Lab Manual  For proper orientation  pin connections  ASK if uncertain! Sensor Connection

First-Year Engineering Program External Sensors External Sensors Lab Procedure Guidelines:  The following slides are a summary of the procedure guidelines and the basic command for the reflective sensor

First-Year Engineering Program Arduino Programming Sensor Command Available Command  goToMark(w c );  One Argument; works specifically with reflectance sensor  w c = wheel counts  Example: motorSpeed(4,30); **Sets all motor speeds to 30% full power goToMark(44); ** Continues the last command for 44 wheel counts.  Each wheel has 8 counts. Circumference = inches  Therefore, (44 marks)*(3.902/8 inches) = inches traveled.

First-Year Engineering Program Arduino Programming Basics Lab Lab Activity  Follow Lab Procedure document  Team:  Install reflectance wheel count sensor to the sample AEV  Follow AEV Lab Manual Testing the Reflectance Sensor  Get instructional team verification  Individual:  Program the following commands requested in procedure document and run the program on the Desktop Stand

First-Year Engineering Program Arduino Programming Basics Lab Lab Activity cont.  Follow Lab Grading Guidelines  Individual:  Reprogram the requested commands  Get instructional team verification  Team:  Reprogram the requested commands  Verify program and sensor on Desktop Stand  Get approval to operate on Classroom Stand and Test  Follow PROPER TESTING PROCEDURE  Get instructional team verification  Make sure to include in your TEAM summary report