diff options
| author | Paul Duncan <pabs@pablotron.org> | 2021-10-20 19:46:31 -0400 | 
|---|---|---|
| committer | Paul Duncan <pabs@pablotron.org> | 2021-10-20 19:46:31 -0400 | 
| commit | 3777e92da051173cfd16bc5b1e952a60a3740eb1 (patch) | |
| tree | 1719f1bd8be89b001c656fa68174c1e9970df1c0 /data/tables/ev_crash_course | |
| parent | fa7345b534ec49c30d31feac308caf4cc85b9ac9 (diff) | |
| download | pablotron.org-3777e92da051173cfd16bc5b1e952a60a3740eb1.tar.xz pablotron.org-3777e92da051173cfd16bc5b1e952a60a3740eb1.zip | |
add data/tables
Diffstat (limited to 'data/tables/ev_crash_course')
| -rw-r--r-- | data/tables/ev_crash_course/charger_types.yaml | 57 | ||||
| -rw-r--r-- | data/tables/ev_crash_course/epa_ranges.yaml | 38 | ||||
| -rw-r--r-- | data/tables/ev_crash_course/types.yaml | 28 | ||||
| -rw-r--r-- | data/tables/ev_crash_course/types_test.yaml | 40 | 
4 files changed, 163 insertions, 0 deletions
| diff --git a/data/tables/ev_crash_course/charger_types.yaml b/data/tables/ev_crash_course/charger_types.yaml new file mode 100644 index 0000000..e3c4f26 --- /dev/null +++ b/data/tables/ev_crash_course/charger_types.yaml @@ -0,0 +1,57 @@ +--- +# table name (required) +name: "EPA Efficiency and Range Ratings" + +# table columns (required) +cols: +  - id: "type" +    name: "Type" +    tip: "Charger type name and abbreviation." +  - id: "speed" +    name: "Charging Speed (mi/hr)" +    tip: "Miles of range gained per hour of while charging by a 2019 Tesla Model 3 for this type of charger." +    align: "right" +  - id: "power" +    name: "Power (kW)" +    tip: "Peak charging speed for this type of charger, in kW." +    align: "right" +  - id: "efficiency" +    name: "Efficiency" +    tip: "Percentage of power from charcter that is received by the battery after wire and charging circuitry losses." +    align: "right" +  - id: "time_50mi" +    name: "Time (50 Miles)" +    tip: "Time to gain 50 miles of range in a 2019 Tesla Model 3 LR AWD using this type of charger." +    align: "right" +  - id: "time_90" +    name: "Time (90% SoC)" +    tip: "Time to charge a 2019 Tesla Model 3 LR AWD from 0% to 90% using this type of charger." +    align: "right" +  - id: "time_100" +    name: "Time (100% SoC)" +    tip: "Time to charge a 2019 Tesla Model 3 LR AWD from 0% to 100% using this type of charger." +    align: "right" + +# table rows (required) +rows: +- type: "Level 1 (L1)" +  speed: "5 mi/hr" +  power: "1.2 kW" +  efficiency: "85%" +  time_50mi: "10 hours" +  time_90: "57 hours" +  time_100: "63 hours" +- type: "Level 2 (L2)" +  speed: "25 mi/hr" +  power: "7.2 kW" +  efficiency: "95%" +  time_50mi: "2 hours" +  time_90: "10 hours" +  time_100: "11 hours" +- type: "Level 3 (L3)" +  speed: "500 mi/hr" +  power: "150 kW" +  efficiency: "99%" +  time_50mi: "6 minutes" +  time_90: "45 minutes" +  time_100: "1 hour" diff --git a/data/tables/ev_crash_course/epa_ranges.yaml b/data/tables/ev_crash_course/epa_ranges.yaml new file mode 100644 index 0000000..18922c6 --- /dev/null +++ b/data/tables/ev_crash_course/epa_ranges.yaml @@ -0,0 +1,38 @@ +--- +# table name (required) +name: "EPA Efficiency and Range Ratings" + +# table columns (required) +cols: +  - id: "model" +    name: "Model" +    tip: "Vehicle make, model, and year." +  - id: "efficiency" +    name: "Efficiency" +    tip: "Energy efficiency." +  - id: "capacity" +    name: "Capacity" +    tip: "Energy capacity." +  - id: "range" +    name: "Range (miles)" +    tip: "EPA estimated range, in miles." +    align: "right" + +# table rows (required) +rows: +- model: "[2019 Tesla Model 3 LR AWD](https://fueleconomy.gov/feg/Find.do?action=sbs&id=41190 \"2019 Tesla Model 3 LR AWD (my car)\")" +  efficiency: "290 Wh/mi" +  capacity: "75 kWh" +  range: "310 mi" +- model: "[2017 Hyundai Ioniq Hybrid](https://www.fueleconomy.gov/feg/noframes/38484.shtml \"2017 Hyundia Ioniq Hybrid\")" +  efficiency: "55 MPG" +  capacity: "11.9 gallons" +  range: "**650 mi**" +- model: "[2021 Ford Mustang Mach-E Standard RWD](https://fueleconomy.gov/feg/Find.do?action=sbs&id=43604 \"2021 Ford Mustang Mach-E Standard RWD\")" +  efficiency: "295 Wh/mi" +  capacity: "64 kWh" +  range: "230 mi" +- model: "[2020 Hyundai Kona EV](https://fueleconomy.gov/feg/Find.do?action=sbs&id=44444 \"2020 Hyundai Kona EV\")" +  efficiency: "280 Wh/mi" +  capacity: "64 kWh" +  range: "258 mi" diff --git a/data/tables/ev_crash_course/types.yaml b/data/tables/ev_crash_course/types.yaml new file mode 100644 index 0000000..dd2508c --- /dev/null +++ b/data/tables/ev_crash_course/types.yaml @@ -0,0 +1,28 @@ +--- +# table name (required) +name: "Reading EV Specs" + +# table css (optional) +css: "is-hoverable" + +# table columns (required) +cols: +  - id: "type" +    name: "Vehicle Type" +  - id: "eu" +    name: "Efficiency Unit" +  - id: "cm" +    name: "Capacity Measure" +  - id: "cu" +    name: "Capacity Unit" + +# table rows +rows: +  - type: "Internal Combustion Engine (ICE)" +    eu: "Miles Per Gallon (MPG)" +    cm: "Gas Tank Size" +    cu: "Gallons" +  - type: "Battery Electric Vehicle (BEV)" +    eu: "Watt-hours per Mile (Wh/mi)" +    cm: "Battery Capacity" +    cu: "kilowatt-hours (kWh)" diff --git a/data/tables/ev_crash_course/types_test.yaml b/data/tables/ev_crash_course/types_test.yaml new file mode 100644 index 0000000..68ef869 --- /dev/null +++ b/data/tables/ev_crash_course/types_test.yaml @@ -0,0 +1,40 @@ +--- +# table name (required) +name: "Reading EV Specs" + +# table css (optional) +css: "is-hoverable" + +# table tooltip (optional) +# tip: "askdljflkad" + +# table caption (optional) +# caption: "some table caption" + +# table columns (required) +cols: +  - id: "type" +    name: "Vehicle Type" +  - id: "eu" +    name: "Efficiency Unit" +  - id: "cm" +    name: "Capacity Measure" +  - id: "cu" +    name: "Capacity Unit" + +# table rows +rows: +  - _tip: "blarney" +    type: "Internal Combustion Engine (ICE)" +    eu: "Miles Per Gallon (MPG)" +    cm:  +      val: "<i>Gas Tank Size</i>" +      tip: "what a turd" +      align: "right" +      html: true +      css: "has-text-weight-bold" +    cu: "Gallons" +  - type: "Battery Electric Vehicle (BEV)" +    eu: "Watt-hours per Mile (Wh/mi)" +    cm: "Battery Capacity" +    cu: "kilowatt-hours (kWh)" | 
