123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- using Aitex.Core.RT.Device;
- using Aitex.Core.RT.Event;
- using Aitex.Core.RT.IOCore;
- using System.Xml;
- using System.Diagnostics;
- using Aitex.Core.Common.DeviceData;
- using Aitex.Core.RT.DataCenter;
- using Aitex.Core.RT.SCCore;
- using Aitex.Core.RT.OperationCenter;
- using VirgoCommon;
- namespace VirgoRT.Devices
- {
- public class IoTriStateLift2 : BaseDevice, IDevice
- {
- private readonly DIAccessor _diOrigin;//是否到达原点
- private readonly DIAccessor _diP1;//是否到达位置1
- private readonly DIAccessor _diP2;//是否到达位置2
- private readonly DIAccessor _diP3;//是否到达位置3
- private readonly DIAccessor _diCOMMAlarm;//去位置1,2,3超时
- private readonly DIAccessor _diBatteryLowAlarm;//去原点超时
- // private readonly DIAccessor _diServoAlarm; // servo alarm
- // private readonly DIAccessor _diCCWLimitSensorAlarm; //
- //private readonly DIAccessor _diOverSoftwareLimitAlarm; //
- private readonly DOAccessor _doReset;
- private readonly DOAccessor _doOrigin;//去原点
- private readonly DOAccessor _doP1;//去位置1
- private readonly DOAccessor _doP2;//去位置2
- private readonly DOAccessor _doP3;//去位置3
- private readonly DOAccessor _doStop;
- private readonly DOAccessor _doUp;
- private readonly DOAccessor _doDown;
- private readonly AIAccessor _currentValue;
- private readonly AOAccessor _aoSetP1;
- private readonly AOAccessor _aoSetP2;
- private readonly AOAccessor _aoSetP3;
- private readonly AOAccessor _aoServoEnable;
- private readonly AOAccessor _aoServoWorkMode;
- private readonly AOAccessor _aoOriginSpeed;
- private readonly AOAccessor _aoAutoSpeed;
- private readonly AOAccessor _aoManualSpeed;
- private readonly AOAccessor _aoAccDecSpeedTime;
- private readonly AOAccessor _aoDecTime;
- private readonly AOAccessor _aoSoftUpLimit;
- private readonly AOAccessor _aoSoftDownLimit;
- private readonly AOAccessor _aoCorrectionValue;
- private Stopwatch sw = new Stopwatch();
- private Stopwatch _manualStopTimer = new Stopwatch();
- private readonly int _stopButtonAutoResetTime = 1000;
- private Position _currentTarget = Position.Invalid;
- long _timeout = 10000;
- private bool _bAlarmReported = false;
- private AITTriStateLiftPinData DeviceData
- {
- get
- {
- AITTriStateLiftPinData deviceData = new AITTriStateLiftPinData
- {
- Module = Module,
- DeviceName = Name,
- DeviceSchematicId = DeviceID,
- DisplayName = Display,
- };
- return deviceData;
- }
- }
- public MovementPosition PinPosition
- {
- get
- {
- if (_diP1.Value && _diP2.Value == false && _diP3.Value == false)
- return MovementPosition.Up;
- else if (_diP1.Value == false && _diP2.Value && _diP3.Value == false)
- return MovementPosition.Middle;
- else if (_diP1.Value == false && _diP2.Value == false && _diP3.Value)
- return MovementPosition.Down;
- else if (_diOrigin.Value)
- return MovementPosition.Origin;
- return MovementPosition.Unknown;
- }
- }
- public int PinPositionint
- {
- get
- {
- if (PinPosition == MovementPosition.Up)
- return 3;
- else if (PinPosition == MovementPosition.Middle)
- return 2;
- else if (PinPosition == MovementPosition.Down)
- return 1;
- else if (PinPosition == MovementPosition.Origin)
- return 0;
- return -1;
- }
- }
- public IoTriStateLift2(string module, XmlElement node, string ioModule = "")
- {
- base.Module = module;
- base.Name = node.GetAttribute("id");
- base.Display = node.GetAttribute("display");
- base.DeviceID = node.GetAttribute("schematicId");
- _diOrigin = ParseDiNode("diOrigin", node, ioModule);
- _diP1 = ParseDiNode("diP1", node, ioModule);
- _diP2 = ParseDiNode("diP2", node, ioModule);
- _diP3 = ParseDiNode("diP3", node, ioModule);
- _diCOMMAlarm = ParseDiNode("diCOMMAlarm", node, ioModule);
- _diBatteryLowAlarm = ParseDiNode("diBatteryLowAlarm", node, ioModule);
- _doReset = ParseDoNode("doReset", node, ioModule);
- _doOrigin = ParseDoNode("doOrigin", node, ioModule);
- _doP1 = ParseDoNode("doP1", node, ioModule);
- _doP2 = ParseDoNode("doP2", node, ioModule);
- _doP3 = ParseDoNode("doP3", node, ioModule);
- _doStop = ParseDoNode("doStop", node, ioModule);
- _doUp = ParseDoNode("doUp", node, ioModule);
- _doDown = ParseDoNode("doDown", node, ioModule);
- _currentValue = ParseAiNode("aiCurrentValue", node, ioModule);
- _aoSetP1 = ParseAoNode("aoSetP1", node, ioModule);
- _aoSetP2 = ParseAoNode("aoSetP2", node, ioModule);
- _aoSetP3 = ParseAoNode("aoSetP3", node, ioModule);
- _aoServoEnable = ParseAoNode("aoServoEnable", node, ioModule);
- _aoServoWorkMode = ParseAoNode("aoServoWorkMode", node, ioModule);
- _aoOriginSpeed = ParseAoNode("aoOriginSpeed", node, ioModule);
- _aoAutoSpeed = ParseAoNode("aoAutoSpeed", node, ioModule);
- _aoManualSpeed = ParseAoNode("aoManualSpeed", node, ioModule);
- _aoSoftUpLimit = ParseAoNode("aoSoftUpLimit", node, ioModule);
- _aoSoftDownLimit = ParseAoNode("aoSoftDownLimit", node, ioModule);
- _aoAccDecSpeedTime = ParseAoNode("aoAccDecSpeedTime", node, ioModule);
- }
- private void updatePinCfg()
- {
- // AO-27, Lift Servo Enable: 0=Lift Pin ,1=Lift Servo
- _SetRealFloat(_aoServoEnable, 1);
- void _updateItem(string data, AOAccessor ao)
- {
- var value = (float)SC.GetValue<double>($"{Module}.{Name}.{data}");
- _SetRealFloat(ao, value);
- }
- _updateItem("ServoWorkMode", _aoOriginSpeed);
- _updateItem("OriginSpeed", _aoOriginSpeed);
- _updateItem("AutoSpeed", _aoAutoSpeed);
- _updateItem("ManualSpeed", _aoManualSpeed);
- _updateItem("SoftUpLimit", _aoSoftUpLimit);
- _updateItem("SoftDownLimit", _aoSoftDownLimit);
- _updateItem("AccDecSpeedTime", _aoAccDecSpeedTime);
- _updateItem("Position1", _aoSetP1);
- _updateItem("Position2", _aoSetP2);
- _updateItem("Position3", _aoSetP3);
- }
- public bool GoPosition(Position position)
- {
- if (_diCOMMAlarm.Value)
- return false;
- _currentTarget = position;
- sw.Restart();
- switch (position)
- {
- case Position.position1:
- _doP1.Value = true;
- _doP2.Value = false;
- _doP3.Value = false;
- break;
- case Position.position2:
- _doP1.Value = false;
- _doP2.Value = true;
- _doP3.Value = false;
- break;
- case Position.position3:
- _doP1.Value = false;
- _doP2.Value = false;
- _doP3.Value = true;
- break;
- case Position.origin:
- {
- if (_diOrigin.Value)
- {
- EV.PostInfoLog(Module, $"Lift Pin already on original position.");
- sw.Stop();
- return true;
- }
- _doOrigin.Value = true;
- }
- break;
- }
- EV.PostInfoLog(Module, $"Lift Pin goto {_currentTarget}");
- return true;
- }
- public bool ManulStop()
- {
- if (_diCOMMAlarm.Value)
- return false;
- _doUp.Value = false;
- _doDown.Value = false;
- _doStop.Value = true;
- _manualStopTimer.Restart();
- return true;
- }
- public bool ManulUp()
- {
- if (_diCOMMAlarm.Value)
- return false;
- _doDown.Value = false;
- _doStop.Value = false;
- _doUp.Value = !_doUp.Value;
- return true;
- }
- public bool ManulDown()
- {
- if (_diCOMMAlarm.Value)
- return false;
- _doUp.Value = false;
- _doStop.Value = false;
- _doDown.Value = !_doDown.Value;
- return true;
- }
- public float CurrentValue
- {
- get
- {
- if (_currentValue == null)
- {
- return 0;
- }
- return _GetRealFloat(_currentValue); ;
- }
- }
- public bool Initialize()
- {
- DATA.Subscribe($"{Module}.{Name}.DeviceData", () => DeviceData);
- DATA.Subscribe($"{Module}.{Name}.PinPosition", () => PinPositionint);
- DATA.Subscribe($"{Module}.{Name}.CurrentValue", () => CurrentValue);
- DATA.Subscribe($"{Module}.{Name}.ManualStopState", () => _doStop.Value);
- DATA.Subscribe($"{Module}.{Name}.ManualUpState", () => _doUp.Value);
- DATA.Subscribe($"{Module}.{Name}.ManualDownState", () => _doDown.Value);
- OP.Subscribe($"{Module}.{Name}.SetState", (out string reason, int time, object[] param) => {
- reason = string.Empty;
- Position pos = Position.Invalid;
- if ((string)param[0] == "Up")
- pos = Position.position1;
- else if ((string)param[0] == "Down")
- pos = Position.position3;
- else if ((string)param[0] == "Middle")
- pos = Position.position2;
- else
- {
- reason = "Invalid moving position";
- return false;
- }
- GoPosition(pos);
- return true;
- });
- OP.Subscribe($"{Module}.{Name}.Stop", (out string reason, int time, object[] param) => {
- reason = string.Empty;
- ManulStop();
- return true;
- });
- OP.Subscribe($"{Module}.{Name}.Up", (out string reason, int time, object[] param) => {
- reason = string.Empty;
- ManulUp();
- return true;
- });
- OP.Subscribe($"{Module}.{Name}.Down", (out string reason, int time, object[] param) => {
- reason = string.Empty;
- ManulDown();
- return true;
- });
- OP.Subscribe($"{Module}.{Name}.Home", (out string reason, int time, object[] param) => {
- reason = string.Empty;
- GoPosition(Position.origin);
- return true;
- });
- OP.Subscribe($"{Module}.{Name}.UpdateConfig", (out string reason, int time, object[] param) => {
- reason = string.Empty;
- return true;
- });
- updatePinCfg();
- return true;
- }
- public void Terminate()
- {
- }
- public void Monitor()
- {
- if (_manualStopTimer.ElapsedMilliseconds > _stopButtonAutoResetTime)
- {
- _doStop.Value = false;
- _manualStopTimer.Stop();
- }
- if (_diBatteryLowAlarm.Value)
- {
- NoDuplicatedAlarm($"Lift Pin DI-{_diBatteryLowAlarm.Index} alarm");
- }
- if (_diCOMMAlarm.Value)
- {
- NoDuplicatedAlarm($"Lift Pin DI-{_diCOMMAlarm.Index} alarm");
- }
- if (_currentTarget == Position.Invalid)
- return;
- if ((_currentTarget == Position.position1 && _diP1.Value) ||
- (_currentTarget == Position.position2 && _diP2.Value) ||
- (_currentTarget == Position.position3 && _diP3.Value) ||
- (_currentTarget == Position.origin && _diOrigin.Value))
- {
- EV.PostInfoLog(Module, $"Lift Pin arrive {_currentTarget}");
- Reset();
- return;
- }
- if (sw.ElapsedMilliseconds > _timeout)
- {
- NoDuplicatedAlarm($"Lift Pin timeout, go {_currentTarget} failed");
- }
- }
- public void Reset()
- {
- _currentTarget = Position.Invalid;
- sw.Reset();
- _doP1.Value = false;
- _doP2.Value = false;
- _doP3.Value = false;
- _doOrigin.Value = false;
- _doUp.Value = false;
- _doDown.Value = false;
- _doStop.Value = false;
- _bAlarmReported = false;
- EV.PostInfoLog(Module, $"Lift Pin reset all do to off.");
- }
- private void NoDuplicatedAlarm(string log)
- {
- if (_bAlarmReported == false)
- {
- EV.PostAlarmLog(Module, log);
- _bAlarmReported = true;
- }
- }
- }
- }
|