Lab 2: Odometry Solution

$29.99 $18.99

Submission instructions: Students are expected to work in their assigned lab groups. The lab consists of three components, demonstration, lab report, and code submission. Instructions on the demonstration can be found in this handout. Lab reports and code submission must follow the guidelines established in this handout and for the course. For more information, see…

You’ll get a: . zip file solution

 

 

Description

Rate this product

Submission instructions: Students are expected to work in their assigned lab groups. The lab consists of three components, demonstration, lab report, and code submission. Instructions on the demonstration can be found in this handout. Lab reports and code submission must follow the guidelines established in this handout and for the course. For more information, see the ECSE211SubmissionInstructions.pdf on MyCourses.

Design objectives

  1. Design and implement an Odometry system that provides a robot’s position and orientation, allowing a robot to autonomously navigate a field.

  1. Implement a simple correction using a light sensor to improve the Odometer results and return values relative to the defined origin.

  1. Evaluate the design and determine the accuracy of the implemented Odometry system.

Design requirements

The following design requirements must be met by your robot:

  • Odometer

  1. Must determine the robots X, Y and θ orientation. o Must display the X, Y and θ on the LCD display. o X and Y must be in cm.

o X and Y can be negative. o θ must be in degrees.

o θ must range from [0⁰, 359.9⁰].

    • When the value increases past 360⁰, it should return to 0⁰.

    • When the value decreases past 0⁰, it should wrap to 359.9⁰.

    1. The zero values for (X, Y), i.e. (0,0), must respect the convention shown in Figure 3.

  • Odometer correction

    1. Must use the light sensor to detect lines.

  1. Must work for an arbitrary path, i.e. rectangles of various dimensions.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

ECSE 211 Design Principles & Methods Updated: 17 September 2019

Demonstration (30 points)

The design must satisfy the requirements by completing the demonstration outlined below.

Design presentation (10 points)

Before demoing the design, your group will be asked some questions for less than 5 minutes. You will present your design and answer questions designed to test your individual understanding of the lab concepts. Each person will be graded individually.

You must present your workflow, an overview of the hardware design, and an overview of the software functionality. Visualizing software with graphics such as flow charts is valuable.

Float Motors (10 points)

The TA will check whether the X, Y and θ values are updated correctly on the robot’s LCD screen by floating the robot’s motors/wheels. Note that you can choose any X, Y and θ convention as long as you remain consistent. All three axes (X, Y, θ) are checked:

ECSE 211 Design Principles & Methods Updated: 17 September 2019

Odometry Correction Check (10 points)

The TA will ask you to run your robot off the center of a tile, as shown by S in Figure 3 (the exact X/Y placement is not critical, as the correction should compensate). The robot should then follow the 3-by-3 tile square trajectory using SquareDriver. The robot should work using odometry correction. Throughout the demo, the TA will observe the reported (X, Y, θ) values on the robot’s LCD screen. When the robot stops at the final position (XF,YF) near S, the final readings on the LCD screen (X, Y, θ) are used to evaluate the odometers accuracy and calculate the error distance ϵ as:

=√( − ) +( − )

Note that the error ϵ is calculated as the Euclidean distance between:

  • The odometer’s readings (X,Y), which signifies where the robot thinks it is with respect to the origin (0,0), and

  • The final actual position (XF,YF), which ideally should be the point S where the robot started the 3-by-3 tile square trajectory.

This means that it is not an issue if your robot does not return to the exact starting point S, as long as the odometer reports a position that matches its real-world location.

Point grid based on error ϵ:

[0, 2] cm

5 points

(2,

4] cm

2.5 points

(4,

) cm

0 points

Point grid based on the difference between the displayed θ and actual θ:

[0, 10] °

5 points

(10,

20] °

2.5 points

(20,

) °

0 points

(0, 0)

Figure 3. 3-by-3 tile trajectory using SquareDriver.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

ECSE 211 Design Principles & Methods Updated: 17 September 2019

Provided materials

Sample code

A package of sample code is provided that contains the following:

  • Display.java

    1. Provides a display mechanism for the Odometer.

    1. Runs in a thread

  • Main.java

    1. The main class that runs the robot.

    1. Starts Odometer thread and Odometer correction thread.

    1. Drives the robot using SquareDriver.

  • Odometer.java

    1. A skeleton class for building an odometer.

  1. Runs in a thread.

    1. Provides methods for manipulation of volatile odometer variables, such as X and Y position.

  • OdometryCorrection.java

    1. Provides a skeleton class for building a correction algorithm for the Odometer.

    1. Runs in a thread.

  • Resources.java

    1. Defines the ports used by motors and sensors.

  • SquareDriver.java

    1. Runs the robot in a 3-by-3 tile square, where one tile is 30.48cm.

Physical material

In the lab, tiles with black grid lines are provided. These make up the competition floor, where the robot will operate. Grid lines are separated by a distance of 30.48cm.

Implementation instructions

  1. In Odometer.java, implement your odometer design in the run() method of the Odometer class. This class is threaded and will run continuously when your robot is working.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

ECSE 211 Design Principles & Methods Updated: 17 September 2019

  1. In Lab2.java, tweak the values of WHEEL_RAD and TRACK so that your robot drives in a square pattern when calling SquareDriver.drive().

  1. In OdometryCorrection.java, implement a design that uses the light sensor to detect the grid lines and update/correct the odometers position as needed. Note, your design should work regardless of the length and width of the rectangular pattern you drive. We do not expect you to be able to correct when driving diagonally across tiles. You will need to read values from a light sensor. For more information, see the leJOS API documentation provided on MyCourses.

