This project addresses the optimization of electricity consumption and charging infrastructure for electric vehicles (EVs) traveling along a green corridor from Kashmir to Kanyakumari. It calculates daily aggregate electricity consumption, charging times, and station utilization to ensure effective infrastructure management and a smooth travel experience for EV users.
NICE Power Ltd, in partnership with the Government of India, aims to make the Kashmir-Kanyakumari highway a zero-emission green corridor by allowing only EVs. With a growing number of EVs using the highway daily, efficient charging station management and accurate energy usage calculations are critical.
This project seeks to:
- Compute the total electricity consumption and charging time for all EVs.
- Identify the charging station load and usage patterns.
- Help optimize the infrastructure to meet daily demand efficiently.
- Calculate total energy consumption for various EV types based on their battery specifications and mileage.
- Estimate the total time spent charging vehicles, both by type and at specific stations.
- Track and report trip completion metrics.
- Ensure optimal use of charging stations based on vehicle travel capacities.
This solution processes the following input files to generate results:
-
ChargingStationInfo.csv
:- Details of charging stations and their distances from the start of the highway.
-
EntryExitPointInfo.csv
:- List of entry and exit points along the highway with their distances.
-
VehicleTypeInfo.csv
:- Information about vehicle specifications, including battery capacity, mileage, and energy consumption rates.
-
TimeToChargeVehicleInfo.csv
:- Charging time required per unit of electricity for each vehicle type at various stations.
-
TripDetails.csv
:- Trip-specific data, including vehicle type, initial battery levels, and travel start and end points.
The project generates outputs in JSON format:
-
Vehicle-wise Consumption Summary:
- Vehicle Type: Type of the EV.
- Total Energy Consumed: Aggregate energy used by the vehicle type.
- Total Charging Time: Time spent at charging stations for each vehicle type.
- Completed Trips: Total number of trips successfully finished by each vehicle type.
-
Charging Station Utilization:
- Total time spent charging at each station, providing insights into station usage patterns.
{
"vehicleTypeSummary": [
{
"vehicleType": "V1",
"totalEnergyConsumed": 500,
"totalChargingTime": 72000,
"completedTrips": 15
},
{
"vehicleType": "V2",
"totalEnergyConsumed": 450,
"totalChargingTime": 68000,
"completedTrips": 10
}
],
"chargingStationSummary": {
"C1": 36000,
"C2": 32000
}
}