diff options
author | Paul Duncan <pabs@pablotron.org> | 2021-10-22 02:39:44 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2021-10-22 02:39:44 -0400 |
commit | c775279dfe64bea2691f0447977466d02ba3a261 (patch) | |
tree | dc1b20f4056dfa05834b8ce596bd25036e794865 /data | |
parent | 91d08a141b17cc509e07ebeaa02d986b0d20fce6 (diff) | |
download | pablotron.org-c775279dfe64bea2691f0447977466d02ba3a261.tar.bz2 pablotron.org-c775279dfe64bea2691f0447977466d02ba3a261.zip |
content/articles/ev-crash-course: use shortcode for l1 charging cost table
Diffstat (limited to 'data')
-rw-r--r-- | data/tables/ev_crash_course/l1_cost_charging.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/tables/ev_crash_course/l1_cost_charging.yaml b/data/tables/ev_crash_course/l1_cost_charging.yaml new file mode 100644 index 0000000..a35e746 --- /dev/null +++ b/data/tables/ev_crash_course/l1_cost_charging.yaml @@ -0,0 +1,29 @@ +--- +# table name (required) +name: "Cost of Charging, Home Level 1 Charger" + +# table columns (required) +cols: + - id: "description" + name: "Description" + tip: "Amount of charge." + - id: "energy" + name: "Energy (kWh)" + 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: "$2.22" +- description: "90% SoC (270 miles)" + energy: "65.7 kWh" + cost: "$10.32" +- description: "100% SoC (310 miles)" + energy: "75 kWh" + cost: "$11.48" |