Correct the name of the reference Dc Link Voltage

This commit is contained in:
atef 2023-09-07 17:24:56 +02:00
parent 80e2f349a7
commit bcaab09190
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public static class Controller
// find out if we reach the lower or upper Dc limit by comparing the current Dc voltage to the reference voltage
return s.AcDc.Dc.Voltage > s.Config.ReferenceDcLinkVoltageFromAcDc
return s.AcDc.Dc.Voltage > s.Config.GridTie.AcDc.ReferenceDcLinkVoltage
? control with { PowerCorrection = clampedPowerDelta.ClampMax(-correction), LimitedBy = EssLimit.ChargeLimitedByMaxDcBusVoltage }
: control with { PowerCorrection = clampedPowerDelta.ClampMin(correction), LimitedBy = EssLimit.DischargeLimitedByMinDcBusVoltage };
}