blob: 9e6ec521f238b80295212142fa5ee35ce5957e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
---
# table name (required)
name: "Cost Per Mile Comparison, Home Level 1 Charger"
# table columns (required)
cols:
- id: "vehicle"
name: "Vehicle"
tip: "Vehicle."
- id: "source"
name: "Energy Source"
tip: "Source of energy."
- id: "unit_price"
name: "Unit Price"
tip: "Price of energy per unit."
align: "right"
- id: "cost_per_mile"
name: "Cost per Mile"
tip: "Cost to travel 1 mile in this vehicle and energy source."
align: "right"
# table rows (required)
rows:
- vehicle: "[2017 Hyundai Ioniq Hybrid](https://www.fueleconomy.gov/feg/noframes/38484.shtml \"2017 Hyundia Ioniq Hybrid\")"
source: "Gasoline"
unit_price: "[$3.189/gallon](https://gasprices.aaa.com/?state=VA \"Cost of gas per gallon in Fairfax County\")"
cost_per_mile: "$0.0580"
- vehicle: "[2019 Tesla Model 3 LR AWD](https://fueleconomy.gov/feg/Find.do?action=sbs&id=41190 \"2019 Tesla Model 3 LR AWD (my car)\")"
source: "Home L1 EVSE"
unit_price: "$0.13/kWh"
cost_per_mile: "**$0.0444**"
|