-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Brief layout sketch of race class #124
Draft
e-wai
wants to merge
2
commits into
master
Choose a base branch
from
asc-predictive-opt
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
""" | ||
formula given: | ||
S = (D / E) * C * T * P | ||
optimize for S | ||
|
||
do i want to update everything on "get" -> ie. when we run optimization, or before? | ||
if we're running multiple possibilities does this change anything | ||
|
||
let's initially approach this as a prediction _only_ thing | ||
""" | ||
import csv | ||
|
||
class ASC_Race: | ||
|
||
# Car information | ||
PASSENGERS = 4 | ||
BATTERY_CAPACITY_kWH = 20 | ||
|
||
distance_travelled_segments = [] | ||
passengers = [] | ||
time_elapsed_mins = 0 | ||
|
||
def __init__(self, race_data_csv): | ||
# TODO: determine format of data passing and interacts | ||
# TODO: how to change route? update during race? | ||
with open(race_data_csv, 'r') as f: | ||
route = csv.reader(f) | ||
|
||
start = next(route) | ||
|
||
for row in route: | ||
# find distance -> hopefully a parameter; append to list | ||
# if passengers not flagged | ||
self.passengers.append(4) | ||
|
||
@property | ||
def D(self): | ||
''' | ||
Person-Mile Distance | ||
''' | ||
d = 0 | ||
for seg, passenger in zip(self.distance_travelled_segments, self.passengers): | ||
d += seg * passenger | ||
|
||
return d | ||
|
||
@property | ||
def E(self): | ||
''' | ||
External Energy Usage | ||
(n + 1) * Q * M | ||
''' | ||
nights = 4 | ||
charging_per_night = 100 | ||
return nights * charging_per_night | ||
|
||
@property | ||
def C(self): | ||
''' | ||
Completion Factor | ||
''' | ||
return 1 | ||
|
||
@property | ||
def T(self): | ||
''' | ||
Target Speed Derate | ||
''' | ||
d = 0 | ||
for seg in self.distance_travelled_segments: | ||
d += seg | ||
|
||
return d / self.time_elapsed_mins / 60 | ||
|
||
@property | ||
def P(self): | ||
''' | ||
Practicality Score | ||
''' | ||
return 1 | ||
|
||
def update_variables(self, velocity_profile): | ||
pass | ||
|
||
def get_S(self, velocity_profile): | ||
self.update_variables(velocity_profile) | ||
return self.D / self.E * self.C * self.T * self.P | ||
|
||
''' | ||
initial guess = all even, get S | ||
next guess = all even, except when limited by speed limit, get S | ||
|
||
push in one direction (manage each segment?) | ||
|
||
''' | ||
|
||
|
||
''' | ||
what is the trial run going to send in - where are we sending velocity into it | ||
calculate best velocities -> then find minutes? | ||
|
||
lat, lon, city name, city Id, time, temperature, efficiency correction, | ||
wind speed, wind direction, precipitation, energy solar, energy corrected | ||
|
||
routemodel | ||
speed limits, lat, lon, elevations | ||
wind | ||
weather?? | ||
|
||
solar | ||
|
||
|
||
soc | ||
?? | ||
auxloss | ||
|
||
motor torque | ||
|
||
dynamics | ||
|
||
|
||
some guess of S with a general profile of velocities | ||
change velocities -> see how it affects S | ||
''' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
incredibly descriptive and imaginative function names