fix division by 0 error

This commit is contained in:
djnitehawk 2025-03-16 18:08:51 +05:30 committed by Dĵ ΝιΓΞΗΛψΚ
parent 41e2c5b009
commit 52c275adaf
2 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ public class Endpoint : EndpointWithoutRequest<object>
BatteryVoltage = Random.Shared.Next(24),
BatteryChargeCurrent = Random.Shared.Next(20),
BatteryDischargeCurrent = Random.Shared.Next(300),
PVInputVoltage = Random.Shared.Next(300),
PVInputVoltage = 0, //Random.Shared.Next(300),
PVInputWatt = Random.Shared.Next(1000),
PV_MaxCapacity = 1000,
BatteryCapacity = 100

View File

@ -25,7 +25,7 @@ public class InverterStatus
public int BatteryDischargeCurrent { get; set; }
[JsonPropertyName("g")]
public int BatteryDischargePotential => BatteryDischargeCurrent > 0 ? Convert.ToInt32(Convert.ToDouble(BatteryDischargeCurrent) / BatteryCapacity * 100) : 0;
public int BatteryDischargePotential => BatteryDischargeCurrent == 0 ? 00 : Convert.ToInt32(Convert.ToDouble(BatteryDischargeCurrent) / BatteryCapacity * 100);
[JsonPropertyName("h")]
public int BatteryDischargeWatts { get; set; }
@ -55,7 +55,7 @@ public class InverterStatus
public double OutputVoltage { get; set; }
[JsonPropertyName("q")]
public double PVInputCurrent => PVInputWatt == 0 ? 0 : Math.Round(PVInputWatt / PVInputVoltage, 1);
public double PVInputCurrent => PVInputWatt == 0 || PVInputVoltage == 0 ? 0 : Math.Round(PVInputWatt / PVInputVoltage, 1);
[JsonPropertyName("r")]
public double PVInputVoltage { get; set; }
@ -83,7 +83,7 @@ public class InverterStatus
public int PV_MaxCapacity { get; set; }
[JsonPropertyName("u")]
public int PVPotential => PVInputWatt > 0 ? Convert.ToInt32(Convert.ToDouble(PVInputWatt) / PV_MaxCapacity * 100) : 0;
public int PVPotential => PVInputWatt == 0 ? 0 : Convert.ToInt32(Convert.ToDouble(PVInputWatt) / PV_MaxCapacity * 100);
[JsonPropertyName("v")]
public ChargeMode ChargeMode { get; set; }