Re: [sumo-user] Calculating charging time of a ev vehicle at a charging station

2024-05-16 Thread The div via sumo-user
Vendors are tweaking their Battery Management Systems all the time but I'm not aware of any vendors that publish a curve for their vehicles. Generically the claimed charge rates are only achieveable when the battery charge level is below ~50% and the battery temperature is above ~12c. Various

Re: [sumo-user] Calculating charging time of a ev vehicle at a charging station

2024-05-16 Thread Jakob Erdmann via sumo-user
@Div, from a technical point of view, it wouldn't be to hard to let the user define a charging-rate-curve parameter for the vehicle. Are you aware of available data on such curves? Am Di., 14. Mai 2024 um 12:32 Uhr schrieb The div via sumo-user < sumo-user@eclipse.org>: > You can get the

Re: [sumo-user] Calculating charging time of a ev vehicle at a charging station

2024-05-14 Thread The div via sumo-user
You can get the chargingBegin/End and totalEnergyCharged values for each vehicle from chargingstations-output. In your calculation the charging station has an efficiency factor that reduces the effective power - you need to apply that. Yes your calculation will give you a time, however that

[sumo-user] Calculating charging time of a ev vehicle at a charging station

2024-05-14 Thread TIPPANA RAJESH via sumo-user
How to get the charging time(t in secs) required by a ev vehicle at a particular charging station to get it fully charged? Suppose, maxBatteryCapacity = M Wh actualBatteryCapacity = x Wh Power of charging station = P Watt t = (M-x)/P * 3600 secs. Will this work.