diff --git a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/AcDcStatus.cs b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/AcDcStatus.cs index 88f27bf09..12d4061c7 100644 --- a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/AcDcStatus.cs +++ b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/AcDcStatus.cs @@ -10,11 +10,10 @@ namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Status; public class AcDcStatus { public Ac3Bus Ac => Ac3Bus.FromPhasesAndFrequency(L1, L2, L3, _Self.GridFrequency); - public DcBus Dc => DcBus.FromVoltageCurrent(_Self.BatteryVoltage, _Self.BatteryCurrent); public PowerLimit PowerLimitedBy => _Self.PowerLimitedBy; public InverterStates InverterState => new(_Self); public GridType ActiveGridType => _Self.ActiveGridType; - public Voltages Voltage => new(_Self); + public Voltages DcVoltages => new(_Self); public Temperatures Temperature => new(_Self); public OverloadCapacity OverloadCapacity => new(_Self); public Nominals Nominal => new(_Self); diff --git a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ExternVoltages.cs b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ExternVoltages.cs index ec0c5e426..d349302c2 100644 --- a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ExternVoltages.cs +++ b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ExternVoltages.cs @@ -4,9 +4,9 @@ namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Status; public class ExternVoltages { - public Voltage DcUpperHalf => _Self.ExternDcVoltageUpperHalf; - public Voltage DcLowerHalf => _Self.ExternDcVoltageLowerHalf; - public Voltage NToPe => _Self.ExternVoltageNToPe; + public Voltage UpperHalf => _Self.ExternDcVoltageUpperHalf; + public Voltage LowerHalf => _Self.ExternDcVoltageLowerHalf; + public Voltage NToPe => _Self.ExternVoltageNToPe; internal ExternVoltages(AcDcRecord self) => _Self = self; private readonly AcDcRecord _Self;