-
Hi, Can anyone help me understand how the Home_load is calculated? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @eb99, the home_load is intended to be the measurement of what your house is using in real time, regardless of where the power is coming from, but it has some specific requirements to work properly. Most notably, it requires measuring the incoming service mains with one CT per main feed. If you're not monitoring the mains, home_load is not going to be accurate. The calculation of home_load depends on whether or not you have setup any channels with a If you do have
If you do not have
For the calculation to be accurate, it is imperative to ensure that the signage on the CT measurements is correct according to the Post Install Validation section of the docs here: It is also crucial to have a sensor for each service main (in North America, we have two incoming mains, so you'd need one on each), and that the sensor for your solar inverter is properly configured in the config.toml file. The proper configuration of the CT on your solar inverter will vary, but for the following typical conditions:
... then you'll want to set Hopefully this helps! Let me know if you have any additional questions :) |
Beta Was this translation helpful? Give feedback.
-
hi,
no i mean the data takes the full 30s or longer to update, regardless of
the update rate.
i usually set i to 10min refresh, but that takes 30s to update the data.
…On Thu, Nov 28, 2024 at 10:10 AM David Albrecht ***@***.***> wrote:
I believe the default dashboard refresh in Grafana is 30 seconds. You can
set a faster refresh time in the dropdown menu on the top right:
image.png (view on web)
<https://github.com/user-attachments/assets/e5825698-1c28-49e3-905e-59ae337524b4>
—
Reply to this email directly, view it on GitHub
<#147 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AH4SGH2KJ6I6HHZMKWIOCBD2CZGORAVCNFSM6AAAAABSPTKYSSVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNBQGAYDAMA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
Hi @eb99, the home_load is intended to be the measurement of what your house is using in real time, regardless of where the power is coming from, but it has some specific requirements to work properly. Most notably, it requires measuring the incoming service mains with one CT per main feed. If you're not monitoring the mains, home_load is not going to be accurate.
The calculation of home_load depends on whether or not you have setup any channels with a
type = 'mains'
in your config.toml file.If you do have
mains
channels:If you do not have
mains
channels:type = 'consumption'
F…