2023-02-21 06:27:20 +00:00
|
|
|
using InnovEnergy.Lib.StatusApi.Phases;
|
|
|
|
|
|
|
|
namespace InnovEnergy.Lib.StatusApi.Connections;
|
|
|
|
|
2023-02-22 13:46:36 +00:00
|
|
|
public record SinglePhaseAcConnection
|
2023-02-23 12:45:09 +00:00
|
|
|
(
|
|
|
|
Decimal Voltage,
|
|
|
|
Decimal Current,
|
|
|
|
Decimal Phi,
|
|
|
|
Decimal Frequency
|
|
|
|
);
|
|
|
|
//: AcPhase(Voltage, Current, Phi);
|