PMRoutineBase.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. using System.Diagnostics;
  2. using Venus_RT.Devices;
  3. using System;
  4. using Venus_Core;
  5. using Aitex.Core.RT.Routine;
  6. namespace Venus_RT.Modules.PMs
  7. {
  8. class PMRoutineBase : ModuleRoutineBase
  9. {
  10. protected readonly JetPMBase _chamber;
  11. public PMRoutineBase(JetPMBase chamber) : base(chamber.Module)
  12. {
  13. _chamber = chamber;
  14. }
  15. public bool CheckLid()
  16. {
  17. if (!_chamber.IsLidClosed)
  18. {
  19. this.Stop("Chamber 盖子必须关");
  20. return false;
  21. }
  22. return true;
  23. }
  24. public bool CheckLidLoadLock()
  25. {
  26. if (_chamber.ChamberType == JetChamber.VenusSE || _chamber.ChamberType == JetChamber.VenusDE)
  27. return true;
  28. if (!_chamber.IsLidLoadlockClosed)
  29. {
  30. this.Stop("LoadLock 盖子必须关");
  31. return false;
  32. }
  33. return true;
  34. }
  35. protected bool CheckSlitDoor()
  36. {
  37. if (!_chamber.IsSlitDoorClosed)
  38. {
  39. Stop("传送门必须关");
  40. return false;
  41. }
  42. if (_chamber.ChamberType== JetChamber.VenusDE)
  43. {
  44. if (!_chamber.IsLinerDoorClosed)
  45. {
  46. Stop("Liner door 必须关");
  47. return false;
  48. }
  49. }
  50. return true;
  51. }
  52. protected bool CheckDryPump()
  53. {
  54. if (!_chamber.IsPumpRunning)
  55. {
  56. Stop("干泵没有启动");
  57. return false;
  58. }
  59. if (_chamber.HasPumpError)
  60. {
  61. Stop("干泵状态有错误");
  62. return false;
  63. }
  64. return true;
  65. }
  66. protected bool CheckTurboPump()
  67. {
  68. if (!_chamber.IsTurboPumpRunning)
  69. {
  70. Stop("分子泵没有启动");
  71. return false;
  72. }
  73. if (_chamber.HasTurboPumpError)
  74. {
  75. Stop("分子泵状态有错误");
  76. return false;
  77. }
  78. return true;
  79. }
  80. protected bool CheckCDA()
  81. {
  82. if (!_chamber.IsCDA_OK)
  83. {
  84. Stop("CDA 压力信号不正确");
  85. return false;
  86. }
  87. return true;
  88. }
  89. public bool CheckATM()
  90. {
  91. if (_chamber.IsATM)
  92. {
  93. this.Stop("Chamber 是ATM状态");
  94. return false;
  95. }
  96. return true;
  97. }
  98. protected bool CloseAllValves(int? delayTime = null)
  99. {
  100. Notify("关闭所有的阀门");
  101. _chamber.CloseValves(delayTime);
  102. return true;
  103. }
  104. protected bool TurnValve(ValveType vlv, bool bOpen)
  105. {
  106. _chamber.OpenValve(vlv, bOpen);
  107. Notify($"{(bOpen ? "打开" : "关闭")} {vlv} 阀");
  108. return true;
  109. }
  110. protected bool CheckValve(ValveType vlv, bool bOpen)
  111. {
  112. if (vlv == ValveType.FastPump)
  113. return _chamber.IsFastPumpOpened == bOpen;
  114. else if (vlv == ValveType.SoftPump)
  115. return _chamber.IsSoftPumpOpened == bOpen;
  116. return true;
  117. }
  118. protected bool SetCoolantTemp(double target, double offset)
  119. {
  120. if (!_chamber.CheckChillerStatus())
  121. {
  122. Stop("Chiller status error");
  123. return false;
  124. }
  125. if (_chamber.CoolantOutletTempFB > target)
  126. {
  127. Notify($"水冷当前温度{_chamber.CoolantOutletTempFB} ℃, 大于目标 {target.ToString()} ℃");
  128. }
  129. _chamber.HeatChiller(ChillerType.Chiller,target, offset);
  130. Notify($"检查水冷温度值,当前温度{_chamber.CoolantOutletTempFB} ℃, 目标 {target.ToString()} ℃");
  131. return true;
  132. }
  133. protected bool CheckCoolantTemp(double target, double tolerance)
  134. {
  135. return Math.Abs(_chamber.CoolantOutletTempFB - target) <= tolerance;
  136. }
  137. }
  138. }