Need to get max amps used for main breaker. #166
-
Thinking about geting a whole house generator, I have over a year of data, so it would be useful if I could do a query that would return the max amps (OK, watts is fine, since that's what is in the DB), ever used, or perhaps max and average by week/month, something like that. Maybe even max and average kwh per hour, per month. Just trying to get some idea of peak load in a way that I can map to generator capacity. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Visualize peak kW usage of "Main Panel" over time, using per-minute data:
For Hourly data, change "False" to "Hour", and for Day data, change "False" to "Day" If you want the overall single number, and don't care about the over-time visualization, add a new line with:
Make sure your time window is expanded as far back as you are interested in looking. |
Beta Was this translation helpful? Give feedback.
Visualize peak kW usage of "Main Panel" over time, using per-minute data:
For Hourly data, change "False" to "Hour", and for Day data, change "False" to "Day"
If you want the overall single number, and don't care about the over-time visualization, add a new line with:
|> mean()
to get the average usage overallor
|> max()
to get the maximum usage overallMake sure your time window is…