-
Hi, I have a number of Deye-something-something microinverters. (Using the deye-2mppt.yaml ) The Voltage and Current of both connected solar panels sensor.solarman1_pv1_voltage But also: There however is a significant difference (0.5%-2%) between those values:
At the moment of writing the difference is about 3,4 Watt, which is almost 1% (I have seen larger and smaller differences between the given values, anything from almost the same to little more than 2%) Does anyone know which value is more accurate in practice? The provided output power of the inverter, or the reported voltage/current. Has anyone ever looked in to this?? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I would speculate that multiplying Current and Voltage gives Apparent
Power. The % difference is the Apparent Power compared to the Active Power.
With a bit of trigonometry, you would be able to calculate the phase angle
load, I would assume that I and V from the PV are in phase, so the
difference must be the phase angle introduced by the load.
…On Sun, May 21, 2023 at 3:34 PM lenwar ***@***.***> wrote:
Hi,
I have a number of Deye-something-something microinverters. (Using the
deye-2mppt.yaml )
That yaml-file provides a lot of output.
The Voltage and Current of both connected solar panels
sensor.solarman1_pv1_voltage
sensor.solarman1_pv1_current
And
sensor.solarman1_pv2_voltage
sensor.solarman1_pv2_current
But also:
sensor.solarman1_total_ac_output_power_active
There however is a significant difference (0.5%-2%) between those values:
{{ states('sensor.solarman1_total_ac_output_power_active') }} ## (( at moment of writing 472 ))
{{
(float(states('sensor.solarman1_pv1_current')) * float(states('sensor.solarman1_pv1_voltage'))) +
(float(states('sensor.solarman1_pv2_current')) * float(states('sensor.solarman1_pv2_voltage'))) ## (( at moment of writing about 468.57 ))
}}
At the moment of writing the difference is about 3,4 Watt, which is almost
1% (I have seen larger and smaller differences between the given values,
anything from almost the same to little more than 2%)
Does anyone know which value is more accurate in practice? The provided
output power of the inverter, or the reported voltage/current. Has anyone
ever looked in to this??
—
Reply to this email directly, view it on GitHub
<#303>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMR3RL76URKQP3LURSJ5243XHIKT3ANCNFSM6AAAAAAYJNBTIQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***
com>
--
Groete
Helgard Ross
+27 83 459 4052
|
Beta Was this translation helpful? Give feedback.
-
The module data (pv1/pv2) is the input power coming from the panels. The ac value is the output power of the inverter. The difference is the eficency of the inverter. Would be interesting to plot the difference over the output power. That would give an efficency curve of the inverter. |
Beta Was this translation helpful? Give feedback.
The module data (pv1/pv2) is the input power coming from the panels. The ac value is the output power of the inverter. The difference is the eficency of the inverter. Would be interesting to plot the difference over the output power. That would give an efficency curve of the inverter.
So both values seem to be accurate, just showing different things.