Description
possibly related to jasonacox/pypowerwall#131 and #569
I have a single PW3, but last week installed two PW3 expansion packs. Everything seems to be fine since the additions, except the capacity panel still shows a single PW capacity graph, not the full capacity of all three units.
Here's what they look like along side my existing PW3 before the covers. It really is just a PW3 without the inverter.
battery_blocks()
does see the expansion units:
"battery_blocks": [
{
"vin": "1707000-11-J--TG124072003AB8",
"min_soe": 0,
"max_soe": 100,
"type": "Powerwall3",
"can_connection": "can1",
"pvi_power_status": "on",
"battery_power_status": "on",
"enable_inverter_battery_meter": true,
"enable_inverter_solar_meter": true,
"battery_expansions": [
{
"din": "1807000-20-B--TG124275000HH7"
},
{
"din": "1807000-20-B--TG124275001W8F"
}
]
}
]
and the total capacity of the system
"systemStatus": {
"nominalEnergyRemainingWh": 32800.00000000001,
"nominalFullPackEnergyWh": 40150.00000000001
}
So I feel that pypowerwall
is handling it correctly. I think the discrepancy lies in the PODs, as the expansion packs don't show up as additional PODs but do contribute to the nominalWH
entity.
from /pod
{
"PW1_name": "TEPOD--1707000-11-J--TG124072003AB8",
"PW1_POD_ActiveHeating": 0,
"PW1_POD_ChargeComplete": 0,
"PW1_POD_ChargeRequest": 0,
"PW1_POD_DischargeComplete": 0,
"PW1_POD_PermanentlyFaulted": 0,
"PW1_POD_PersistentlyFaulted": 0,
"PW1_POD_enable_line": 0,
"PW1_POD_available_charge_power": null,
"PW1_POD_available_dischg_power": null,
"PW1_POD_nom_energy_remaining": 8510,
"PW1_POD_nom_energy_to_be_charged": 4790,
"PW1_POD_nom_full_pack_energy": 13300,
"nominal_full_pack_energy": 40150,
"nominal_energy_remaining": 32750,
"time_remaining_hours": 7.20057164843621,
"backup_reserve_percent": 35
}
This was originally going to be an inquiry, but in writing up the issue I discovered that replacing the POD specific entities with non-POD entites gave me what I expected to see. However, the numbers don't quite make sense, as the POD's report is not a true one third of the overall as I would expect it to be. The TeslaOne app does not show any expansion-specific details related to charge or capacity, so it appears these present as virtual expansions of the single PW3. During calibration, the PW3 was fully discharged. Installer claimed this was to even out the batteries to be the same level. This doesn't seem to be the case. If PW1_POD reports 8,510w, I would expect the pack of three batteries to be 25,530w (8,510 x 3) when it is instead reporting 32,750w. These numbers make me think the makeup is closer to 13kw + 13kw + 8.510k. After installation, the system was online for a day with no sun, then participated in two VPP events, so perhaps it still has some calibrating to do. I don't necessarily need that granularity of the primary PW and the overall, but would be nice to report both entities since we have the data.
Before
using PW1_POD_nom_energy_remaining
and PW1_POD_nom_full_pack_energy
After
using nominal_energy_remaining
and nominal_full_pack_energy
edit: although I fixed my immediate inquiry, I opened the issue anyway as a first case for these expansion packs and how the application could better handle surfacing their existence on the backend.
Let me know if you need me to gather additional data.
Thank you!
Activity