Replies: 4 comments 3 replies
-
sorry, what is PV? |
Beta Was this translation helpful? Give feedback.
-
He is meaning Photovoltaik = Solar |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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?
Beta Was this translation helpful? Give feedback.
All reactions