sap-labs-france / ev-dashboard

The Open e-Mobility Charging Station management front-end Angular application (check also ev-server and ev-mobile)
https://open-e-mobility.fr/
Apache License 2.0
72 stars 103 forks source link

Charging Profile - Check why static limit is disabled on Delta charger (supportStaticLimitationForChargingStation = true) #1466

Closed fcoutellier closed 4 years ago

fcoutellier commented 4 years ago

Check why static limit is disabled on Delta charger (supportStaticLimitationForChargingStation = true)

image.png

image.png

OliveGerste commented 4 years ago

The slider component in static limitation checks for AC Charging and disable it, if Type is DC: image

LucasBrazi06 commented 4 years ago

Ok, you can remove this constraint. Thanks!

fcoutellier commented 4 years ago

@OliveGerste Hi, Tobias, Could you please provide me an update on this? It is just about one line of code right?

Thanks, Fred

OliveGerste commented 4 years ago

@fcoutellier Hi Fred, I took the line out, but it does not work right away. The limitation dialog looks like this:

image

So some more investigation and adjustment is needed. (I do not want to break anything)

My focus is currently on the issues with high prio. But if you want I can finish this tomorrow?

LucasBrazi06 commented 4 years ago

It is probably related to the number of phases in the Watt calculation. It has to be simplified with 230V. Check in the whole project that we don't use 400V anymore.

OliveGerste commented 4 years ago

@LucasBrazi06 I adjusted the Watt calculation method, but if we use dc-charging we have to use 400V for the calculation right?: image (Should we use the voltage property of the connector to calculate for dc-charging here?)

Now we get the following values in the dialog: image

The two problems I see, is that we add up the amperage limit of the two connectors, which in this case is not correct right? (charging station max power : 150kW) The other thing I do not understand is why we have an amperage limit of 400A per connector. If 150kW is the maxPower, the max Amp should be 375 or am I wrong?

image

LucasBrazi06 commented 4 years ago

@cybergege Could you check this use case and provide your feedback ?

cybergege commented 4 years ago

Hello, this needs to be discussed in a meeting: -Need to check if U-400v and V-230v are required or not, same with Gireve (Sebastien) -Need to check if AC/DC cases needs to be treated separately: AC = ~Amps / DC= ~Amps + ~Voltage

LucasBrazi06 commented 4 years ago

Hello, this needs to be discussed in a meeting: -Need to check if U-400v and V-230v are required or not, same with Gireve (Sebastien) -Need to check if AC/DC cases needs to be treated separately: AC = ~Amps / DC= ~Amps + ~Voltage

I scheduled a meeting.

cybergege commented 4 years ago

About AC: The CAR EVCC is Controlling the Drowing of the Current AC (I / Amps) -> From OCPP perspective, we only control the Current A (8 to 32A or more for Zoé).

Power Calculation depends on the Voltage Reference: V = 230v (Phasis-Neutral) / U = 400v (between phases) P= U x Sqt(3) x I AND U= V x Sqt(3) P= V x Sqt(3) x Sqt(3) x I ->> P= V x 3 x I

Example P = 230 x 3 x 32 or P= 400 x Sqt(3) x 32 Another question: What is Gereve's reference 230 or 400 ?

cybergege commented 4 years ago

About DC: The Charger EVCC is Controlling the Drowing of Current (I / Amps) + Voltage (V) in DC -> From OCPP perspective, we only control the Current A (0 to 400A or more if possible).

Power Calculation is totally different. It depends on V (0 to 400V) and I (0 to 400A) and Limitation of connector (Kw). P = V x I Another question: What is Gereve's reference A x V or Kw ?

LucasBrazi06 commented 4 years ago

image

LucasBrazi06 commented 4 years ago

About DC: The Charger EVCC is Controlling the Drowing of Current (I / Amps) + Voltage (V) in DC -> From OCPP perspective, we only control the Current A (0 to 400A or more if possible).

Power Calculation is totally different. It depends on V (0 to 400V) and I (0 to 400A) and Limitation of connector (Kw). P = V x I Another question: What is Gereve's reference A x V or Kw ?

I'll write the minutes and next steps as discussed during our meeting this afternoon.