Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Project Lead

All

Team Members

Objective

Generate an optimized velocity profile that minimizes energy usage within given constraints

Due date

Key outcomes

Status

IN PROGRESS

\uD83E\uDD14 Problem Statement

Research Optimization Legacy Code

Code Breakdown

Function: “load_course_map“

  • Parameters: The name of the course we’re trying to load in (course_name)

  • Returns: The map of elevations on said course (elev_profile).

  • The map of elevations has dimensions num_points x 2, with column 1 (Index 0) representing the y-coordinates and column 2 (Index 1) representing the x-coordinates.

Function: “generate_initial_profile“

  • Parameters: The maximum allowable time to cover a distance in seconds (time), the distance to be covered in meters (distance), the list of pitches map of elevations that the car must travel (e_profile), the minimum allowable velocity (min_velocity), and the list of indices where the car must stop (stop_profile)

  • Returns: A map of the same dimensions as the map of elevations with each element representing the average velocity required for the car to move at each point on the map of elevations (initial_profile).

  • Ex. initial_profile[2] = 10 means that according to the initial profile, the car should be moving 10 m/s at point 3 (Index 2) on the map of elevations.

  • This function basically generates the naive/initial solution that will be improved upon through the optimization function later in the program.

What does it accomplish?

Inputs/Outputs

Dependencies

Processing Outputs (how do we gain strategical advantage using the output)

🎯 Scope

Must have:

Nice to have:

Not in scope:

\uD83D\uDDD3 Timeline

Oct2021NovDecJan2022FebMarAprMayJun
Lane 1
Lane 2

Feature 1

Feature 2

Feature 3

Feature 4

iOS app

Android app

\uD83D\uDEA9 Milestones and deadlines

Milestone

Owner

Deadline

Status

\uD83D\uDD17 Reference materials


  • No labels