Lab 04: AEV External Sensors Advanced Energy Vehicle (AEV)

Slides:



Advertisements
Similar presentations
Advanced Energy Vehicle
Advertisements

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)
Navigating the BOE-BOT
Problem Solving Lab – Part B
Lab 01: AEV Project Introduction Advanced Energy Vehicle (AEV)
Lab 04: AEV External Sensors Advanced Energy Vehicle (AEV)
Lab 6: Sensor Based Planning Lab TA: Neil Abcouwer Sid Soundararajan.
Right Face Introductory Presentation. Opening Activity How can you use this to make a right turn program? This is your program from Full Speed Ahead to.
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.
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)
LabVIEW Program and Data Flow Review LabVIEW Robotics Fundamentals.
Application of Math and Science Principles Creating a robot that moves a specified distance straight ahead and Creating a robot that turns a specified.
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)
The SFA Rover Team Project. The SFA Rover  Must be demonstrated at the beginning of the last lab of the semester, Dec 11 th.  Teams can work on this.
Continuous February 16, Test Review What expression represents the zip car eligibility rules of at least 18 years old and no incidents?
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)
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.
-In the first design, the AEV used two motors, metal braces to secure the motors, a flat base, and metal braces to hold the battery. This design was extremely.
Lab 07: AEV Design Analysis Tool Advanced Energy Vehicle (AEV)
Lab 6: Sensor Based Planning Lab TAs: Ben Morse Sarun Savetsila (Pong)
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.
First-Year Engineering Program Advanced Energy Vehicle External Sensors Reference:  AEV Lab Manual  External Sensors Grading Guidelines.
Critical Design Review (CDR)
Week 12 Overview of equipment and building envelope as part of the energy audit.
Laboratory 5: Quality, Test & Data Analysis General Engineering Polytechnic University.
Program Flow LabVIEW Robotics Fundamentals. Unintuition You know what this program does… So what does this one do? Inserted code.
The George Washington University Electrical & Computer Engineering Department ECE 002 Dr. S. Ahmadi Class3/Lab 2.
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.
WEEK 6 Introduction to Project Management. Wk 6 Agenda Verify Hybrid Wk 5 Review Wk 5 ◦ Compressing the Schedule ◦ Risk Identification Techniques ◦ Project.
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.
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)
Purpose Design your own experimental procedures. Decide
Team Millinium Apache ENG 1182
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
Introducing KIPR Link/Interface and Set-up
Group F Asad Idris Kaixin Luo Manan Kedia
Programming - Motion Intro to Robotics.
Advanced Energy Vehicle
Systems Design Nursebot
Lab 9 & 10: Drill 2 and Homework 4
Advanced Energy Vehicle
ADVANCED MATH 8.
Course Outline Highlights
Advanced Energy Vehicle
Advanced Energy Vehicle
Purpose Design your own experimental procedures. Decide
Presentation transcript:

Lab 04: AEV External Sensors Advanced Energy Vehicle (AEV)

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)

Wheel count sensor testing Since programming will depend on the sensors working correctly, it is vital that you confirm the sensors are working properly at the beginning of each lab. Use the reflectance test program used in this lab each week to confirm proper operation of the sensors. There is also a sensor tester at the front of the Lab which can be used to test the sensors.

Verifying the Sensors  To make sure the sensors are on correctly  Run the “reflectanceSensorTest();” following the procedure in the lab manual.  Make sure to set to set the serial monitor to Baud

Programming with the Sensors  goToRelativePosition(M); One Argument; M = number of marks Example: motorSpeed(4,27); goToRelativePosition(44);  Each wheel has 8 marks and the wheel has a circumference of inches  Therefore: (44 marks)*(3.902/8) inches = inches traveled Sets all motors to 27% full power Continues the last command for 44 wheel marks from the current position

Programming with the Sensors  goToAbsolutePosition(M); Example: motorSpeed(2,30); goToAbsolutePosition(500);  Each wheel has 8 marks and the wheel has a circumference of inches  Therefore: (500marks)/(3.902/8) inches = inches traveled from AEV starting position Continues the last command until the AEV accumulates 500 total wheel marks from the starting position.

 We want to go ANOTHER 40 inches (aka 82 marks) what code do we want? motorSpeed(4,20); goToAbsolutePosition(164); OR goToRelativePosition(82); Difference Between goToAbsolutePosition and goToRelativePosition 40 Inches 80 Inches  We want to go 40 inches (aka 82 marks) what code do we want? motorSpeed(4,20); goToAbsolutePosition(82); OR goToRelativePosition(82); 0 Inches  We want to go back to start (aka 164 marks) what code do we want? motorSpeed(4,20); goToAbsolutePosition(0); OR goToRelativePosition(-164);

Things to Remember  Quiz 5  Executive Summary for Lab 04  Update Project Portfolio  Extra Credit Video (Due: Lab 07 (Part 1))  Start thinking about PDR (Due: Lab 09B)