Replies: 5 comments 3 replies
|
sorry, what is PV? |
|
He is meaning Photovoltaik = Solar |
|
ah thanks - I am not sure how that would work, I guess you can somehow take the values from your PV system and convert them to solar radiation, but I don't know how and it's probably dependent on your PV system. |
|
Thank you for your great question. I also ask that to me some days ago but did not had the motivation to figure it out by myself. Now I tried it with ChatGPT and it brought me to this solution: sensor:
- platform: template
sensors:
garage_solar_irradiance:
friendly_name: "Garage Solar Irradiance"
unit_of_measurement: "W/m²"
value_template: >
{% set pv_power_output = states('sensor.sunny_tripower_x_25_pv_power_c') | float %}
{% set panel_area = 25.5 %}
{% set panel_efficiency = 0.22 %}
{% if panel_area > 0 and panel_efficiency > 0 %}
{{ (pv_power_output / (panel_area * panel_efficiency)) | round(2) }}
{% else %}
0
{% endif %}I have set it up but it's dark now. Let's see how it will perform tomorrow. |
|
This was bothering me, as solar data is available just like weather. Would anyone be interested? And I'm just wondering what estimation might PyETO do under the hood to compare it. If useful it could be included easily into the integration. |
Uh oh!
There was an error while loading. Please reload this page.
Hi,
since I don't have any sensor for measuring solar radiation, I was just wondering if there might be a way to derive that from my PV-data?
All reactions