├── .gitignore ├── LICENSE ├── README.md ├── doc ├── hoke2011.pdf └── smith2010 - Design of Electric Vehicle Drive Vehicles for Long Life and Low Cost.pdf ├── requirements.txt └── src └── notebooks ├── 08_31_Model_1_charge_profile_based_on_electricity_cost.ipynb ├── 09_02_Model_2_charge_profile_with_charge_dependant_battery_degradation.ipynb └── 09_05_Model_3_charge_profile_with_high_SOC_penalization.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/README.md -------------------------------------------------------------------------------- /doc/hoke2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/doc/hoke2011.pdf -------------------------------------------------------------------------------- /doc/smith2010 - Design of Electric Vehicle Drive Vehicles for Long Life and Low Cost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/doc/smith2010 - Design of Electric Vehicle Drive Vehicles for Long Life and Low Cost.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/notebooks/08_31_Model_1_charge_profile_based_on_electricity_cost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/src/notebooks/08_31_Model_1_charge_profile_based_on_electricity_cost.ipynb -------------------------------------------------------------------------------- /src/notebooks/09_02_Model_2_charge_profile_with_charge_dependant_battery_degradation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/src/notebooks/09_02_Model_2_charge_profile_with_charge_dependant_battery_degradation.ipynb -------------------------------------------------------------------------------- /src/notebooks/09_05_Model_3_charge_profile_with_high_SOC_penalization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesGaydon/Electric-Vehicle-Charge-Optimization/HEAD/src/notebooks/09_05_Model_3_charge_profile_with_high_SOC_penalization.ipynb --------------------------------------------------------------------------------