using System; using System.Xml; using Aitex.Core.Common.DeviceData; using Aitex.Core.RT.DataCenter; using Aitex.Core.RT.Event; using Aitex.Core.RT.IOCore; using Aitex.Core.RT.SCCore; using Aitex.Core.RT.Tolerance; using Aitex.Core.Util; namespace Aitex.Core.RT.Device.Unit { [Obsolete] public class IoMfc : BaseDevice, IDevice { public string Unit { get; set; } //[Subscription(AITMfcDataPropertyName.Scale)] public double Scale { get { if (_scN2Scale == null || _scScaleFactor == null) return 0; return _scN2Scale.IntValue * _scScaleFactor.IntValue; } } [Subscription(AITMfcDataPropertyName.SetPoint)] public double SetPoint { get { if (_aoFlow != null) { return _aoFlow.Value; } return 0; } set { if (_aoFlow != null) { _aoFlow.Value = (short)value; } } } [Subscription(AITMfcDataPropertyName.DefaultSetPoint)] public double DefaultSetPoint { get { if (_scDefaultSetPoint != null) return _scDefaultSetPoint.DoubleValue; return 0; } } [Subscription(AITMfcDataPropertyName.FeedBack)] public double FeedBack { get { if (_aiFlow != null) return (_scRegulationFactor != null && _scRegulationFactor.DoubleValue > 0) ? _aiFlow.Value / _scRegulationFactor.DoubleValue : _aiFlow.Value; return 0; } } //[Subscription(AITMfcDataPropertyName.IsOutOfTolerance)] public bool IsOutOfTolerance { get { return _toleranceChecker.Result; } } //[Subscription(AITMfcDataPropertyName.IsEnableAlarm)] public bool EnableAlarm { get { if (_scEnableAlarm != null) return _scEnableAlarm.BoolValue; return false; } } //[Subscription(AITMfcDataPropertyName.AlarmRange)] public double AlarmRange { get { if (_scAlarmRange != null) return _scAlarmRange.DoubleValue; return 0; } } //[Subscription(AITMfcDataPropertyName.AlarmTime)] public double AlarmTime { get { if (_scAlarmTime != null) return _scAlarmTime.DoubleValue; return 0; } } //[Subscription(AITMfcDataPropertyName.IsOffline)] public bool IsOffline { get { if (_diOffline != null) return _diOffline.Value; return false; } } public string DisplayName { get { if (_scGasName != null) return _scGasName.StringValue; return Display; } } private DeviceTimer rampTimer = new DeviceTimer(); private double rampTarget; private double rampInitValue; private int rampTime; private ToleranceChecker _toleranceChecker = new ToleranceChecker(); private AIAccessor _aiFlow; private AOAccessor _aoFlow; private AOAccessor _aoRange; private DIAccessor _diOffline; private SCConfigItem _scGasName; private SCConfigItem _scEnable; private SCConfigItem _scN2Scale; private SCConfigItem _scScaleFactor; private SCConfigItem _scAlarmRange; private SCConfigItem _scEnableAlarm; private SCConfigItem _scAlarmTime; private SCConfigItem _scDefaultSetPoint; private SCConfigItem _scRegulationFactor; private R_TRIG _trigOffline = new R_TRIG(); private string _uniqueName; public IoMfc(string module, XmlElement node, string ioModule = "") { Unit = node.GetAttribute("unit"); base.Module = module; base.Name = node.GetAttribute("id"); base.Display = node.GetAttribute("display"); base.DeviceID = node.GetAttribute("schematicId"); _aoRange = ParseAoNode("aoRange", node, ioModule); _diOffline = ParseDiNode("diOffline", node, ioModule); _aiFlow = ParseAiNode("aiFlow", node, ioModule); _aoFlow = ParseAoNode("aoFlow", node, ioModule); _scGasName = ParseScNode("scGasName", node, ioModule); _scEnable = ParseScNode("scEnable", node, ioModule); _scN2Scale = ParseScNode("scN2Scale", node, ioModule); _scScaleFactor = ParseScNode("scScaleFactor", node, ioModule); _scAlarmRange = ParseScNode("scAlarmRange", node, ioModule); _scEnableAlarm = ParseScNode("scEnableAlarm", node, ioModule); _scAlarmTime = ParseScNode("scAlarmTime", node, ioModule); _scDefaultSetPoint = ParseScNode("scDefaultSetPoint", node, ioModule); _scRegulationFactor = ParseScNode("scFlowRegulationFactor", node, ioModule); _uniqueName = $"{Module}.{Name}"; } public bool Initialize() { DATA.Subscribe($"{Module}.{Name}", () => { AITMfcData data = new AITMfcData() { Type = "MFC", UniqueName = _uniqueName, DeviceName = Name, DeviceSchematicId = DeviceID, DisplayName = DisplayName, FeedBack = FeedBack, SetPoint = SetPoint, Scale = Scale, IsOffline = IsOffline, }; return data; }, SubscriptionAttribute.FLAG.IgnoreSaveDB); DATA.Subscribe($"{Module}.{Name}.FeedBack", ()=>FeedBack); DEVICE.Register($"{Module}.{Name}.{AITMfcOperation.Ramp}", (out string reason, int time, object[] param) => { double target = Convert.ToDouble((string)param[0]); target = Math.Min(target, Scale); target = Math.Max(target, 0); Ramp(target, time); reason = string.Format("{0} ramp to {1}{2}", Display, target, Unit); return true; }); //@AAA use recipe DEVICE.Register($"{Module}.{Name}", (out string reason, int time, object[] param) => { double target = Convert.ToDouble((string)param[0]); target = Math.Min(target, Scale); target = Math.Max(target, 0); Ramp(target, time); reason = string.Format("{0} ramp to {1}{2}", Display, target, Unit); return true; }); return true; } public void Monitor() { Ramping(); CheckTolerance(); if (_aoRange != null) _aoRange.Value = (short)Scale; _trigOffline.CLK = IsOffline; if (_trigOffline.Q) { EV.PostMessage(Module, EventEnum.DefaultAlarm, string.Format("{0} is offline", DisplayName)); } } public void Reset() { _toleranceChecker.Reset(AlarmTime); _trigOffline.RST = true; } public void Terminate() { Ramp(DefaultSetPoint, 0); } public void Ramp(int time) { Ramp(DefaultSetPoint, time); } public void Ramp(double target, int time) { target = Math.Max(0, target); target = Math.Min(Scale, target); rampInitValue = SetPoint; //ramp 初始值取当前设定值,而非实际读取值。零漂问题 rampTime = time; rampTarget = target; rampTimer.Start(rampTime); } public void StopRamp() { Ramp(SetPoint, 0); } private void Ramping() { if (rampTimer.IsTimeout() || rampTime == 0) { SetPoint = rampTarget; } else { SetPoint = rampInitValue + (rampTarget - rampInitValue) * rampTimer.GetElapseTime() / rampTime; } } private void CheckTolerance() { if (!EnableAlarm) return; _toleranceChecker.Monitor(FeedBack, (SetPoint - Math.Abs(AlarmRange)), (SetPoint + Math.Abs(AlarmRange)), AlarmTime); if (_toleranceChecker.Trig) { EV.PostMessage(Module, EventEnum.ToleranceAlarm, Module, Display, String.Format("Out of range in {0} seconds", AlarmTime.ToString("0"))); } } } }