You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adapt documentation of kostal plenticore to match changes in core. (home-assistant#29811)
* Change documentation to change of core.
* Add style to new text.
* tiny tweaks
---------
Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com>
| Solar Power | W | Sum of all DC strings (including battery). |
43
43
| Grid Power | W | Power from (+)/to (-) the grid. |
44
44
| Home Power from Battery | W | Power from the battery for home consumption. |
45
45
| Home Power from Grid | W | Power from the grid for home consumption. |
@@ -108,42 +108,37 @@ The following sensors are available in the library:
108
108
| Battery Charge from Grid Month | kWh | Energy charged to the battery from the Grid of the current month. |
109
109
| Battery Charge from Grid Year | kWh | Energy charged to the battery from the Grid of the current year. |
110
110
| Battery Charge from Grid Total | kWh | Energy charged to the battery from the Grid total. |
111
-
| Battery Charge from PV Day | kWh | Energy charged to the battery from the PV of the current day. |
112
-
| Battery Charge from PV Month | kWh | Energy charged to the battery from the PV of the current month. |
113
-
| Battery Charge from PV Year | kWh | Energy charged to the battery from the PV of the current year. |
114
-
| Battery Charge from PV Total | kWh | Energy charged to the battery from the PV total. |
111
+
| Battery Charge from PV Day | kWh | Energy to the battery on the DC side charged by PV during the current day. |
112
+
| Battery Charge from PV Month | kWh | Energy to the battery on the DC side charged by PV during the current month. |
113
+
| Battery Charge from PV Year | kWh | Energy to the battery on the DC side charged by PV during the current year. |
114
+
| Battery Charge from PV Total | kWh | Energy to the battery on the DC side charged by PV total. |
115
+
| Battery Discharge Day | kWh | Energy from the battery on the DC side discharged during the current day. |
116
+
| Battery Discharge Month | kWh | Energy from PV on DC-side used to charge the battery of the current month. |
117
+
| Battery Discharge Year | kWh | Energy from PV on DC-side used to charge the battery of the current year. |
118
+
| Battery Discharge Total | kWh | Energy from PV on DC-side used to charge the battery total. |
119
+
| Energy to Grid Day | kWh | Energy fed into the grid for the current day. |
120
+
| Energy to Grid Month | kWh | Energy fed into the grid for the current month. |
121
+
| Energy to Grid Year | kWh | Energy fed into the grid for the current year. |
122
+
| Energy to Grid Total | kWh | Energy fed into the grid in total, since the system was installed. |
123
+
| Sum power of all PV DC inputs | W | Total sum of power provided by all PV inputs together. |
115
124
116
125
<divclass='note'>
117
-
The inverter does not provide any data on the energy that is going to the grid directly.
126
+
The inverter does not provide any data about the energy that is fed into the grid directly, but the `pykoplenti` library provides it via virtual process data.
118
127
</div>
119
128
120
-
#### Common template sensors
121
-
122
-
##### Energy to grid total
123
-
124
-
{% raw %}
125
-
126
-
```yaml
127
-
template:
128
-
- sensor:
129
-
- name: "Plenticore Energy PV to Grid Total (Template)"
130
-
unit_of_measurement: "kWh"
131
-
device_class: energy
132
-
state_class: total
133
-
state: >
134
-
{% set yield = states('sensor.scb_energy_yield_total') | float %}
135
-
{% set batteryToHome = states('sensor.scb_home_consumption_from_battery_total') | float %}
136
-
{% set pvToHome = states('sensor.scb_home_consumption_from_pv_total') | float %}
137
-
{{ yield - pvToHome - batteryToHome }}
138
-
```
139
-
140
-
The `sensor.scb_energy_yield_total` entity contains the total energy. This includes
141
-
both the energy delivered to the home as well as the energy from the battery to the
142
-
home. Think of it like all energy that leaves the inverter on the AC side.
143
-
Hence, to calculate the amount of energy flowing into the grid, you have to subtract the energy from the battery and PV to the
144
-
home.
145
-
146
-
{% endraw %}
129
+
#### Configuration of the energy dashboard
130
+
131
+
The following sensors can be used in the [energy dashboard](/docs/energy/):
132
+
133
+
| Energy dashboard | Sensor |
134
+
|------------------|:-------|
135
+
| Grid consumption | Home Consumption from Grid Total |
136
+
| Solar production | Energy PV1 Total, Energy PV2 Total, Energy PV3 Total |
137
+
| Battery systems | Battery Discharge Total, Battery Charge from PV Total |
138
+
139
+
<divclass='note'>
140
+
Some of the energy is measured on the DC side and some on the AC side, so the values may differ slightly due to losses between DC and AC.
0 commit comments