Calculating the Household in a 3-phase-setup #462
Replies: 3 comments 6 replies
-
ty @mafischerhei I've added that and will monitore / compare it tomorrow |
Beta Was this translation helpful? Give feedback.
-
Now that its getting sunnier and I#m exporting, I realized that I forgot to take into account to subtract that for the household. {% set gridct_r = states('sensor.foxess_grid_ct_r') | float(default=0) %} |
Beta Was this translation helpful? Give feedback.
-
Hello, the Power Flox Card Plus calculates this directly, probably the difference to the template is that the DC power of the PV system is listed here for calculation. In the picture above the result from the template and below directly from the Power Flow card. therefore probably the difference?? |
Beta Was this translation helpful? Give feedback.
-
As we know now, that the SINGLE phases of Grid Consumption R S T are not allowed to go negative in this integration, we can't use them to calculate the household on 3-phase setup.
we have to use Grid CT R S T, Inverter Power R S T and EPS Power R S T instead to calculate the Household .
I have a chint connected. Only one inverter (H3)
At the moment, this template sensor(Helpers->Create Template Sensor) seems to work for my setup:
`
{% set gridct_r = states('sensor.foxess_grid_ct_r') | float(default=0) %}
{% set gridct_s = states('sensor.foxess_grid_ct_s') | float(default=0) %}
{% set gridct_t = states('sensor.foxess_grid_ct_t') | float(default=0) %}
{% set gridct = (gridct_r + gridct_s + gridct_t) %}
{% set gridimport = gridct | abs %}
{% set rpower = states('sensor.foxess_inv_power_r') | float(default=0) %}
{% set spower = states('sensor.foxess_inv_power_s') | float(default=0) %}
{% set tpower = states('sensor.foxess_inv_power_t') | float(default=0) %}
{% set power = rpower + spower + tpower %}
{% set eps_rpower = states('sensor.foxess_eps_power_r') | float (default=0) %}
{% set eps_spower = states('sensor.foxess_eps_power_s') | float (default=0) %}
{% set eps_tpower = states('sensor.foxess_eps_power_t') | float (default=0) %}
{% set eps_power = eps_rpower + eps_spower + eps_tpower %}
{% set result = gridimport + power + eps_power | round (3) %}
{{ result }}
`
Beta Was this translation helpful? Give feedback.
All reactions