-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overcurrent cutout? #87
Comments
I discussed this with Chris before, and he didn't think it was necessary. If you want to take a stab at implementing it, by all means, we can at least have it as an option. |
There are two ways to do this:
Since this is a serious safety issue, I think (1) is a better bet. |
We have about 1K code space left. (1) will take less space, and is quicker to implement |
OK, I went ahead and implemented (1). We are not officially almost completely out of code space. To enable over current monitoring, uncomment #define OVERCURRENT_THRESHOLD Sketch uses 32418 bytes (98%) of program storage space. Maximum is 32768 bytes. I hope we are not out of RAM.. need stability testing. Also, depending on what version of the compiler and libraries are used, we could already be running into issues. Please give it a whirl.. in test branch again |
Fantastic, that's great. I'll try and do some testing over the weekend |
Did some clean up and tweaking of the code and put it all in the development branch as D5.0.0. Sketch uses 32366 bytes (98%) of program storage space. Maximum is 32768 bytes. |
pushed fix to dev branch in D5.0.0 |
Since the openevse has the ability to monitor the actual current being drawn by the EV has an over current cutout been discussed? I.e if the real-time current being drawn the the EV is greater than the pilot setting the openevse could stop the charge and throw a error.
I admit that in practice this is unlikely to happen, unless there was a serious fault with an EV, however since we have the ability to measure real time current I think this would be a good fail save feature to add.
This was particularly apparent today when I was testing
PP_AUTO_AMPACITY
(which works very well 👍 ), when I simulated a non-tethered 13A charging cable with a 1.5K ohm resistor between PP>GND the openevse limited the pilot signal to 13A, great. However, there is nothing stopping a faulty EV that disregards the pilot signal drawing more current.Here I was drawing 22A with the pilot signal set to 13A by
PP_AUTO_AMPACITY
:It could be argued that the evse should be installed using a power outlet with a MCB/fuse rating to match the max output of the evse. Therefore if overcurrent occurs the MCB/fuse would trip. However if the evse is non-tethered and the pilot signal was set to the rating of the cable e.g 13A by
PP_AUTO_AMPACITY
if an EV then draws 32A it will be within the supply limit of the evse but not the cable limit. In this scenario the evse would continue the charge regardless of the current being drawn damaging the cable.If you think this is a good idea I'm happy to try and have a go at implementing.
The text was updated successfully, but these errors were encountered: