TotalReservoirDevice.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.OperationCenter;
  3. using Aitex.Core.Util;
  4. using MECF.Framework.Common.CommonData;
  5. using MECF.Framework.Common.Device.PowerSupplier;
  6. using MECF.Framework.Common.Device.Rinse;
  7. using MECF.Framework.Common.TwinCat;
  8. using CyberX8_RT.Devices.Metal;
  9. using CyberX8_RT.Devices.PowerSupplier;
  10. using CyberX8_RT.Devices.PUF;
  11. using System;
  12. using System.Collections.Generic;
  13. using System.Diagnostics.PerformanceData;
  14. using System.Linq;
  15. using System.Reflection;
  16. using System.Text;
  17. using System.Threading.Tasks;
  18. using MECF.Framework.Common.ToolLayout;
  19. using CyberX8_RT.Modules.Reservoir;
  20. using CyberX8_RT.Modules;
  21. using CyberX8_RT.Devices.Reservoir;
  22. using MECF.Framework.Common.IOCore;
  23. namespace CyberX8_RT.Devices.Reservoir
  24. {
  25. public class TotalReservoirDevice : BaseDevice, IDevice
  26. {
  27. #region 常量
  28. private const string DIREPLEN_FLOW = "DiReplenFlow";
  29. private const string COUNTER_VALUE = "CounterValue";
  30. private const string COUNTER_START = "Start";
  31. private const string COUNTER_STOP = "Stop";
  32. private const string COUNTER_RESET = "Reset";
  33. private const string EVAPORATOR_LEVEL = "EvaporatorLevel";
  34. private const string HIGH_LEVEL = "HighLevel";
  35. private const string STRATUS = "Stratus";
  36. #endregion
  37. #region 内部变量
  38. /// <summary>
  39. /// Di Replen Flow
  40. /// </summary>
  41. private CounterFlowData _diReplenFlow = new CounterFlowData();
  42. /// <summary>
  43. /// High Level
  44. /// </summary>
  45. private bool _highLevel;
  46. /// <summary>
  47. /// Evaporator Level
  48. /// </summary>
  49. private bool _evaporatorLevel;
  50. /// <summary>
  51. /// Counter字典
  52. /// </summary>
  53. private Dictionary<string, CounterFlowData> _nameCounterFlowData = new Dictionary<string, CounterFlowData>();
  54. /// <summary>
  55. /// 定时器
  56. /// </summary>
  57. private PeriodicJob _period;
  58. #endregion
  59. #region 属性
  60. /// <summary>
  61. /// Di Replen Flow
  62. /// </summary>
  63. private CounterFlowData DiReplenFlow { get { return _diReplenFlow; } }
  64. /// <summary>
  65. /// High Level
  66. /// </summary>
  67. public bool HighLevel { get { return _highLevel; } }
  68. /// <summary>
  69. /// Evaporator Level
  70. /// </summary>
  71. public bool EvaporatorLevel { get { return _evaporatorLevel; } }
  72. #endregion
  73. /// <summary>
  74. /// 构造函数
  75. /// </summary>
  76. /// <param name="moduleName"></param>
  77. /// <param name="name"></param>
  78. public TotalReservoirDevice() : base("Reservoir", "Reservoir", "Reservoir", "Reservoir")
  79. {
  80. _period = new PeriodicJob(500, OnTimer, "Reservoir.OnTimer", true, true);
  81. }
  82. /// <summary>
  83. /// 初始化
  84. /// </summary>
  85. /// <returns></returns>
  86. public bool Initialize()
  87. {
  88. InitializeParameter();
  89. SubscribeValueAction();
  90. InitializeOperation();
  91. return true;
  92. }
  93. /// <summary>
  94. /// 加载参数
  95. /// </summary>
  96. private void InitializeParameter()
  97. {
  98. }
  99. /// <summary>
  100. /// 初始化操作
  101. /// </summary>
  102. private void InitializeOperation()
  103. {
  104. }
  105. /// <summary>
  106. /// 订阅变量数值发生变化
  107. /// </summary>
  108. private void SubscribeValueAction()
  109. {
  110. BeckhoffCounterSubscribeUpdateVariable(DIREPLEN_FLOW, DiReplenFlow);
  111. BeckhoffIoSubscribeUpdateVariable(EVAPORATOR_LEVEL);
  112. BeckhoffIoSubscribeUpdateVariable(HIGH_LEVEL);
  113. }
  114. /// <summary>
  115. /// 订阅Counter变量
  116. /// </summary>
  117. /// <param name="variable"></param>
  118. private void BeckhoffCounterSubscribeUpdateVariable(string variable, CounterFlowData counterFlowData)
  119. {
  120. _nameCounterFlowData[$"{Module}.{variable}"] = counterFlowData;
  121. BeckhoffCounterManager.Instance.SubscribeModuleVariable($"{Module}.{variable}", COUNTER_VALUE, UpdateCounterVariableValue);
  122. BeckhoffCounterManager.Instance.SubscribeModuleVariable($"{Module}.{variable}", COUNTER_START, UpdateCounterVariableValue);
  123. BeckhoffCounterManager.Instance.SubscribeModuleVariable($"{Module}.{variable}", COUNTER_STOP, UpdateCounterVariableValue);
  124. BeckhoffCounterManager.Instance.SubscribeModuleVariable($"{Module}.{variable}", COUNTER_RESET, UpdateCounterVariableValue);
  125. }
  126. /// <summary>
  127. /// 订阅IO变量
  128. /// </summary>
  129. /// <param name="variable"></param>
  130. private void BeckhoffIoSubscribeUpdateVariable(string variable)
  131. {
  132. IOModuleManager.Instance.SubscribeModuleVariable(Module, variable, UpdateIOVariableValue);
  133. }
  134. /// <summary>
  135. /// 更新变量数值
  136. /// </summary>
  137. /// <param name="variable"></param>
  138. /// <param name="value"></param>
  139. private void UpdateIOVariableValue(string variable, object value)
  140. {
  141. if (variable == HIGH_LEVEL)
  142. {
  143. _highLevel = (bool)value;
  144. }
  145. else if (variable == EVAPORATOR_LEVEL)
  146. {
  147. _evaporatorLevel = (bool)value;
  148. }
  149. }
  150. /// <summary>
  151. /// 更新变量数值
  152. /// </summary>
  153. /// <param name="variable"></param>
  154. /// <param name="value"></param>
  155. private void UpdateCounterVariableValue(string variable, object value)
  156. {
  157. string[] strAry = variable.Split('.');
  158. string lastVariable = strAry[strAry.Length - 1];
  159. PropertyInfo property = null;
  160. string key = variable.Replace($".{lastVariable}", "");
  161. if (_nameCounterFlowData.ContainsKey(key))
  162. {
  163. CounterFlowData counterFlowData = _nameCounterFlowData[key];
  164. property = counterFlowData.GetType().GetProperty(lastVariable);
  165. if (property != null)
  166. {
  167. property.SetValue(counterFlowData, value);
  168. }
  169. }
  170. }
  171. /// <summary>
  172. /// 定时器
  173. /// </summary>
  174. /// <returns></returns>
  175. private bool OnTimer()
  176. {
  177. List<string> reservoirs = ReservoirItemManager.Instance.InstalledModules;
  178. foreach (string module in reservoirs)
  179. {
  180. ReservoirItem reservoirItem = ReservoirItemManager.Instance.GetReservoirItem(module);
  181. ReservoirEntity reservoirEntity = Singleton<RouteManager>.Instance.GetModule<ReservoirEntity>(module);
  182. if (reservoirEntity != null && !reservoirEntity.IsError)
  183. {
  184. if (reservoirItem.SubType == STRATUS)
  185. {
  186. StandardHotReservoirDevice reservoirDevice = DEVICE.GetDevice<StandardHotReservoirDevice>(module);
  187. if (reservoirDevice.IsDireplenOn)
  188. {
  189. break;
  190. }
  191. if (reservoirDevice.NeedAutoDireplen && !reservoirDevice.IsDireplenOn)
  192. {
  193. reservoirDevice.AutoDireplen();
  194. }
  195. }
  196. }
  197. else
  198. {
  199. continue;
  200. }
  201. }
  202. return true;
  203. }
  204. public void Monitor()
  205. {
  206. }
  207. public void Reset()
  208. {
  209. }
  210. public void Terminate()
  211. {
  212. _period.Stop(false);
  213. }
  214. }
  215. }