Report Requirements

The following sections must be included in your report. Answer all questions in the lab report and copy them into your report. For more information, refer to ECSE211SubmissionInstructions.pdf. Always provide justifications and explanations for all your answers.

Section 1: Design Evaluation

You should concisely explain the overall design of your software and hardware. You must present your workflow, an overview of the hardware design, and an overview of the software functionality. You must briefly talk about your design choices before arriving at your final design. Visualizing hardware and software with graphics (i.e. flowcharts, class diagrams) must be shown.

Section 2: Test Data

This section describes what data must be collected to evaluate your design requirements. Collect the data using the methodology described below and present it in your report.

Odometer test (10 independent trials)

  1. Note the starting position S of the robot’s center and consider it to be (0,0) for this trial.

  1. Run the robot in a 3-by-3 tile square, without using Odometry correction.

  1. Measure its resulting signed XF and YF position with respect to its starting position S.

  1. Note the reported values of X and Y shown for the odometer.

Odometer correction test (10 independent trials)

  1. Place the robot approximately at the starting position S. You do not need to note the starting position.

  1. Run the robot in a 3-by-3 tile square using Odometry correction.

  1. Measure its resulting signed XF and YF position with respect to the origin (0,0) in Figure 3.

  1. Note the reported values of X and Y shown for the odometer.

Section 3: Test Analysis

Present the following analysis in a table in your report

1. Compute the Euclidean error distance ϵ of the position for each test.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

ECSE 211 Design Principles & Methods Updated: 17 September 2019

  1. Compute the mean and standard deviation for X, Y, and ϵ for both test sets. That means, you need to perform 6 mean and 6 standard deviation calculations in total. Use the sample standard deviation formula.

Answer the following questions in your report

  1. How do the mean and standard deviation change between the design with and without correction? What causes this variation and what does it mean for the designs?

  1. Given the design which uses correction, do you expect the error in the X direction or in the Y direction to be smaller?

Section 4: Observations and Conclusions

  • Is the error you observed in the odometer, when there is no correction, tolerable for larger distances? What happens if the robot travels 5 times the 3-by-3 grid’s distance?

  • Do you expect the odometer’s error to grow linearly with respect to travel distance? Why?

Section 5: Further Improvements

  • Propose a means of reducing the slip of the robot’s wheels using software.

  • Propose a means of correcting the angle reported by the odometer using software when: o The robot has two light sensors.

o The robot has only one light sensor.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

ECSE 211 Design Principles & Methods Updated: 17 September 2019

Frequently asked questions (FAQ)

  1. What is meant by “design presentation”?

Before a lab demo, you and your partner will briefly present your design. This can include a basic visualization of how your code functions, such as a flow chart. You will then be asked a series of questions. These could be related to the lab tutorial and the initial lab code. For this part, a grade of 10 signifies full understanding, 5 signifies satisfactory understanding, while 0 shows no understanding at all. Note that memorized answers are discouraged and both partners should be responsible for understanding the design and their associated code, even if one of them did not write all of it.

  1. Are partial points awarded for Float Motors?

No partial points are awarded. Possible demo points: {0, 5, 10}.

  1. What is the length of each square tile? Each tile is 30.48 cm long.

  1. Do the displayed values of θ have to be in ° (degrees)? Yes.

  1. Do I have to follow the same (X, Y, θ) convention as in Figure 1 and Figure 2? No, you can use any (X, Y, θ) as long as you remain consistent.

  1. Should the point S be exactly at the center of a square tile i.e. (-15.24, -15.24)?

No, the starting point S may be off-center as your correction should compensate. Note that the TA will use the intersection of the two grid lines as the origin (0,0). Be sure to use your light sensor to get the correct values.

  1. In the Float Motors part, what will be the initial conditions of the robot?

The robot’s initial condition is based on your (X, Y, θ) convention – you must inform the TA about your initial orientation. Once the float motors option is selected on the robot, the TA will place your robot on a table. Assuming the same convention as in Figure 1, the TA will forcefully rotate both the wheels forward to test the Y values. Not that the robot will not move automatically, but rather the TA will rotate both wheels using his/her hands. The TA wants to notice whether the Y-value will increase or not, without affecting the X and θ values by much (since they could be affected due to experimental error). Therefore, the odometer’s accuracy is irrelevant here. The main idea is to observe whether the odometer functions well using a fixed convention. A similar wheel-rotation test is also performed for checking decreasing values as well as for other variables.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

ECSE 211 Design Principles & Methods Updated: 17 September 2019

  1. How accurate should the (X, Y, θ) values be during the floating motor demo? Should the values only increase and decrease properly without considering the errors? Accuracy of (X, Y, θ) values in floating motor demo is irrelevant. However, let us consider an example when a robot that is oriented along the +Y-axis and both wheels are moved forward. If the reported Y-values are negative, this means that the Y-axis does not work.

  1. How do I detect lines?

We recommend using a differential filter to detect black lines. See the lecture for details.

© Instructor and Teaching Assistant generated course materials (e.g., handouts, notes, summaries, assignments, exam questions, etc.) are protected by law and may not be copied or distributed in any form or in any medium without explicit permission of the instructor. Note that infringements of copyright can be subject to follow up by the University under the Code of Student Conduct and Disciplinary Procedures.

8/8