Skip to content

Commit aae116d

Browse files
committed
Add non-electricity part of vehicle fleet cost to system cost
This ensures it will be included in overall evaluation, and will be important later if we switch ev_share to a decision variable.
1 parent 9da47b9 commit aae116d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

switch_model/hawaii/ev_advanced.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def rule(m):
7676

7777
# add cost components to account for the vehicle miles traveled via EV or ICE
7878
# (not used because it interferes with calculation of cost per kWh for electricity)
79-
# m.Cost_Components_Per_Period.append('ev_extra_annual_cost')
80-
# m.Cost_Components_Per_Period.append('ice_annual_fuel_cost')
79+
m.Cost_Components_Per_Period.append('ev_extra_annual_cost')
80+
m.Cost_Components_Per_Period.append('ice_annual_fuel_cost')
8181

8282
# EV bid data -- total MW used by 100% EV fleet, for each zone, veh type,
8383
# bid number, timepoint

0 commit comments

Comments
 (0)