Open txubelaxu opened 2 weeks ago
Please read :
Be careful, the Auto CCL
function can have an impact on what is requested from your inverter.
I advise you not to activate it to check that everything is working well.
Can you install the YamBMS
dashboard and show me the part I have framed in pink?
This is with jk-bms-can version (is the version I have running now):
This is with jk-bms-can version (is the version I have running now): !
Can you be more specific?
Are you talking about YamBMS
version 1.4.5
?
jk-bms-can
is an old version for a single BMS.
How are the settings below set?
This is with jk-bms-can version (is the version I have running now): !
Can you be more specific?
Are you talking about
YamBMS
version1.4.5
?
jk-bms-can
is an old version for a single BMS.
esphome-jk-bms-can / development branch version 1.4.2
using --> multi-bms_JK-PB_RS485_mode2.yaml
Automatic Charge Current: ON Automatic Charge Voltage: ON Automatic DisCharge Current: ON
This is an old version, please use YamBMS 1.4.5
Yes, I know. But it is the only version that does not restarts the system 1 time per 3 minutes. The YamBMS 1.4.5 restarts each 3 minutes and the inverters detects low battery, inverters' relays start "jumping" and sometimes the powersource goes down. Sorry, but the only stable for me is not the last one.
I would like to use the last one, of course. It is why I am debugging the code.
Ok then we will come back to this problem later.
Yes, it was because the settings were wrong: I had activated "auto" settings.
Deactivating them, CCL that appears in Victron console is correct.
Normally Auto CCL
reduces the current to 0 A
only if max_cell_v
reaches or exceeds the OVPR
voltage you have configured in your BMS.
Maybe this shows an unbalanced battery or a very low OVPR
voltage?
I have to inspect with more detail. But I have a OVPR= 3.448V and all the cells are about 3.315V on both BMSs. Delta is < 0.005V
I have to inspect with more detail. But I have a OVPR= 3.448V and all the cells are about 3.315V on both BMSs. Delta is < 0.005V
Your OVPR is very low.
What is your bulk_cell_v
?
I charge my cells at 3.45V
my OVPR is 3.55V
and my OVP 3.65V
.
Very low? ups! I follow Andy’s (Off-Grid Garage) recommendations/settings: https://off-grid-garage.com/my-settings/
I see and I don't know why he sets OVPR
so low with JK-PB
while it is much higher with his JK-B
BMS.
This doesn't make sense.
@MrPabloUK you confirm that having a lower OVPR
value than the cell_bulk_v
value is problematic for the Auto CCL
function?
Yes, the logic for the AutoCCL will not work correctly if bulk voltage is higher than OVPR. It's not something I would expect to see, especially if the OVP value is set to 3.65v.
In this case, I would increase the value of OVPR to something like 3.60v, or even 3.55v if preferred.
Will be added in the doc.
[!IMPORTANT]
TheAuto CCL
function uses theOVPR
value of your BMS which must be higher thancell_bulk_voltage
to work properly.e.g. for LFP
: CVL=3.45V / OVPR=3.55V / OVP=3.65V. TheAuto DCL
function uses theUVPR
value of your BMS.e.g. for LFP
: UVPR=3.00V[!IMPORTANT]
TheAuto CVL
function uses theBalance Trig. Volt.
value of your BMS.e.g. for LFP
: BTG=0.010V
Maybe the code could even send out an error if the value is higher? Users don't always read docs ;)
Maybe the code could even send out an error if the value is higher? Users don't always read docs ;)
Good idea ;-)
If I am not wrong, in the JK-PB BMSs: OVPR cannot be higher than Bulk Voltage.
If I am not wrong, in the JK-PB BMSs: OVPR cannot be higher than Bulk Voltage.
Can you check it for us ?
If OVPR can't be set higher than bulk, I can adjust the code to reference the mean of OVPR and OVP. That should work ok for either type of JK BMS
If I am not wrong, in the JK-PB BMSs: OVPR cannot be higher than Bulk Voltage.
Can you check it for us ?
Confirmed: You can see here explained --> https://youtu.be/eZX7CkEEq_8?si=6OH4QK2l22zRvXqQ&t=442
So, OVP > RCV > SOC100% > OVPR > UVPR > SOC0% > UVP > POFFV
Ok Thanks.
We will find another solution to do this.
@MrPabloUK is it possible to use the balance_trigger_voltage
like you did for Auto CVL
?
I'm trying to reduce the number of bms sensors needed (I added JDB and Seplos) and I removed OVP
yesterday because it wasn't used in the code.
Yes, we could use balance trigger voltage. AutoCCL was originally designed to prevent cell voltage spikes at the end of charging, specifically to avoid hitting OVP.
There's no reason that the AutoCCL couldn't use cell-bulk_voltage + (10 * balance_trigger_voltage)
as the upper threshold, for example.
In this case, that would be 3.45v + 0.10v = 3.55v (as standard). The multiplier could be configurable, but 3.55v gives enough headroom for momentary cell voltage spikes.
In my case, I use 3.53v as OVPR, so that would be a 8x multiplier. All very easy to adjust if a user requires.
Originally posted by @txubelaxu in https://github.com/Sleeper85/esphome-yambms/issues/4#issuecomment-2453557685