73 lines
2.6 KiB
C#
73 lines
2.6 KiB
C#
///
|
|
/// Copyright (c) 2013-2016 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Xml.Serialization;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.Elde.RegulValve
|
|
{
|
|
public class RegulValveCfg : ComponentCfgBase, IChildComponentCfg
|
|
{
|
|
public static XmlSerializer Serializer = XmlSerializer.FromTypes(new[] { typeof(RegulValveCfg) })[0];
|
|
public override XmlSerializer GetSerializer() { return Serializer; }
|
|
|
|
public IComponentCfgCtrl GetControl(IList<Config.Entities.Component> cmpntEntities) { return new RegulValveCfgCtrl(); }
|
|
|
|
///
|
|
/// Serialized parameters
|
|
///
|
|
public int Idx1; /// 1..8
|
|
public ValveCategory Category; /// Feeding or Output
|
|
public int AdcValueClosed; /// 0..1023
|
|
public int AdcValueOpen; /// 0..1023
|
|
public int StableTimeMs; /// 200..1500 ms, step is 50 ms
|
|
public int FlowStableSec; /// 0..60 sec
|
|
public bool StoredPositionReuse; /// true = store and re-use previous regulation valve positions
|
|
public bool ReTryCommands;
|
|
|
|
/// <summary>
|
|
/// Stabilization time when setting the flow: 0=200ms, step 50ms, max. 1.5 sec.
|
|
/// </summary>
|
|
public int StableTime { get { return (StableTimeMs - 200) / 50; } }
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
RegulValveCfg()
|
|
{
|
|
}
|
|
|
|
public RegulValveCfg(string name, IComponentFactory factory)
|
|
: this()
|
|
{
|
|
Name = name;
|
|
Factory = factory;
|
|
ParentName = "CB";
|
|
Category = ValveCategory.Output;
|
|
Idx1 = 1;
|
|
AdcValueClosed = 100;
|
|
AdcValueOpen = 500;
|
|
StableTimeMs = 500;
|
|
FlowStableSec = 5;
|
|
StoredPositionReuse = false;
|
|
ReTryCommands = false;
|
|
}
|
|
|
|
public string ToString(int i)
|
|
{
|
|
return string.Format("Name={0} ({1}), Idx1={2}, Cat.={3}, ADC-Closed={4}, ADC-Open={5}, StabTm={6}ms, FlowStable={7}s, PosReuse={8}, ReTryCmds={9}",
|
|
Name,
|
|
(string.IsNullOrEmpty(ParentName) ? "-" : ParentName),
|
|
Idx1,
|
|
Category,
|
|
AdcValueClosed,
|
|
AdcValueOpen,
|
|
StableTimeMs,
|
|
FlowStableSec,
|
|
StoredPositionReuse,
|
|
ReTryCommands);
|
|
}
|
|
}
|
|
}
|