diff options
Diffstat (limited to 'data/tables/ev_crash_course/l3_charging_cost.yaml')
-rw-r--r-- | data/tables/ev_crash_course/l3_charging_cost.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/tables/ev_crash_course/l3_charging_cost.yaml b/data/tables/ev_crash_course/l3_charging_cost.yaml new file mode 100644 index 0000000..20f3019 --- /dev/null +++ b/data/tables/ev_crash_course/l3_charging_cost.yaml @@ -0,0 +1,29 @@ +--- +# table name (required) +name: "Charging Cost, Tesla Supercharger" + +# table columns (required) +cols: + - id: "description" + name: "Description" + tip: "Amount of charge." + - id: "energy" + name: "Energy" + tip: "Amount of energy gained, in kilowatt-hours (kWh)." + align: "right" + - id: "cost" + name: "Cost" + tip: "Total cost of charge." + align: "right" + +# table rows (required) +rows: +- description: "50 miles of range" + energy: "14 kWh" + cost: "$3.50" +- description: "90% SoC (270 miles)" + energy: "65.7 kWh" + cost: "$16.88" +- description: "100% SoC (310 miles)" + energy: "75 kWh" + cost: "$18.75" |