Innovenergy_trunk/csharp/App/SchneiderMeterDriver/Config.cs

66 lines
2.9 KiB
C#

using System.Reflection;
using InnovEnergy.Lib.Victron.VeDBus;
namespace InnovEnergy.App.SchneiderDriver;
public static class Config
{
public const String Version = "1.0";
public const String BusName = "com.victronenergy.grid.Schneider";
public const Byte ModbusNodeId = 1;
public const String OwnAddress = "192.168.3.147";
public const String PeerAddress = "192.168.3.63";
//public const String PeerAddress = "127.0.0.1";
public const UInt16 PeerPort = 502;
public static TimeSpan TcpTimeout { get; } = TimeSpan.FromSeconds(2);
private const UInt16 FactorKwToW = 1000;
public static readonly TimeSpan UpdatePeriod = TimeSpan.FromSeconds(1);
public static readonly IReadOnlyList<Signal> Signals = new List<Signal>
{
new Signal(s => s.CurrentL1, "/Ac/L1/Current", "0.0 A"),
new Signal(s => s.CurrentL2, "/Ac/L2/Current", "0.0 A"),
new Signal(s => s.CurrentL3, "/Ac/L3/Current", "0.0 A"),
new Signal(s => s.CurrentL1 + s.CurrentL2 + s.CurrentL3, "/Ac/Current", "0.0 A"),
new Signal(s => s.VoltageL1N, "/Ac/L1/Voltage", "0.0 V"),
new Signal(s => s.VoltageL2N, "/Ac/L2/Voltage", "0.0 V"),
new Signal(s => s.VoltageL3N, "/Ac/L3/Voltage", "0.0 V"),
new Signal(s => (s.VoltageL1N + s.VoltageL2N + s.VoltageL3N) / 3.0f, "/Ac/Voltage", "0.0 V"),
new Signal(s => s.ActivePowerL1 * FactorKwToW, "/Ac/L1/Power", "0 W"),
new Signal(s => s.ActivePowerL2 * FactorKwToW, "/Ac/L2/Power", "0 W"),
new Signal(s => s.ActivePowerL3 * FactorKwToW, "/Ac/L3/Power", "0 W"),
new Signal(s => s.TotalActivePower * FactorKwToW, "/Ac/Power", "0 W"),
new Signal(s => s.TotalActiveImport, "Ac/Energy/Forward", "0.00 kWh"),
new Signal(s => s.TotalActiveExport, "Ac/Energy/Reverse", "0.00 kWh"),
new Signal(s => s.ActiveEnergyImportL1, "Ac/L1/Energy/Forward", "0.00 kWh"),
// new(s => s.EnergyExportL1, "Ac/L1/Energy/Reverse", "0.00 kWh"),
//
new Signal(s => s.ActiveEnergyImportL2, "Ac/L2/Energy/Forward", "0.00 kWh"),
// new(s => s.EnergyExportL2, "Ac/L2/Energy/Reverse", "0.00 kWh"),
//
new Signal(s => s.ActiveEnergyImportL3, "Ac/L3/Energy/Forward", "0.00 kWh"),
// new(s => s.EnergyExportL3, "Ac/L3/Energy/Reverse", "0.00 kWh"),
};
public static VeProperties DefaultProperties => new VeProperties
{
new("/ProductName" , "Grid meter" ),
new("/CustomName" , "Schneider Professional"),
new("/DeviceInstance" , 50),
new("/DeviceType" , 73),
new("/Mgmt/Connection" , "Modbus TCP"),
new("/Mgmt/ProcessName" , Assembly.GetEntryAssembly()?.Location ?? "unknown"),
new("/Mgmt/ProcessVersion", Version),
new("/Connected" , 1),
new("/ProductId" , 45139, "b002"),
new("/Role" , "grid"),
};
}