Re: [WIP] Renault Megane III EV Tech conversion
Posted: Tue Dec 30, 2025 8:00 am
Hm...
We just hit -4°C here in Slovenia!!!
As we drive to work together by our Ampera hybrid this week both my other EVs batteries are frozen solid. I do have heaters wired into BMS charging logic, but i did not consider i would have to thaw them out first. I am not inclined to push 15A into frozen battery alongside heating no matter for how short a time because there could be permanent electrode damage...
I decided to change the VCU code a bit. I would like to rewire a CAN1 to ZEVA BMS which works at 250kbps to sense when cell temperatures would be above 10degC before applying charging power... or similar. That would really make BMS connected with charger in all aspects.
But sadly i need this quick and i decided to simply add a comparator to the charging status and a manual limiting switch (previously sport switch) which is already used to limit regen in freezing temperatures...
...in "charging mode" just before HeaterComms(); i enter....
This will limit charging in conjunction with limit switch
____________________________________________________________________________
Even better if i use charger temperature sensors with "sport" switch to limit charging when outside temperature is about 1degC.
I will let you know how this works out today...
For the future i will be working on joint CAN bus with ZEVA BMS
We just hit -4°C here in Slovenia!!!
As we drive to work together by our Ampera hybrid this week both my other EVs batteries are frozen solid. I do have heaters wired into BMS charging logic, but i did not consider i would have to thaw them out first. I am not inclined to push 15A into frozen battery alongside heating no matter for how short a time because there could be permanent electrode damage...
I decided to change the VCU code a bit. I would like to rewire a CAN1 to ZEVA BMS which works at 250kbps to sense when cell temperatures would be above 10degC before applying charging power... or similar. That would really make BMS connected with charger in all aspects.
But sadly i need this quick and i decided to simply add a comparator to the charging status and a manual limiting switch (previously sport switch) which is already used to limit regen in freezing temperatures...
...in "charging mode" just before HeaterComms(); i enter....
Code: Select all
if (active_map == 1 && VCUstatus == 6) // in charge mode chargercurrent 'limited'
{
chargercurrent = 0;
}____________________________________________________________________________
Even better if i use charger temperature sensors with "sport" switch to limit charging when outside temperature is about 1degC.
Code: Select all
if (active_map == 1 && DCDCTemp <= 1) // in charge mode chargercurrent 'limited'
{
chargercurrent = 0;
}For the future i will be working on joint CAN bus with ZEVA BMS