├── .gitignore ├── README.md ├── img ├── chargingtimes_distribution.png ├── idletimes_distribution.png ├── powerflows │ ├── powerflow1.png │ ├── powerflow2.png │ ├── powerflow3.png │ ├── powerflow4.png │ ├── powerflow5.png │ ├── powerflow6.png │ └── powerflow7.png ├── startTime_densityfunction.png ├── stopTime_densityfunction.png ├── timediff_densityfunction.png ├── user_chargingsojourn_per_user │ ├── chargingsojourn_user1.png │ ├── chargingsojourn_user2.png │ ├── chargingsojourn_user3.png │ ├── chargingsojourn_user4.png │ ├── chargingsojourn_user5.png │ └── chargingsojourn_user6.png └── users_idletimes.png ├── presentation ├── thesis_presentation.key └── thesis_presentation.pptx ├── requirements.txt ├── scripts ├── Python │ ├── azure_db_service.py │ ├── cost_function_analysis.py │ ├── evaluation_function_fqi.py │ ├── evaluation_function_fqi_reverse.py │ ├── extract_historical_transactions.py │ ├── extract_trajectories.py │ ├── fitted_q_iteration.py │ ├── fitted_q_iteration_reverse.py │ ├── fqi_helper.py │ ├── notebooks │ │ ├── data_analysis.ipynb │ │ ├── results_graph.ipynb │ │ ├── times_analysis.ipynb │ │ └── user_analysis.ipynb │ ├── pv_data_extractor.py │ ├── session_helper.py │ ├── test │ │ └── test_state_action_tuples.py │ └── trajectory_helper.py └── R │ ├── PV_analysis.R │ ├── data_analysis.R │ └── user_freq_connectionTime_analysis.R └── text_latex └── thesis_text.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/README.md -------------------------------------------------------------------------------- /img/chargingtimes_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/chargingtimes_distribution.png -------------------------------------------------------------------------------- /img/idletimes_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/idletimes_distribution.png -------------------------------------------------------------------------------- /img/powerflows/powerflow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow1.png -------------------------------------------------------------------------------- /img/powerflows/powerflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow2.png -------------------------------------------------------------------------------- /img/powerflows/powerflow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow3.png -------------------------------------------------------------------------------- /img/powerflows/powerflow4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow4.png -------------------------------------------------------------------------------- /img/powerflows/powerflow5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow5.png -------------------------------------------------------------------------------- /img/powerflows/powerflow6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow6.png -------------------------------------------------------------------------------- /img/powerflows/powerflow7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/powerflows/powerflow7.png -------------------------------------------------------------------------------- /img/startTime_densityfunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/startTime_densityfunction.png -------------------------------------------------------------------------------- /img/stopTime_densityfunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/stopTime_densityfunction.png -------------------------------------------------------------------------------- /img/timediff_densityfunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/timediff_densityfunction.png -------------------------------------------------------------------------------- /img/user_chargingsojourn_per_user/chargingsojourn_user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/user_chargingsojourn_per_user/chargingsojourn_user1.png -------------------------------------------------------------------------------- /img/user_chargingsojourn_per_user/chargingsojourn_user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/user_chargingsojourn_per_user/chargingsojourn_user2.png -------------------------------------------------------------------------------- /img/user_chargingsojourn_per_user/chargingsojourn_user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/user_chargingsojourn_per_user/chargingsojourn_user3.png -------------------------------------------------------------------------------- /img/user_chargingsojourn_per_user/chargingsojourn_user4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/user_chargingsojourn_per_user/chargingsojourn_user4.png -------------------------------------------------------------------------------- /img/user_chargingsojourn_per_user/chargingsojourn_user5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/user_chargingsojourn_per_user/chargingsojourn_user5.png -------------------------------------------------------------------------------- /img/user_chargingsojourn_per_user/chargingsojourn_user6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/user_chargingsojourn_per_user/chargingsojourn_user6.png -------------------------------------------------------------------------------- /img/users_idletimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/img/users_idletimes.png -------------------------------------------------------------------------------- /presentation/thesis_presentation.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/presentation/thesis_presentation.key -------------------------------------------------------------------------------- /presentation/thesis_presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/presentation/thesis_presentation.pptx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/Python/azure_db_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/azure_db_service.py -------------------------------------------------------------------------------- /scripts/Python/cost_function_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/cost_function_analysis.py -------------------------------------------------------------------------------- /scripts/Python/evaluation_function_fqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/evaluation_function_fqi.py -------------------------------------------------------------------------------- /scripts/Python/evaluation_function_fqi_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/evaluation_function_fqi_reverse.py -------------------------------------------------------------------------------- /scripts/Python/extract_historical_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/extract_historical_transactions.py -------------------------------------------------------------------------------- /scripts/Python/extract_trajectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/extract_trajectories.py -------------------------------------------------------------------------------- /scripts/Python/fitted_q_iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/fitted_q_iteration.py -------------------------------------------------------------------------------- /scripts/Python/fitted_q_iteration_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/fitted_q_iteration_reverse.py -------------------------------------------------------------------------------- /scripts/Python/fqi_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/fqi_helper.py -------------------------------------------------------------------------------- /scripts/Python/notebooks/data_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/notebooks/data_analysis.ipynb -------------------------------------------------------------------------------- /scripts/Python/notebooks/results_graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/notebooks/results_graph.ipynb -------------------------------------------------------------------------------- /scripts/Python/notebooks/times_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/notebooks/times_analysis.ipynb -------------------------------------------------------------------------------- /scripts/Python/notebooks/user_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/notebooks/user_analysis.ipynb -------------------------------------------------------------------------------- /scripts/Python/pv_data_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/pv_data_extractor.py -------------------------------------------------------------------------------- /scripts/Python/session_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/session_helper.py -------------------------------------------------------------------------------- /scripts/Python/test/test_state_action_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/test/test_state_action_tuples.py -------------------------------------------------------------------------------- /scripts/Python/trajectory_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/Python/trajectory_helper.py -------------------------------------------------------------------------------- /scripts/R/PV_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/R/PV_analysis.R -------------------------------------------------------------------------------- /scripts/R/data_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/R/data_analysis.R -------------------------------------------------------------------------------- /scripts/R/user_freq_connectionTime_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/scripts/R/user_freq_connectionTime_analysis.R -------------------------------------------------------------------------------- /text_latex/thesis_text.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmassip/Smart_Charging_Of_Electric_Vehicles/HEAD/text_latex/thesis_text.zip --------------------------------------------------------------------------------