StandardHotReservoirsViewModel.cs 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168
  1. using MECF.Framework.Common.CommonData.Metal;
  2. using MECF.Framework.Common.CommonData.Reservoir;
  3. using MECF.Framework.Common.DataCenter;
  4. using MECF.Framework.Common.OperationCenter;
  5. using MECF.Framework.Common.Persistent.Reservoirs;
  6. using MECF.Framework.Common.RecipeCenter;
  7. using MECF.Framework.Common.Utilities;
  8. using CyberX8_Core;
  9. using CyberX8_MainPages.PMs;
  10. using Prism.Commands;
  11. using Prism.Mvvm;
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Collections.ObjectModel;
  15. using System.Windows.Input;
  16. using System.Windows.Threading;
  17. using MECF.Framework.Common.CommonData.TemperatureControl;
  18. using MECF.Framework.Common.CommonData.PowerSupplier;
  19. using MECF.Framework.Common.Device.Safety;
  20. using MECF.Framework.Common.ProcessCell;
  21. namespace CyberX8_MainPages.ViewModels
  22. {
  23. public class StandardHotReservoirsViewModel : BindableBase
  24. {
  25. #region 常量
  26. private const string RESERVOIRS_DATA = "ReservoirsData";
  27. private const string RESERVOIRS = "reservoirs";
  28. private const string PERSISTENT_VALUE = "PersistentValue";
  29. private const string METALDEVICEDATA = "MetalDeviceData";
  30. private const string RESERVOIRDEVICEDATA = "ReservoirDeviceData";
  31. private const string REPLEN_PERSISTENT_VALUE = "ReplenPersistentValue";
  32. #endregion
  33. #region 内部变量
  34. #region system
  35. /// <summary>
  36. /// rt查询key
  37. /// </summary>
  38. private List<string> _rtDataKeys = new List<string>();
  39. /// <summary>
  40. /// 时钟
  41. /// </summary>
  42. DispatcherTimer _timer;
  43. /// <summary>
  44. /// rt查询数据
  45. /// </summary>
  46. private Dictionary<string, object> _rtDataValueDic = new Dictionary<string, object>();
  47. #endregion
  48. #region Common
  49. /// <summary>
  50. /// 是否为调速泵
  51. /// </summary>
  52. private bool _isRegulatePump;
  53. /// <summary>
  54. /// 泵速
  55. /// </summary>
  56. private int _pumpSpeed;
  57. private double _avgLevel;
  58. /// <summary>
  59. /// Module
  60. /// </summary>
  61. private string _module;
  62. /// <summary>
  63. /// Operation Mode
  64. /// </summary>
  65. private string _operatingMode;
  66. /// <summary>
  67. /// 状态
  68. /// </summary>
  69. private string _state;
  70. /// <summary>
  71. /// Reservoirs Persistent数据
  72. /// </summary>
  73. private ReservoirsPersistentValue _reservoirsPersistent;
  74. /// <summary>
  75. /// Reservoir数据
  76. /// </summary>
  77. private StandardHotReservoirData _reservoirData;
  78. /// <summary>
  79. /// Metal数据集合
  80. /// </summary>
  81. private ObservableCollection<StandardHotMetalDeviceData> _metalDataCollection = new ObservableCollection<StandardHotMetalDeviceData>();
  82. /// <summary>
  83. /// CellModuleName集合
  84. /// </summary>
  85. private ObservableCollection<string> _cellModuleNameCollection = new ObservableCollection<string>();
  86. /// <summary>
  87. /// CellModuleSignal集合
  88. /// </summary>
  89. private ObservableCollection<bool> _cellModuleSignalPump = new ObservableCollection<bool>();
  90. /// <summary>
  91. /// Cells数量
  92. /// </summary>
  93. private int _cellsCount;
  94. /// <summary>
  95. /// 手动注水时长(秒)
  96. /// </summary>
  97. private int _manualFillSeconds;
  98. /// <summary>
  99. /// 是否正在手动注水
  100. /// </summary>
  101. private bool _isManualReplen;
  102. /// <summary>
  103. /// DIValveMaxOnTime
  104. /// </summary>
  105. private double _diValveMaxOnTime;
  106. /// <summary>
  107. /// 是否超过PH值下限
  108. /// </summary>
  109. private bool _isPHLowLimit;
  110. /// <summary>
  111. /// 是否超过PH值下限
  112. /// </summary>
  113. private bool _isPHHighLimit;
  114. /// <summary>
  115. /// TemperatureControl Module Name
  116. /// </summary>
  117. private TemperatureControllerData _temperatureControlData;
  118. /// <summary>
  119. /// PowerSupply Module Name
  120. /// </summary>
  121. private PowerSupplierData _cmmPowerSupplierData;
  122. /// <summary>
  123. /// 是否超过HighLevel
  124. /// </summary>
  125. private bool _isHighLevel;
  126. /// <summary>
  127. /// 是否超过LowLevel
  128. /// </summary>
  129. private bool _isLowLevel;
  130. /// <summary>
  131. /// 是否触发highsafety
  132. /// </summary>
  133. private bool _isHighSafety;
  134. /// <summary>
  135. /// HED Flow
  136. /// </summary>
  137. private bool _hedFlowIsOn;
  138. /// <summary>
  139. /// DiReplen是否报错
  140. /// </summary>
  141. private bool _isDiReplenFault;
  142. /// <summary>
  143. /// Safety Data
  144. /// </summary>
  145. private SafetyData _safetyData;
  146. /// <summary>
  147. /// 页面功能启用
  148. /// </summary>
  149. private bool _isEnabled;
  150. /// <summary>
  151. /// AutoMode页面功能启用
  152. /// </summary>
  153. private bool _isAutoEnabled;
  154. /// <summary>
  155. /// DosingSystem是否启用
  156. /// </summary>
  157. private bool _isDosingSystemEnabled;
  158. /// <summary>
  159. /// TC Enable状态
  160. /// </summary>
  161. private string _tcEnableStatus;
  162. /// <summary>
  163. /// 是否error状态
  164. /// </summary>
  165. private bool _isError;
  166. #endregion
  167. #region Recipe
  168. /// <summary>
  169. /// 当前的recipe
  170. /// </summary>
  171. private ResRecipe _currentRecipe;
  172. /// <summary>
  173. /// Recipe Mode
  174. /// </summary>
  175. private string _recipeMode;
  176. /// <summary>
  177. /// Selected Recipe Node
  178. /// </summary>
  179. private RecipeNode _selectedRecipeNode;
  180. /// <summary>
  181. /// Recipe Type
  182. /// </summary>
  183. private string _recipeType;
  184. /// <summary>
  185. /// Recipe Manager
  186. /// </summary>
  187. private UiRecipeManager _uiRecipeManager = new UiRecipeManager();
  188. #endregion
  189. #region CMM
  190. /// <summary>
  191. /// Flow High 状态(Warning:黄色,Error:红色)
  192. /// </summary>
  193. private string _flowHighStatus = "";
  194. /// <summary>
  195. /// Flow Low 状态(Warning:黄色,Error:红色)
  196. /// </summary>
  197. private string _flowLowStatus = "";
  198. /// <summary>
  199. /// PowerSupplier High电流状态
  200. /// </summary>
  201. private string _currentHighStatus = "";
  202. /// <summary>
  203. /// PowerSupplier Low电流状态
  204. /// </summary>
  205. private string _currentLowStatus = "";
  206. /// <summary>
  207. /// 是否低于最小电压
  208. /// </summary>
  209. private bool _isBelowMinVoltage = false;
  210. /// <summary>
  211. /// CMM Anode AHrs
  212. /// </summary>
  213. private double _reservoirCMMAnodeAHrs;
  214. /// <summary>
  215. /// CMM Cathode AHrs
  216. /// </summary>
  217. private double _reservoirCMMCathodeAHrs;
  218. /// <summary>
  219. /// CMM Anode用电量
  220. /// </summary>
  221. private double _cmmAnodeUsage;
  222. /// <summary>
  223. /// CMM Cathode用电量
  224. /// </summary>
  225. private double _cmmCathodeUsage;
  226. /// <summary>
  227. /// CMM Flow High Warning
  228. /// </summary>
  229. private double _reservoirCMMFlowHighWarning;
  230. /// <summary>
  231. /// CMM Flow High Error
  232. /// </summary>
  233. private double _reservoirCMMFlowHighError;
  234. /// <summary>
  235. /// CMM Flow Low Warning
  236. /// </summary>
  237. private double _reservoirCMMFlowLowWarning;
  238. /// <summary>
  239. /// CMM Flow Low Error
  240. /// </summary>
  241. private double _reservoirCMMFlowLowError;
  242. /// <summary>
  243. /// CMM Anode LifeTime AHrs
  244. /// </summary>
  245. private double _reservoirCMMAnodeLifeTimeAHrs;
  246. /// <summary>
  247. /// CMM Cathode LifeTime AHrs
  248. /// </summary>
  249. private double _reservoirCMMCathodeLifeTimeAHrs;
  250. /// <summary>
  251. /// HighLevel
  252. /// </summary>
  253. private double _reservoirHighLevel;
  254. /// <summary>
  255. /// LowLevel
  256. /// </summary>
  257. private double _reservoirLowLevel;
  258. /// <summary>
  259. /// CMM电量limit
  260. /// </summary>
  261. private double _cmmAnodeTotalAmpHoursWarningLimit;
  262. private double _cmmAnodeTotalAmpHoursFaultLimit;
  263. private double _cmmCathodeTotalAmpHoursWarningLimit;
  264. private double _cmmCathodeTotalAmpHoursFaultLimit;
  265. /// <summary>
  266. /// CMM电量报警灯
  267. /// </summary>
  268. private bool _isCMMAnodeTotalAmpHoursWarning;
  269. private bool _isCMMAnodeTotalAmpHoursFault;
  270. private bool _isCMMCathodeTotalAmpHoursWarning;
  271. private bool _isCMMCathodeTotalAmpHoursFault;
  272. #endregion
  273. #endregion
  274. #region 属性
  275. #region Common
  276. public double AvgLevel
  277. {
  278. get { return _avgLevel; }
  279. set { SetProperty(ref _avgLevel, value); }
  280. }
  281. /// <summary>
  282. /// Module
  283. /// </summary>
  284. public string Module
  285. {
  286. get { return _module; }
  287. set { SetProperty(ref _module, value); }
  288. }
  289. /// <summary>
  290. /// Operation Mode
  291. /// </summary>
  292. public string OperatingMode
  293. {
  294. get { return _operatingMode; }
  295. set { SetProperty(ref _operatingMode, value); }
  296. }
  297. /// <summary>
  298. /// 状态
  299. /// </summary>
  300. public string State
  301. {
  302. get { return _state; }
  303. set { SetProperty(ref _state, value); }
  304. }
  305. /// <summary>
  306. /// Reservoirs Persistent数据
  307. /// </summary>
  308. public ReservoirsPersistentValue ReservoirsPersistent
  309. {
  310. get { return _reservoirsPersistent; }
  311. set { SetProperty(ref _reservoirsPersistent, value); }
  312. }
  313. /// <summary>
  314. /// Reservoir数据
  315. /// </summary>
  316. public StandardHotReservoirData ReservoirData
  317. {
  318. get { return _reservoirData; }
  319. set { SetProperty(ref _reservoirData, value); }
  320. }
  321. /// <summary>
  322. /// Metal数据集合
  323. /// </summary>
  324. public ObservableCollection<StandardHotMetalDeviceData> MetalDataCollection
  325. {
  326. get { return _metalDataCollection; }
  327. set { SetProperty(ref _metalDataCollection, value); }
  328. }
  329. /// <summary>
  330. /// CellModuleName集合
  331. /// </summary>
  332. public ObservableCollection<string> CellModuleNameCollection
  333. {
  334. get { return _cellModuleNameCollection; }
  335. set { SetProperty(ref _cellModuleNameCollection, value); }
  336. }
  337. /// <summary>
  338. /// CellModuleSignalPump集合
  339. /// </summary>
  340. public ObservableCollection<bool> CellModuleSignalPump
  341. {
  342. get { return _cellModuleSignalPump; }
  343. set { SetProperty(ref _cellModuleSignalPump, value); }
  344. }
  345. /// <summary>
  346. /// Cells数量
  347. /// </summary>
  348. public int CellsCount
  349. {
  350. get { return _cellsCount; }
  351. set { SetProperty(ref _cellsCount, value); }
  352. }
  353. /// <summary>
  354. /// 是否超过PH值下限
  355. /// </summary>
  356. public bool IsPHLowLimit
  357. {
  358. get { return _isPHLowLimit; }
  359. set { SetProperty(ref _isPHLowLimit, value); }
  360. }
  361. /// <summary>
  362. /// 是否超过PH值下限
  363. /// </summary>
  364. public bool IsPHHighLimit
  365. {
  366. get { return _isPHHighLimit; }
  367. set { SetProperty(ref _isPHHighLimit, value); }
  368. }
  369. /// <summary>
  370. /// 手动注水时长(秒)
  371. /// </summary>
  372. public int ManualFillSeconds
  373. {
  374. get { return _manualFillSeconds; }
  375. set { SetProperty(ref _manualFillSeconds, value); }
  376. }
  377. /// <summary>
  378. /// 是否正在手动注水
  379. /// </summary>
  380. public bool IsManualReplen
  381. {
  382. get { return _isManualReplen; }
  383. set { SetProperty(ref _isManualReplen, value); }
  384. }
  385. /// <summary>
  386. /// DIValveMaxOnTime
  387. /// </summary>
  388. public double DIValveMaxOnTime
  389. {
  390. get { return _diValveMaxOnTime; }
  391. set { SetProperty(ref _diValveMaxOnTime, value);}
  392. }
  393. /// <summary>
  394. /// TemperatureControl Module Name
  395. /// </summary>
  396. public TemperatureControllerData TemperatureControlData
  397. {
  398. get { return _temperatureControlData; }
  399. set { SetProperty(ref _temperatureControlData, value); }
  400. }
  401. /// <summary>
  402. /// PowerSupply Module Name
  403. /// </summary>
  404. public PowerSupplierData CmmPowerSupplierData
  405. {
  406. get { return _cmmPowerSupplierData; }
  407. set { SetProperty(ref _cmmPowerSupplierData, value); }
  408. }
  409. /// <summary>
  410. /// 是否超过HighLevel
  411. /// </summary>
  412. public bool IsHighLevel
  413. {
  414. get { return _isHighLevel; }
  415. set { SetProperty(ref _isHighLevel, value); }
  416. }
  417. /// <summary>
  418. /// 是否超过LowLevel
  419. /// </summary>
  420. public bool IsLowLevel
  421. {
  422. get { return _isLowLevel; }
  423. set { SetProperty(ref _isLowLevel, value); }
  424. }
  425. /// <summary>
  426. /// 是否触发Highsafety
  427. /// </summary>
  428. public bool IsHighSafety
  429. {
  430. get { return _isHighSafety; }
  431. set { SetProperty(ref _isHighSafety, value); }
  432. }
  433. /// <summary>
  434. /// HED Flow
  435. /// </summary>
  436. public bool HEDFlowIsOn
  437. {
  438. get { return _hedFlowIsOn; }
  439. set { SetProperty(ref _hedFlowIsOn, value); }
  440. }
  441. /// <summary>
  442. /// DI Replen是否报错
  443. /// </summary>
  444. public bool IsDiReplenFault
  445. {
  446. get { return _isDiReplenFault; }
  447. set { SetProperty(ref _hedFlowIsOn, value); }
  448. }
  449. /// <summary>
  450. /// Safety数据
  451. /// </summary>
  452. public SafetyData CommonSafetyData
  453. {
  454. get { return _safetyData; }
  455. set { SetProperty(ref _safetyData, value); }
  456. }
  457. /// <summary>
  458. /// 页面功能启用
  459. /// </summary>
  460. public bool IsEnabled
  461. {
  462. get { return _isEnabled; }
  463. set { SetProperty(ref _isEnabled, value); }
  464. }
  465. /// <summary>
  466. /// AutoMode页面功能启用
  467. /// </summary>
  468. public bool IsAutoEnabled
  469. {
  470. get { return _isAutoEnabled; }
  471. set { SetProperty(ref _isAutoEnabled, value); }
  472. }
  473. /// <summary>
  474. /// DosingSystem是否启用
  475. /// </summary>
  476. public bool IsDosingSystemEnabled
  477. {
  478. get { return _isDosingSystemEnabled; }
  479. set { SetProperty(ref _isDosingSystemEnabled, value); }
  480. }
  481. /// <summary>
  482. /// TC Enable状态
  483. /// </summary>
  484. public string TCEnableStatus
  485. {
  486. get { return _tcEnableStatus; }
  487. set { SetProperty(ref _tcEnableStatus, value); }
  488. }
  489. /// <summary>
  490. /// 是否Error
  491. /// </summary>
  492. public bool IsError
  493. {
  494. get { return _isError; }
  495. set { SetProperty(ref _isError, value); }
  496. }
  497. /// <summary>
  498. /// 是否为调速泵
  499. /// </summary>
  500. public bool IsRegulatePump
  501. {
  502. get { return _isRegulatePump; }
  503. set { SetProperty(ref _isRegulatePump, value); }
  504. }
  505. /// <summary>
  506. /// 泵速
  507. /// </summary>
  508. public int PumpSpeed
  509. {
  510. get { return _pumpSpeed; }
  511. set { SetProperty(ref _pumpSpeed, value); }
  512. }
  513. #endregion
  514. #region Recipe
  515. /// <summary>
  516. /// Recipe内容
  517. /// </summary>
  518. public ResRecipe CurrentRecipe
  519. {
  520. get { return _currentRecipe; }
  521. set { SetProperty(ref _currentRecipe, value); }
  522. }
  523. /// <summary>
  524. /// Selected Recipe Node
  525. /// </summary>
  526. public RecipeNode SelectedRecipeNode
  527. {
  528. get { return _selectedRecipeNode; }
  529. set { SetProperty(ref _selectedRecipeNode, value); }
  530. }
  531. /// <summary>
  532. /// Recipe Mode
  533. /// </summary>
  534. public string RecipeMode
  535. {
  536. get { return _recipeMode; }
  537. set { SetProperty(ref _recipeMode, value); }
  538. }
  539. /// <summary>
  540. /// Recipe Type
  541. /// </summary>
  542. public string RecipeType
  543. {
  544. get { return _recipeType; }
  545. set { SetProperty(ref _recipeType, value); }
  546. }
  547. #endregion
  548. #region CMM
  549. /// <summary>
  550. /// Flow High 状态(Warning:黄色,Error:红色)
  551. /// </summary>
  552. public string FlowHighStatus
  553. {
  554. get { return _flowHighStatus; }
  555. set { SetProperty(ref _flowHighStatus, value); }
  556. }
  557. /// <summary>
  558. /// Flow Low 状态(Warning:黄色,Error:红色)
  559. /// </summary>
  560. public string FlowLowStatus
  561. {
  562. get { return _flowLowStatus; }
  563. set { SetProperty(ref _flowLowStatus, value); }
  564. }
  565. /// <summary>
  566. /// PowerSupplier High电流状态
  567. /// </summary>
  568. public string CurrentHighStatus
  569. {
  570. get { return _currentHighStatus; }
  571. set { SetProperty(ref _currentHighStatus, value); }
  572. }
  573. /// <summary>
  574. /// PowerSupplier Low电流状态
  575. /// </summary>
  576. public string CurrentLowStatus
  577. {
  578. get { return _currentLowStatus; }
  579. set { SetProperty(ref _currentLowStatus, value); }
  580. }
  581. /// <summary>
  582. /// 是否低于最小电压
  583. /// </summary>
  584. public bool IsBelowMinVoltage
  585. {
  586. get { return _isBelowMinVoltage; }
  587. set { SetProperty(ref _isBelowMinVoltage, value); }
  588. }
  589. /// <summary>
  590. /// CMM Anode 用电量
  591. /// </summary>
  592. public double CMMAnodeAHrs
  593. {
  594. get { return _reservoirCMMAnodeAHrs; ; }
  595. set { SetProperty(ref _reservoirCMMAnodeAHrs, value); }
  596. }
  597. /// <summary>
  598. /// CMM Cathode 用电量
  599. /// </summary>
  600. public double CMMCathodeAHrs
  601. {
  602. get { return _reservoirCMMCathodeAHrs; ; }
  603. set { SetProperty(ref _reservoirCMMCathodeAHrs, value); }
  604. }
  605. #endregion
  606. #region Config
  607. /// <summary>
  608. /// CMM Anode LifeTime用电量
  609. /// </summary>
  610. public double CMMAnodeLifeTimeAHrs
  611. {
  612. get { return _reservoirCMMAnodeLifeTimeAHrs; ; }
  613. set { SetProperty(ref _reservoirCMMAnodeLifeTimeAHrs, value); }
  614. }
  615. /// <summary>
  616. /// CMM Cathode LifeTime用电量
  617. /// </summary>
  618. public double CMMCathodeLifeTimeAHrs
  619. {
  620. get { return _reservoirCMMCathodeLifeTimeAHrs; ; }
  621. set { SetProperty(ref _reservoirCMMCathodeLifeTimeAHrs, value); }
  622. }
  623. /// <summary>
  624. /// CMM Anode用电量
  625. /// </summary>
  626. public double CMMAnodeUsage
  627. {
  628. get { return _cmmAnodeUsage; ; }
  629. set { SetProperty(ref _cmmAnodeUsage, value); }
  630. }
  631. /// <summary>
  632. /// CMM Cathode用电量
  633. /// </summary>
  634. public double CMMCathodeUsage
  635. {
  636. get { return _cmmCathodeUsage; ; }
  637. set { SetProperty(ref _cmmCathodeUsage, value); }
  638. }
  639. /// <summary>
  640. /// CMM电量报警灯
  641. /// </summary>
  642. public bool IsCMMAnodeTotalAmpHoursWarning
  643. {
  644. get { return _isCMMAnodeTotalAmpHoursWarning; }
  645. set { SetProperty(ref _isCMMAnodeTotalAmpHoursWarning, value); }
  646. }
  647. public bool IsCMMAnodeTotalAmpHoursFault
  648. {
  649. get { return _isCMMAnodeTotalAmpHoursFault; }
  650. set { SetProperty(ref _isCMMAnodeTotalAmpHoursFault, value); }
  651. }
  652. public bool IsCMMCathodeTotalAmpHoursWarning
  653. {
  654. get { return _isCMMCathodeTotalAmpHoursWarning; }
  655. set { SetProperty(ref _isCMMCathodeTotalAmpHoursWarning, value); }
  656. }
  657. public bool IsCMMCathodeTotalAmpHoursFault
  658. {
  659. get { return _isCMMCathodeTotalAmpHoursFault; }
  660. set { SetProperty(ref _isCMMCathodeTotalAmpHoursFault, value); }
  661. }
  662. #endregion
  663. #endregion
  664. #region 命令
  665. public ICommand InitializeCommand { get; set; }
  666. public ICommand OpenDIReplenValveCommand { get; set; }
  667. public ICommand CloseDIReplenValveCommand { get; set; }
  668. public ICommand OpenCellFlow1Command { get; set; }
  669. public ICommand OpenCellBypass1Command { get; set; }
  670. public ICommand OpenCellFlow2Command { get; set; }
  671. public ICommand OpenCellBypass2Command { get; set; }
  672. public ICommand OpenClampValve1Command { get; set; }
  673. public ICommand CloseClampValve1Command { get; set; }
  674. public ICommand OpenClampValve2Command { get; set; }
  675. public ICommand CloseClampValve2Command { get; set; }
  676. public ICommand ManualDireplenCommand { get; set; }
  677. public ICommand ResetTotalCommand { get; set; }
  678. public ICommand GotoPMCounterCommand { get; set; }
  679. public ICommand JumpDosingSystemCommand { get; set; }
  680. public ICommand HedPowerOnCommand { get; set; }
  681. public ICommand HedPowerOffCommand { get; set; }
  682. public ICommand ResPowerOnCommand { get; set; }
  683. public ICommand ResPowerOffCommand { get; set; }
  684. public ICommand PumpSpeedCommand { get; set; }
  685. #endregion
  686. /// <summary>
  687. /// 构造函数
  688. /// </summary>
  689. public StandardHotReservoirsViewModel()
  690. {
  691. InitializeCommand = new DelegateCommand<object>(InitializeAction);
  692. OpenDIReplenValveCommand = new DelegateCommand<object>(OnOpenDIReplenValve);
  693. CloseDIReplenValveCommand = new DelegateCommand<object>(OnCloseDIReplenValve);
  694. OpenCellFlow1Command = new DelegateCommand<object>(OnCellFlow1);
  695. OpenCellBypass1Command = new DelegateCommand<object>(OnCellBypass1);
  696. OpenCellFlow2Command = new DelegateCommand<object>(OnCellFlow2);
  697. OpenCellBypass2Command = new DelegateCommand<object>(OnCellBypass2);
  698. OpenClampValve1Command = new DelegateCommand<object>(OnOpenClampValve1);
  699. CloseClampValve1Command = new DelegateCommand<object>(OnCloseClampValve1);
  700. OpenClampValve2Command = new DelegateCommand<object>(OnOpenClampValve2);
  701. CloseClampValve2Command = new DelegateCommand<object>(OnCloseClampValve2);
  702. ManualDireplenCommand = new DelegateCommand<object>(ManualDireplenAction);
  703. ResetTotalCommand = new DelegateCommand(ResetTotalAction);
  704. GotoPMCounterCommand = new DelegateCommand<object>(GotoPMCounterAction);
  705. JumpDosingSystemCommand = new DelegateCommand<object>(JumpDosingSystemAction);
  706. HedPowerOnCommand = new DelegateCommand<object>(HedPowerOnAction);
  707. HedPowerOffCommand = new DelegateCommand<object>(HedPowerOffAction);
  708. ResPowerOnCommand = new DelegateCommand<object>(ResPowerOnAction);
  709. ResPowerOffCommand = new DelegateCommand<object>(ResPowerOffAction);
  710. PumpSpeedCommand = new DelegateCommand<object>(PumpSpeedAction);
  711. }
  712. /// <summary>
  713. /// 加载数据
  714. /// </summary>
  715. public void LoadData(string systemName)
  716. {
  717. RecipeType = "res";
  718. Module = systemName;
  719. _rtDataKeys.Clear();
  720. _rtDataKeys.Add($"{Module}.Metals");
  721. _rtDataKeys.Add($"{Module}.ReplenType");
  722. Dictionary<string,object> tmpMetals = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  723. if (tmpMetals != null)
  724. {
  725. string replenType = CommonFunction.GetValue<string>(tmpMetals, $"{Module}.ReplenType");
  726. IsDosingSystemEnabled = replenType != "" ? true : false;
  727. List<string> strMetals = CommonFunction.GetValue<List<string>>(tmpMetals, $"{Module}.Metals");
  728. CellsCount = strMetals.Count;
  729. if(strMetals!=null&& CellsCount>= 1)
  730. {
  731. CellModuleNameCollection.Clear();
  732. MetalDataCollection.Clear();
  733. CellModuleSignalPump.Clear();
  734. for (int i = 0; i < CellsCount; i++)
  735. {
  736. string metal=strMetals[i];
  737. if (!string.IsNullOrEmpty(metal))
  738. {
  739. CellModuleNameCollection.Add(metal);
  740. _rtDataKeys.Add($"{metal}.MetalData");
  741. _rtDataKeys.Add($"{metal}.IsSingalPump");
  742. }
  743. MetalDataCollection.Add(new StandardHotMetalDeviceData());
  744. CellModuleSignalPump.Add(false);
  745. }
  746. }
  747. }
  748. _rtDataKeys.Add($"{Module}.ReservoirData");
  749. _rtDataKeys.Add($"{Module}.PersistentValue");
  750. _rtDataKeys.Add($"{Module}.IsManualReplen");
  751. _rtDataKeys.Add($"{Module}.DIValveMaxOnTime");
  752. _rtDataKeys.Add($"{Module}.CurrentRecipe");
  753. _rtDataKeys.Add($"{Module}.TemperatureControllerData");
  754. _rtDataKeys.Add($"{Module}.CmmPowerSupplierData");
  755. _rtDataKeys.Add($"{Module}.FsmState");
  756. _rtDataKeys.Add($"{Module}.ReservoirAverageLevel");
  757. _rtDataKeys.Add($"{Module}.ReservoirUsage");
  758. _rtDataKeys.Add($"{Module}.PumpSpeed");
  759. _rtDataKeys.Add($"{Module}.IsRegulatePump");
  760. if (_timer == null)
  761. {
  762. _timer = new DispatcherTimer();
  763. _timer.Interval = TimeSpan.FromMilliseconds(200);
  764. _timer.Tick += Timer_Tick;
  765. }
  766. _timer.Start();
  767. //加载Config
  768. _reservoirCMMFlowHighWarning = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowHighWarning"));
  769. _reservoirCMMFlowHighError = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowHighFault"));
  770. _reservoirCMMFlowLowWarning = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowLowWarning"));
  771. _reservoirCMMFlowLowError = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowLowFault"));
  772. CMMAnodeLifeTimeAHrs = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMAnodeLifeTimeAHrs"));
  773. CMMCathodeLifeTimeAHrs = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMCathodeLifeTimeAHrs"));
  774. _reservoirHighLevel = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.HighLevel"));
  775. _reservoirLowLevel = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.LowLevel"));
  776. _cmmAnodeTotalAmpHoursWarningLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMAnodeTotalAmpHoursWarningLimit"));
  777. _cmmAnodeTotalAmpHoursFaultLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMAnodeTotalAmpHoursFaultLimit"));
  778. _cmmCathodeTotalAmpHoursWarningLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMCathodeTotalAmpHoursWarningLimit"));
  779. _cmmCathodeTotalAmpHoursFaultLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMCathodeTotalAmpHoursFaultLimit"));
  780. }
  781. #region 命令方法
  782. /// <summary>
  783. /// 初始化
  784. /// </summary>
  785. /// <param name="param"></param>
  786. private void InitializeAction(object param)
  787. {
  788. InvokeClient.Instance.Service.DoOperation($"{Module}.InitializeAll");
  789. }
  790. /// <summary>
  791. /// 重置TotalTime
  792. /// </summary>
  793. private void ResetTotalAction()
  794. {
  795. InvokeClient.Instance.Service.DoOperation($"{Module}.ResetTotalTime");
  796. }
  797. /// <summary>
  798. /// Cell1三向阀开启CellFlow
  799. /// </summary>
  800. /// <param name="obj"></param>
  801. private void OnCellFlow1(object param)
  802. {
  803. if(CellModuleNameCollection[0] != "")
  804. {
  805. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.CellSwitchToFlow");
  806. }
  807. }
  808. /// <summary>
  809. /// Cell1三向阀开启CellBypass
  810. /// </summary>
  811. private void OnCellBypass1(object param)
  812. {
  813. if(CellModuleNameCollection[0] != "")
  814. {
  815. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.CellSwitchToBypass");
  816. }
  817. }
  818. /// <summary>
  819. /// Cell2三向阀开启CellFlow
  820. /// </summary>
  821. /// <param name="obj"></param>
  822. private void OnCellFlow2(object param)
  823. {
  824. if(CellModuleNameCollection[1] != "")
  825. {
  826. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.CellSwitchToFlow");
  827. }
  828. }
  829. /// <summary>
  830. /// Cell2三向阀开启CellBypass
  831. /// </summary>
  832. private void OnCellBypass2(object param)
  833. {
  834. if (CellModuleNameCollection[1] != "")
  835. {
  836. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.CellSwitchToBypass");
  837. }
  838. }
  839. /// <summary>
  840. /// Cell1 Open Clamp Valve
  841. /// </summary>
  842. private void OnOpenClampValve1(object param)
  843. {
  844. if (CellModuleNameCollection[0] != "")
  845. {
  846. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.ClampOn");
  847. }
  848. }
  849. /// <summary>
  850. /// Cell1 Close Clamp Valve
  851. /// </summary>
  852. private void OnCloseClampValve1(object param)
  853. {
  854. if (CellModuleNameCollection[0] != "")
  855. {
  856. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.ClampOff");
  857. }
  858. }
  859. /// <summary>
  860. /// Cell2 Open Clamp Valve
  861. /// </summary>
  862. private void OnOpenClampValve2(object param)
  863. {
  864. if (CellModuleNameCollection[1] != "")
  865. {
  866. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.ClampOn");
  867. }
  868. }
  869. /// <summary>
  870. /// Cell2 Close Clamp Valve
  871. /// </summary>
  872. private void OnCloseClampValve2(object param)
  873. {
  874. if (CellModuleNameCollection[1] != "")
  875. {
  876. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.ClampOff");
  877. }
  878. }
  879. /// <summary>
  880. /// Open DI Replen Valve
  881. /// </summary>
  882. private void OnOpenDIReplenValve(object param)
  883. {
  884. InvokeClient.Instance.Service.DoOperation($"{Module}.DiReplenOn");
  885. }
  886. /// <summary>
  887. /// Close DI Replen Valve
  888. /// </summary>
  889. private void OnCloseDIReplenValve(object param)
  890. {
  891. InvokeClient.Instance.Service.DoOperation($"{Module}.DiReplenOff");
  892. }
  893. /// <summary>
  894. /// Manual DireplenAction
  895. /// </summary>
  896. /// <param name="param"></param>
  897. private void ManualDireplenAction(object param)
  898. {
  899. InvokeClient.Instance.Service.DoOperation($"{Module}.ManualDiReplen",ManualFillSeconds);
  900. }
  901. /// <summary>
  902. /// 进入PMCounter页面
  903. /// </summary>
  904. /// <param name="param"></param>
  905. private void GotoPMCounterAction(object param)
  906. {
  907. GlobalEvents.OnSwitchFixedChildSubItem(Module, $"PMCounter{Module.Substring(9, 1)}");
  908. }
  909. /// <summary>
  910. /// 跳转DosingSystem
  911. /// </summary>
  912. /// <param name="param"></param>
  913. private void JumpDosingSystemAction(object param)
  914. {
  915. GlobalEvents.OnSwitchFixedChildSubItem(Module, $"DosingSystem1");
  916. }
  917. private void HedPowerOnAction(object param)
  918. {
  919. InvokeClient.Instance.Service.DoOperation($"{Module}.HedPowerOn");
  920. }
  921. private void HedPowerOffAction(object param)
  922. {
  923. InvokeClient.Instance.Service.DoOperation($"{Module}.HedPowerOff");
  924. }
  925. private void ResPowerOnAction(object param)
  926. {
  927. InvokeClient.Instance.Service.DoOperation($"{Module}.ResPowerOn");
  928. }
  929. private void ResPowerOffAction(object param)
  930. {
  931. InvokeClient.Instance.Service.DoOperation($"{Module}.ResPowerOff");
  932. }
  933. /// <summary>
  934. /// Initialize Action
  935. /// </summary>
  936. /// <param name="param"></param>
  937. private void PumpSpeedAction(object obj)
  938. {
  939. object[] objects = (object[])obj;
  940. if (objects.Length >= 2)
  941. {
  942. InvokeClient.Instance.Service.DoOperation($"{Module}.RegulatPumpSpeed", objects[1]);
  943. }
  944. }
  945. #endregion
  946. /// <summary>
  947. /// 时钟
  948. /// </summary>
  949. /// <param name="sender"></param>
  950. /// <param name="e"></param>
  951. private void Timer_Tick(object sender, EventArgs e)
  952. {
  953. if (_rtDataKeys.Count != 0)
  954. {
  955. _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  956. if (_rtDataValueDic != null)
  957. {
  958. IsRegulatePump = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsRegulatePump");
  959. PumpSpeed = CommonFunction.GetValue<int>(_rtDataValueDic, $"{Module}.PumpSpeed");
  960. ReservoirsPersistent = CommonFunction.GetValue<ReservoirsPersistentValue>(_rtDataValueDic, $"{Module}.PersistentValue");
  961. IsManualReplen = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsManualReplen");
  962. DIValveMaxOnTime = CommonFunction.GetValue<double>(_rtDataValueDic, $"{Module}.DIValveMaxOnTime");
  963. CurrentRecipe = CommonFunction.GetValue<ResRecipe>(_rtDataValueDic, $"{Module}.CurrentRecipe");
  964. TemperatureControlData = CommonFunction.GetValue<TemperatureControllerData>(_rtDataValueDic, $"{Module}.TemperatureControllerData");
  965. TCEnableStatus = TemperatureControlData.ControlOperationModel == 0 ? "Disable" : "Enable";
  966. CmmPowerSupplierData = CommonFunction.GetValue<PowerSupplierData>(_rtDataValueDic, $"{Module}.CmmPowerSupplierData");
  967. State = CommonFunction.GetValue<string>(_rtDataValueDic, $"{Module}.FsmState");
  968. AvgLevel = CommonFunction.GetValue<double>(_rtDataValueDic, $"{Module}.ReservoirAverageLevel");
  969. ReservoirUsage reservoirUsage = CommonFunction.GetValue<ReservoirUsage>(_rtDataValueDic, $"{Module}.ReservoirUsage");
  970. if(reservoirUsage != null)
  971. {
  972. CMMAnodeUsage = reservoirUsage.CMMAnodeUsage;
  973. CMMCathodeUsage = reservoirUsage.CMMMembranceUsage;
  974. //CMM AnodeUsage
  975. if (CMMAnodeUsage > _cmmAnodeTotalAmpHoursFaultLimit)
  976. {
  977. IsCMMAnodeTotalAmpHoursFault = true;
  978. IsCMMAnodeTotalAmpHoursWarning = false;
  979. }
  980. else if(CMMAnodeUsage > _cmmAnodeTotalAmpHoursWarningLimit)
  981. {
  982. IsCMMAnodeTotalAmpHoursWarning = true;
  983. IsCMMAnodeTotalAmpHoursFault = false;
  984. }
  985. else
  986. {
  987. IsCMMAnodeTotalAmpHoursWarning = false;
  988. IsCMMAnodeTotalAmpHoursFault = false;
  989. }
  990. //CMM CathodeUsage
  991. if (CMMCathodeUsage > _cmmCathodeTotalAmpHoursFaultLimit)
  992. {
  993. IsCMMCathodeTotalAmpHoursFault = true;
  994. IsCMMCathodeTotalAmpHoursWarning = false;
  995. }
  996. else if (CMMCathodeUsage > _cmmCathodeTotalAmpHoursWarningLimit)
  997. {
  998. IsCMMCathodeTotalAmpHoursWarning = true;
  999. IsCMMCathodeTotalAmpHoursFault = false;
  1000. }
  1001. else
  1002. {
  1003. IsCMMCathodeTotalAmpHoursWarning = false;
  1004. IsCMMCathodeTotalAmpHoursFault = false;
  1005. }
  1006. }
  1007. if ("Manual".Equals(ReservoirsPersistent.OperatingMode))
  1008. {
  1009. IsEnabled = true;
  1010. IsAutoEnabled = true;
  1011. }
  1012. else if ("Auto".Equals(ReservoirsPersistent.OperatingMode))
  1013. {
  1014. IsAutoEnabled = true;
  1015. IsEnabled = false;
  1016. }
  1017. else
  1018. {
  1019. State = "Stopped";
  1020. IsEnabled = false;
  1021. IsAutoEnabled = false;
  1022. }
  1023. for (int i = 0;i < CellsCount;i++)
  1024. {
  1025. MetalDataCollection[i] = CommonFunction.GetValue<StandardHotMetalDeviceData>(_rtDataValueDic, $"{CellModuleNameCollection[i]}.MetalData");
  1026. CellModuleSignalPump[i] = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{CellModuleNameCollection[i]}.IsSingalPump");
  1027. }
  1028. ReservoirData = CommonFunction.GetValue<StandardHotReservoirData>(_rtDataValueDic, $"{Module}.ReservoirData");
  1029. if (ReservoirData != null)
  1030. {
  1031. for (int i = 0; i < CellsCount; i++)
  1032. {
  1033. MetalDataCollection[i].CellPump ^= ReservoirData.RegulatePumpSignalIn; //确保管路开关正常显示
  1034. }
  1035. }
  1036. if (CurrentRecipe != null)
  1037. {
  1038. //PHLow报警灯
  1039. IsPHLowLimit = (ReservoirData != null && ReservoirData.PHValue < CurrentRecipe.PHErrorLow) ? true : false;
  1040. //PHHigh报警灯
  1041. IsPHHighLimit = (ReservoirData != null && ReservoirData.PHValue > CurrentRecipe.PHErrorHigh) ? true : false;
  1042. if(CmmPowerSupplierData != null)
  1043. {
  1044. //PowerSupply High报警灯
  1045. if (CmmPowerSupplierData.Current <= CurrentRecipe.CMMCurrentSetPoint * (1 + (double)CurrentRecipe.CMMCurrentWarningPercent/100))
  1046. {
  1047. CurrentHighStatus = "Normal";
  1048. }
  1049. else if (CmmPowerSupplierData.Current > CurrentRecipe.CMMCurrentSetPoint * (1 + (double)CurrentRecipe.CMMCurrentFaultPercent/100))
  1050. {
  1051. CurrentHighStatus = "Error";
  1052. }
  1053. else
  1054. {
  1055. CurrentHighStatus = "Warning";
  1056. }
  1057. //PowerSupply Low报警灯
  1058. if (CmmPowerSupplierData.Current >= CurrentRecipe.CMMCurrentSetPoint * (1 - (double)CurrentRecipe.CMMCurrentWarningPercent/100))
  1059. {
  1060. CurrentLowStatus = "Normal";
  1061. }
  1062. else if (CmmPowerSupplierData.Current < CurrentRecipe.CMMCurrentSetPoint * (1 - (double)CurrentRecipe.CMMCurrentFaultPercent/100))
  1063. {
  1064. CurrentLowStatus = "Error";
  1065. }
  1066. else
  1067. {
  1068. CurrentLowStatus = "Warning";
  1069. }
  1070. IsBelowMinVoltage = CmmPowerSupplierData.Voltage < CurrentRecipe.CMMMinVoltage ? true : false;
  1071. }
  1072. }
  1073. if (ReservoirData != null)
  1074. {
  1075. //CMM Flow High报警灯
  1076. if (ReservoirData.Flow <= _reservoirCMMFlowHighWarning)
  1077. {
  1078. FlowHighStatus = "Normal";
  1079. }
  1080. else if (ReservoirData.Flow > _reservoirCMMFlowHighError)
  1081. {
  1082. FlowHighStatus = "Error";
  1083. }
  1084. else
  1085. {
  1086. FlowHighStatus = "Warning";
  1087. }
  1088. //CMM Flow Low报警灯
  1089. if (ReservoirData.Flow >= _reservoirCMMFlowLowWarning)
  1090. {
  1091. FlowLowStatus = "Normal";
  1092. }
  1093. else if (ReservoirData.Flow < _reservoirCMMFlowLowError)
  1094. {
  1095. FlowLowStatus = "Error";
  1096. }
  1097. else
  1098. {
  1099. FlowLowStatus = "Warning";
  1100. }
  1101. //High Level报警灯
  1102. IsHighLevel = (ReservoirData.WaterLevel > _reservoirHighLevel) ? true : false;
  1103. //Low Level报警灯
  1104. IsLowLevel = (ReservoirData.WaterLevel < _reservoirLowLevel) ? true : false;
  1105. //HighSafety
  1106. IsHighSafety = ReservoirData.SafetyHighLevel;
  1107. //HedFlow管流
  1108. HEDFlowIsOn = (ReservoirData.HedFlow > 0) ? true : false;
  1109. //DIReplenFault
  1110. IsDiReplenFault = false;
  1111. IsError = State== "Error" ? true : false;
  1112. }
  1113. }
  1114. }
  1115. }
  1116. /// <summary>
  1117. /// 隐藏
  1118. /// </summary>
  1119. public void Hide()
  1120. {
  1121. if (_timer != null)
  1122. {
  1123. _timer.Stop();
  1124. }
  1125. }
  1126. }
  1127. }