Skip to content
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

PW3 Expansions: capacity panel not showing full capacity #576

Open
rawslaw opened this issue Jan 21, 2025 · 1 comment
Open

PW3 Expansions: capacity panel not showing full capacity #576

rawslaw opened this issue Jan 21, 2025 · 1 comment

Comments

@rawslaw
Copy link

rawslaw commented Jan 21, 2025

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.

Image

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
Image

After
using nominal_energy_remaining and nominal_full_pack_energy
Image

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!

@jasonacox
Copy link
Owner

Thanks for this @rawslaw ! Nice system! I love the picture as well as the detailed analysis. Also, good job on finding the solution for the total charge (via the nominal_ * data point). Anyone else installing expansions will find this useful!

Based on your narrative, it seems like the expansion batteries do not provide individual metrics. Did you check these to see if they are exposed anywhere?

Now, I need to confess, I'm not sure what to do with this for the project (Dashboard or pypowerwall) to help. Do you have any suggestions? Besides getting the missing battery metrics, what would be useful for the Dashboard?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants