-
System: 8.8kw of solar panels, three PW3 units. My installation is not yet complete - jumper wires from one primary panel to another don't quite fit cleanly, have to be redone. Because the team worked into the early evening trying to get things to fit, I have a functioning system, but they didn't run the ethernet connection, I don't have PTO from the utility, and am hanging out in this nether state until a couple weeks from now. While I'm waiting, I'm using the cloud data access. I'm using pypowerwall to dump the raw data from the cloud into my own database. I've been tracking the entire house for years now, and want to continue on this piece too. What I haven't been able to locate as yet is any "accumulators" that seem to report cumulative data from the day. I see the Powerwall Dashboard can summarize each day for the day, month, year for grid, solar, home, and powerwall, but I have not as yet located an API call from the pypowerwall instructions / examples that seems to produce anything other than instantaneous numbers (other than the battery level). Where does this information get returned? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi @JohnJ9ml while there isn't a direct acumulator element, you can compute the energy by taking the samples, summing them and dividing it by time (hours). This is what the Dashboard is doing (technically integrating or computing the area under the time series curve). The cloud has historic data that you can access to do the math (see example https://github.com/jasonacox/Powerwall-Dashboard/blob/main/tools/tesla-history/tesla-history.py). |
Beta Was this translation helpful? Give feedback.
-
I've been having a lot of fun with this project thus far, and have largely decided to stand pat until they come next Wednesday, plug in the hardwire, and hopefully see how life changes once I have the all clear PTO from the utility. |
Beta Was this translation helpful? Give feedback.
Hi @JohnJ9ml while there isn't a direct acumulator element, you can compute the energy by taking the samples, summing them and dividing it by time (hours). This is what the Dashboard is doing (technically integrating or computing the area under the time series curve). The cloud has historic data that you can access to do the math (see example https://github.com/jasonacox/Powerwall-Dashboard/blob/main/tools/tesla-history/tesla-history.py).