pack nominal voltage issue

This commit is contained in:
djnitehawk 2025-03-13 21:22:29 +05:30
parent 2f0b3f6228
commit aa1e7e6e56
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ public class UserSettings
public int Id { get; set; } = 1; public int Id { get; set; } = 1;
public int PV_MaxCapacity { get; set; } = 1000; public int PV_MaxCapacity { get; set; } = 1000;
public int BatteryCapacity { get; set; } = 100; public int BatteryCapacity { get; set; } = 100;
public double BatteryNominalVoltage { get; set; } = 25.6f; public double BatteryNominalVoltage { get; set; } = 25.6;
public int SunlightStartHour { get; set; } = 6; public int SunlightStartHour { get; set; } = 6;
public int SunlightEndHour { get; set; } = 18; public int SunlightEndHour { get; set; } = 18;
public int[] PVGraphRange => new[] { 0, (SunlightEndHour - SunlightStartHour) * 60 }; public int[] PVGraphRange => new[] { 0, (SunlightEndHour - SunlightStartHour) * 60 };

View File

@ -1 +1 @@
dotnet publish ./InverterMon.Server.csproj -c Release -r win-x64 --self-contained -p:PublishTrimmed=true -p:TrimmerLogLevel=Detailed -o D:\\DOWNLOADS dotnet publish ./InverterMon.Server.csproj -c Release -r linux-arm64 --self-contained -p:PublishTrimmed=true -p:TrimmerLogLevel=Detailed -o D:\\DOWNLOADS