Add the DC link Active Voltage reading

This commit is contained in:
atef 2024-08-02 13:25:18 +02:00
parent 736af37475
commit 1efefc6af4
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using InnovEnergy.Lib.Units;
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Status;
public class ActiveVoltages
{
public Voltage ActiveUpperVoltage => _Self.DcMaxVoltage;
public Voltage ActiveLowerVoltage => _Self.DcMinVoltage;
public Voltage ActiveRefVoltage => _Self.DcReferenceVoltage;
internal ActiveVoltages(AcDcRecord self) => _Self = self;
private readonly AcDcRecord _Self;
}