Skip to content

Commit 92fcec1

Browse files
stegmc0ffeeca7
andauthored
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>
1 parent b7aa8fe commit 92fcec1

File tree

1 file changed

+28
-33
lines changed

1 file changed

+28
-33
lines changed

source/_integrations/kostal_plenticore.markdown

Lines changed: 28 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The following sensors are available in the library:
3939
| Name | Unit | Description |
4040
|-------------------------|------|:-------------------------------------------|
4141
| Inverter State | | State of the inverter. |
42-
| Solar Power | W | Sum of all DC strings. |
42+
| Solar Power | W | Sum of all DC strings (including battery). |
4343
| Grid Power | W | Power from (+)/to (-) the grid. |
4444
| Home Power from Battery | W | Power from the battery for home consumption. |
4545
| Home Power from Grid | W | Power from the grid for home consumption. |
@@ -108,42 +108,37 @@ The following sensors are available in the library:
108108
| Battery Charge from Grid Month | kWh | Energy charged to the battery from the Grid of the current month. |
109109
| Battery Charge from Grid Year | kWh | Energy charged to the battery from the Grid of the current year. |
110110
| 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. |
115124

116125
<div class='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.
118127
</div>
119128

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+
<div class='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.
141+
</div>
147142

148143
### Settings Sensors
149144

0 commit comments

Comments
 (0)