JetPM.cs 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. using Aitex.Core.Common.DeviceData;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.Device.Unit;
  4. using Aitex.Core.RT.Event;
  5. using Aitex.Core.RT.SCCore;
  6. using Aitex.Core.RT.Log;
  7. using MECF.Framework.Common.Device.Bases;
  8. using MECF.Framework.Common.Equipment;
  9. using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.PMs;
  10. using System;
  11. using System.Collections.Generic;
  12. using Venus_Core;
  13. using Venus_RT.Devices.IODevices;
  14. using Venus_RT.Devices.EPD;
  15. using Aitex.Core.RT.DataCenter;
  16. using Aitex.Core.RT.OperationCenter;
  17. namespace Venus_RT.Devices
  18. {
  19. enum ValveType
  20. {
  21. PVN21,
  22. PVN22,
  23. PV11,
  24. PV12,
  25. PV21,
  26. PV22,
  27. PV31,
  28. PV32,
  29. PV41,
  30. PV42,
  31. N2,
  32. Mfc1,
  33. Mfc2,
  34. Mfc3,
  35. Mfc4,
  36. Mfc5,
  37. Mfc6,
  38. Mfc7,
  39. Mfc8,
  40. PVHe1,
  41. PVHe2,
  42. GasFinal,
  43. SoftPump,
  44. FastPump,
  45. CHBPurge,
  46. TurboPumpPumping,
  47. TurboPumpPurge,
  48. Guage,
  49. LoadlockVent,
  50. LoadlockPumping
  51. }
  52. class JetPM : PM
  53. {
  54. private readonly IoLid _Lid;
  55. private readonly IoLid _LidLoadlock;
  56. private readonly IoCylinder _slitDoor;
  57. private readonly IoCylinder _LiftPin;
  58. private readonly IoCylinder _LoadLockArm;
  59. private readonly IoValve _PVN21Valve;
  60. private readonly IoValve _PVN22Valve;
  61. private readonly IoValve _PV11Valve;
  62. private readonly IoValve _PV12Valve;
  63. private readonly IoValve _PV21Valve;
  64. private readonly IoValve _PV22Valve;
  65. private readonly IoValve _PV31Valve;
  66. private readonly IoValve _PV32Valve;
  67. private readonly IoValve _PV41Valve;
  68. private readonly IoValve _PV42Valve;
  69. private readonly IoValve _N2Valve;
  70. private readonly IoValve _Mfc1Valve;
  71. private readonly IoValve _Mfc2Valve;
  72. private readonly IoValve _Mfc3Valve;
  73. private readonly IoValve _Mfc4Valve;
  74. private readonly IoValve _Mfc5Valve;
  75. private readonly IoValve _Mfc6Valve;
  76. private readonly IoValve _Mfc7Valve;
  77. private readonly IoValve _Mfc8Valve;
  78. private readonly IoValve _PVHe1Valve;
  79. private readonly IoValve _PVHe2Valve;
  80. private readonly IoValve _GasFinalValve;
  81. private readonly IoValve _SoftPumpValve;
  82. private readonly IoValve _FastPumpValve;
  83. private readonly IoValve _TurboPumpPumpingValve;
  84. private readonly IoValve _TurboPumpPurgeValve;
  85. private readonly IoValve _GuageValve;
  86. private readonly IoValve _LoadlockVentValve;
  87. private readonly IoValve _LoadlockPumpingValve;
  88. private readonly IoSensor _ATM_sw;
  89. private readonly IoSensor _CDAPressure;
  90. private readonly IoSensor _ATM_Loadlock_sw;
  91. private readonly IoSensor _N2Pressure_sw;
  92. private readonly IoSensor _VAC_sw;
  93. private readonly IoSensor _WLK_sw;
  94. private readonly IoSensor _Water_Flow;
  95. private readonly IoSensor _RFG_Interlock;
  96. private readonly IoSensor _PM_Lid_Closed;
  97. private readonly IoSensor _Source_RF_Fan;
  98. private readonly IoSensor _PM_SlitDoor_Closed;
  99. private readonly IoSensor _TurboPumpInterlock;
  100. private readonly PumpBase _MainPump;
  101. private readonly ESC5HighVoltage _ESCHV;
  102. private readonly AdixenTurboPump _TurboPump;
  103. private readonly PendulumValve _pendulumValve;
  104. private readonly ChillerBase _Chiller;
  105. private readonly RfPowerBase _Generator;//srf=>AdTecGenerator
  106. private readonly RfPowerBase _GeneratorBias;//brf=>CometRF
  107. private readonly RfMatchBase _Match;
  108. private readonly RfMatchBase _BiasMatch;
  109. private readonly IoSignalTower _SignalTower;
  110. private readonly IoHeater _ForelineTC;
  111. private readonly IoPressureControl _pressureController;
  112. private readonly IoGasStick[] _gasLines;
  113. private readonly IoGasStick _gasLineN2;
  114. private readonly IoBacksideHe _backsideHe;
  115. // EndPoint
  116. private readonly EPDClient _epdClient;
  117. private readonly double _foreline_interlock_pressure = 750;
  118. public List<string> EPDCfgList => _epdClient.CFGFileList;
  119. public bool EPDCaptured => _epdClient.Captured;
  120. public bool EPDConnected => _epdClient.IsEPDConnected;
  121. // 盖子的状态
  122. public bool IsLidClosed => _Lid.OFFFeedback;
  123. public bool IsLidLoadlockClosed => _LidLoadlock.OFFFeedback;
  124. public bool IsSlitDoorClosed => !_slitDoor.ONFeedback && _slitDoor.OFFFeedback;
  125. public bool IsPumpRunning => _MainPump.IsRunning;
  126. public bool IsTurboPumpRunning => _TurboPump.IsRunning;
  127. public bool IsTurboPumpAtSpeed => _TurboPump.AtSpeed;
  128. public bool HasPumpError => _MainPump.IsError || !_MainPump.IsRunning;
  129. public bool HasTurboPumpError => _TurboPump.IsError || !_TurboPump.IsRunning;
  130. public bool IsCDA_OK => _CDAPressure.Value;
  131. public bool IsFastPumpOpened => _FastPumpValve.Status;
  132. public bool IsSoftPumpOpened => _SoftPumpValve.Status;
  133. public bool IsMfc1ValveOpened => _Mfc1Valve.Status;
  134. public bool IsMfc2ValveOpened => _Mfc2Valve.Status;
  135. public bool IsMfc3ValveOpened => _Mfc3Valve.Status;
  136. public bool IsMfc4ValveOpened => _Mfc4Valve.Status;
  137. public bool IsMfc5ValveOpened => _Mfc5Valve.Status;
  138. public bool IsMfc6ValveOpened => _Mfc6Valve.Status;
  139. public bool IsMfc7ValveOpened => _Mfc7Valve.Status;
  140. public bool IsMfc8ValveOpened => _Mfc8Valve.Status;
  141. // 压力信号
  142. public bool IsATM => _ATM_sw.Value;
  143. public bool LiftPinIsDown => _LiftPin.OFFFeedback;
  144. public bool LiftPinIsUp => _LiftPin.ONFeedback;
  145. public bool IsATMLoadlock => _ATM_Loadlock_sw.Value;
  146. public bool IsVACLoadLock => LoadlockPressure <= 1000;
  147. public bool IsVAC => _VAC_sw.Value;
  148. public bool IsWaterFlowOk => _Water_Flow.Value;
  149. public bool IsWLK => _WLK_sw.Value;
  150. public bool IsRFGInterlockOn => _RFG_Interlock.Value;
  151. public bool PMLidClosed => _PM_Lid_Closed.Value;
  152. public bool TurboPumpInterlock => _TurboPumpInterlock.Value;
  153. public bool SourceRFFanInterlock => _Source_RF_Fan.Value;
  154. public bool SlitDoorClosed => _PM_SlitDoor_Closed.Value;
  155. public double ProcessPressure => _pressureController.ProcessGauge.Value;
  156. public override double ChamberPressure => _pressureController.PressureGauge.Value;
  157. public double ForelinePressure => _pressureController.ForelineGauge.Value;
  158. public double TargetPressure => _pressureController.TargetPressure;
  159. public double LoadlockPressure => _pressureController.LoadLockGauge.Value;
  160. public double ESCHePressure => _pressureController.ESCHeGauge.Value;
  161. public int ESCOutputVoltage => _ESCHV.OutputVoltage;
  162. public bool IsHVOn => _ESCHV.IsOn;
  163. public float CoolantInletTempFB => _Chiller.CoolantInletTcFeedback;
  164. public float CoolantOutletTempFB => _Chiller.CoolantOutletTcFeedback;
  165. //Loadlock_Arm
  166. public bool IsLoadlockArmRetract => _LoadLockArm.OFFFeedback;
  167. public bool IsLoadlockArmExtend => _LoadLockArm.ONFeedback;
  168. //Loadlock_Arm DO
  169. public bool LoadlockArmRetract => _LoadLockArm.OFFSetPoint;
  170. public bool LoadlockArmExtend => _LoadLockArm.ONSetPoint;
  171. public float ReflectPower => _Generator.ReflectPower;
  172. public float BiasReflectPower => _GeneratorBias.ReflectPower;
  173. public bool BackSideHeOutOfRange => _backsideHe.OutOfRange;
  174. public new ModuleName Module { get; }
  175. public MovementPosition LiftPinPosition
  176. {
  177. get
  178. {
  179. MovementPosition pos = MovementPosition.Unknown;
  180. if (_LiftPin.ONFeedback && !_LiftPin.OFFFeedback)
  181. {
  182. pos = MovementPosition.Up;
  183. }
  184. else if (!_LiftPin.ONFeedback && _LiftPin.OFFFeedback)
  185. {
  186. pos = MovementPosition.Down;
  187. }
  188. return pos;
  189. }
  190. }
  191. public override bool CheckAtm()
  192. {
  193. return _ATM_sw.Value && ChamberPressure > 700000;
  194. }
  195. public bool CheckSlitDoorOpen()
  196. {
  197. return _slitDoor.State == CylinderState.Open;
  198. }
  199. public bool CheckSlitDoorClose()
  200. {
  201. return _slitDoor.State == CylinderState.Close;
  202. }
  203. public bool CheckLiftUp()
  204. {
  205. return _LiftPin.State == CylinderState.Open;
  206. }
  207. public bool CheckLiftDown()
  208. {
  209. return _LiftPin.State == CylinderState.Close;
  210. }
  211. public double TotalGasSetpoint
  212. {
  213. get
  214. {
  215. double sum = 0;
  216. foreach (var gas in _gasLines)
  217. {
  218. sum += gas.FlowSP;
  219. }
  220. return sum;
  221. }
  222. }
  223. public bool HasGasOutOfRange
  224. {
  225. get
  226. {
  227. foreach (var gas in _gasLines)
  228. {
  229. if (!gas.IsOutOfRange)
  230. return false;
  231. }
  232. return true;
  233. }
  234. }
  235. public JetPM(ModuleName mod) : base(mod.ToString())
  236. {
  237. Module = mod;
  238. _Lid = DEVICE.GetDevice<IoLid>($"{Module}.{VenusDevice.Lid}");
  239. _LidLoadlock = DEVICE.GetDevice<IoLid>($"{Module}.{VenusDevice.LidLoadlock}");
  240. _slitDoor = DEVICE.GetDevice<IoCylinder>($"{Module}.{VenusDevice.SlitDoor}");
  241. _LiftPin = DEVICE.GetDevice<IoCylinder>($"{Module}.{VenusDevice.LiftPin}");
  242. _LoadLockArm = DEVICE.GetDevice<IoCylinder>($"{Module}.{VenusDevice.LoadLockArm}");
  243. _PVN21Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVN21}");
  244. _PVN22Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVN22}");
  245. _PV11Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV11}");
  246. _PV12Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV12}");
  247. _PV21Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV21}");
  248. _PV22Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV22}");
  249. _PV31Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV31}");
  250. _PV32Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV32}");
  251. _PV41Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV41}");
  252. _PV42Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV42}");
  253. _N2Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveN2}");
  254. _Mfc1Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc1}");
  255. _Mfc2Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  256. _Mfc3Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  257. _Mfc4Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  258. _Mfc5Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  259. _Mfc6Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  260. _Mfc7Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  261. _Mfc8Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  262. _PVHe1Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVHe1}");
  263. _PVHe2Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVHe2}");
  264. _GasFinalValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveGasFinal}");
  265. _SoftPumpValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveSoftPump}");
  266. _FastPumpValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveFastPump}");
  267. _TurboPumpPumpingValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveTurboPumpPumping}");
  268. _TurboPumpPurgeValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveTurboPumpPurge}");
  269. _GuageValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveGuage}");
  270. _LoadlockVentValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveLoadlockVent}");
  271. _LoadlockPumpingValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveLoadlockPumping}");
  272. _ATM_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorATMSwitch");
  273. _ATM_Loadlock_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorLoadlockATMSwitch");
  274. _N2Pressure_sw = DEVICE.GetDevice<IoSensor>($"{Module}.N2PressureOk");
  275. _VAC_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorVacSwitch");
  276. _Water_Flow = DEVICE.GetDevice<IoSensor>($"{Module}.SensorWaterFlowOk");
  277. _WLK_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorWaterLeakOk");
  278. _CDAPressure = DEVICE.GetDevice<IoSensor>($"{Module}.SensorCDAPressureOk");
  279. _RFG_Interlock = DEVICE.GetDevice<IoSensor>($"{Module}.GeneratorInterlock");
  280. _PM_Lid_Closed = DEVICE.GetDevice<IoSensor>($"{Module}.SensorPMLidClosed");
  281. _Source_RF_Fan = DEVICE.GetDevice<IoSensor>($"{Module}.SensorSourceRFFan");
  282. _PM_SlitDoor_Closed = DEVICE.GetDevice<IoSensor>($"{Module}.SensorSlitDoorClosed");
  283. _TurboPumpInterlock = DEVICE.GetDevice<IoSensor>($"{Module}.TurboPumpInterlock");
  284. _ForelineTC = DEVICE.GetDevice<IoHeater>($"{Module}.ForelineHeater");
  285. _SignalTower = DEVICE.GetDevice<IoSignalTower>($"{Module}.SignalTower");
  286. _CDAPressure = DEVICE.GetDevice<IoSensor>($"{Module}.SensorCDAPressureOk");
  287. _pressureController = DEVICE.GetDevice<IoPressureControl>($"{Module}.{VenusDevice.PressureControl}");
  288. _gasLines = new IoGasStick[8];
  289. for (int index = 0; index < 8; index++)
  290. {
  291. _gasLines[index] = DEVICE.GetDevice<IoGasStick>($"{Module}.GasStick{index + 1}");
  292. }
  293. _gasLineN2 = DEVICE.GetDevice<IoGasStick>($"{Module}.GasStickN2");
  294. _backsideHe = DEVICE.GetDevice<IoBacksideHe>($"{Module}.BacksideHelium");
  295. _MainPump = DEVICE.GetDevice<PumpBase>($"{Module}.{VenusDevice.MainPump}");
  296. // RS232 Dry pump, SKY
  297. if (SC.GetValue<int>($"{mod}.DryPump.CommunicationType") == (int)CommunicationType.RS232)
  298. {
  299. if (SC.GetValue<int>($"{mod}.DryPump.MFG") == (int)DryPumpMFG.SKY)
  300. {
  301. _MainPump = DEVICE.GetDevice<SkyPump>($"{Module}.{VenusDevice.MainPump}");
  302. }
  303. else if (SC.GetValue<int>($"{mod}.DryPump.MFG") == (int)DryPumpMFG.Edwards)
  304. {
  305. _MainPump = DEVICE.GetDevice<EdwardsPump>($"{Module}.{VenusDevice.MainPump}");
  306. }
  307. }
  308. _ESCHV = DEVICE.GetDevice<ESC5HighVoltage>($"{Module}.{VenusDevice.ESCHV}");
  309. _TurboPump = DEVICE.GetDevice<AdixenTurboPump>($"{Module}.{VenusDevice.TurboPump}");
  310. _pendulumValve = DEVICE.GetDevice<PendulumValve>($"{Module}.{VenusDevice.PendulumValve}");
  311. if (SC.GetValue<bool>($"{mod}.Chiller.EnableChiller") &&
  312. SC.GetValue<int>($"{mod}.Chiller.CommunicationType") == (int)CommunicationType.RS232)
  313. {
  314. if (SC.GetValue<int>($"{mod}.Chiller.MFG") == (int)ChillerMFG.SMC)
  315. {
  316. _Chiller = DEVICE.GetDevice<SMCChiller>($"{Module}.{VenusDevice.Chiller}");
  317. }
  318. else if (SC.GetValue<int>($"{mod}.Chiller.MFG") == (int)ChillerMFG.AIRSYS)
  319. {
  320. _Chiller = DEVICE.GetDevice<AIRSYSChiller>($"{Module}.{VenusDevice.Chiller}");
  321. }
  322. }
  323. // RS223 AdTec Generator
  324. if (SC.GetValue<int>($"{mod}.Rf.CommunicationType") == (int)CommunicationType.RS232 &&
  325. SC.GetValue<int>($"{mod}.Rf.MFG") == (int)GeneratorMFG.AdTec)
  326. {
  327. _Generator = DEVICE.GetDevice<AdTecGenerator>($"{Module}.{VenusDevice.Rf}");
  328. }
  329. // Ethernet Comet Generator Bias
  330. if (SC.GetValue<bool>($"{mod}.BiasRf.EnableBiasRF"))
  331. {
  332. if (SC.GetValue<int>($"{mod}.BiasRf.CommunicationType") == (int)CommunicationType.Ethernet &&
  333. SC.GetValue<int>($"{mod}.BiasRf.MFG") == (int)GeneratorMFG.Comet)
  334. {
  335. _GeneratorBias = DEVICE.GetDevice<CometRF>($"{Module}.{VenusDevice.BiasRf}");
  336. }
  337. else if (SC.GetValue<int>($"{mod}.BiasRf.MFG") == (int)GeneratorMFG.AdTec)
  338. {
  339. _GeneratorBias = DEVICE.GetDevice<AdTecGenerator>($"{Module}.{VenusDevice.BiasRf}");
  340. }
  341. }
  342. // RS232 AdTec match
  343. if (SC.GetValue<int>($"{mod}.match.CommunicationType") == (int)CommunicationType.RS232 &&
  344. SC.GetValue<int>($"{mod}.match.MFG") == (int)MatchMFG.AdTec)
  345. {
  346. _Match = DEVICE.GetDevice<AdTecMatch>($"{Module}.{VenusDevice.Match}");
  347. }
  348. // Bias Match
  349. if (SC.GetValue<bool>($"{mod}.BiasMatch.EnableBiasMatch") &&
  350. SC.GetValue<int>($"{mod}.BiasMatch.CommunicationType") == (int)CommunicationType.RS232 &&
  351. SC.GetValue<int>($"{mod}.BiasMatch.MFG") == (int)MatchMFG.AdTec)
  352. {
  353. _BiasMatch = DEVICE.GetDevice<AdTecMatch>($"{Module}.{VenusDevice.BiasMatch}");
  354. }
  355. _epdClient = DEVICE.GetDevice<EPDClient>($"{Module}.{VenusDevice.EndPoint}");
  356. DATA.Subscribe($"{Name}.ForelinePressure", () => ForelinePressure);
  357. DATA.Subscribe($"{Name}.ProcessPressure", () => ProcessPressure);
  358. DATA.Subscribe($"{Name}.ESCHePressure", () => ESCHePressure);
  359. DATA.Subscribe($"{Name}.LoadlockPressure", () => LoadlockPressure);
  360. DATA.Subscribe($"{Name}.IsATM", () => IsATM);
  361. DATA.Subscribe($"{Name}.IsVAC", () => IsVAC);
  362. DATA.Subscribe($"{Name}.LiftPinIsUp", () => LiftPinIsUp);
  363. DATA.Subscribe($"{Name}.LiftPinIsDown", () => LiftPinIsDown);
  364. DATA.Subscribe($"{Name}.PumpIsRunning", () => IsPumpRunning);
  365. DATA.Subscribe($"{Name}.TurboPumpIsRunning", () => IsTurboPumpRunning);
  366. DATA.Subscribe($"{Name}.IsSlitDoorClosed", () => IsSlitDoorClosed);
  367. DATA.Subscribe($"{Name}.IsLidClosed", () => IsLidClosed);
  368. DATA.Subscribe($"{Name}.SRfIsOn", () => _Generator.IsPowerOn);
  369. DATA.Subscribe($"{Name}.BRfIsOn", () => _GeneratorBias.IsPowerOn);
  370. DATA.Subscribe($"{Name}.TurboPumpRotationalSpeed", () => _TurboPump.RotationalSpeed);
  371. DATA.Subscribe($"{Name}.PendulumValve.Position", () => _pendulumValve.Position);
  372. DATA.Subscribe($"{Name}.PendulumValve.Pressure", () => _pendulumValve.Pressure);
  373. DATA.Subscribe($"{Name}.GetPVPosition", () => GetPVPosition());
  374. //DATA.Subscribe($"{Name}.TurboPumpIsRunning", () => _);
  375. OP.Subscribe($"{Module}.SetLiftPin", (cmd, args) => {
  376. if ((bool)args[0] == true)
  377. {
  378. SetLiftPin(MovementPosition.Up, out _);
  379. }
  380. else
  381. {
  382. SetLiftPin(MovementPosition.Down, out _);
  383. }
  384. return true;
  385. });
  386. OP.Subscribe($"{Module}.SetSRf", (cmd, args) => {
  387. GeneratorSetpower((float)args[0]);
  388. GeneratorPowerOn((bool)args[1]);
  389. return true;
  390. });
  391. OP.Subscribe($"{Module}.SetBRf", (cmd, args) => {
  392. SetBiasMatchPosition((float)args[0], (float)args[1]);
  393. GeneratorBiasPowerOn((bool)args[0]);
  394. return true;
  395. });
  396. OP.Subscribe($"{Module}.SetSlitDoor", (cmd, args) => {
  397. SetSlitDoor((bool)args[0], out _);
  398. return true;
  399. });
  400. OP.Subscribe($"{Module}.SetESCHV", (cmd, args) => {
  401. _ESCHV.SetPowerOnOff((bool)args[0]);
  402. return true;
  403. });
  404. OP.Subscribe($"{Module}.SetPVPostion", (cmd, args) => {
  405. SetPVPostion((int)args[0]);
  406. return true;
  407. });
  408. OP.Subscribe($"{Module}.SetPVPressure", (cmd, args) => {
  409. SetPVPressure((int)args[0]);
  410. return true;
  411. });
  412. OP.Subscribe($"{Module}.ClosePump", (cmd, args) => {
  413. TurnDryPump(false);
  414. return true;
  415. });
  416. OP.Subscribe($"{Module}.CloseTurboPump", (cmd, args) => {
  417. TurnTurboPump(false);
  418. return true;
  419. });
  420. _foreline_interlock_pressure = SC.GetValue<double>($"{mod}.ForelineInterlockPressure");
  421. }
  422. public void CloseValves()
  423. {
  424. _PVN21Valve.TurnValve(false, out _);
  425. _PVN22Valve.TurnValve(false, out _);
  426. _PV11Valve.TurnValve(false, out _);
  427. _PV12Valve.TurnValve(false, out _);
  428. _PV21Valve.TurnValve(false, out _);
  429. _PV22Valve.TurnValve(false, out _);
  430. _PV31Valve.TurnValve(false, out _);
  431. _PV32Valve.TurnValve(false, out _);
  432. _PV41Valve.TurnValve(false, out _);
  433. _PV42Valve.TurnValve(false, out _);
  434. _PVHe1Valve.TurnValve(false, out _);
  435. _PVHe2Valve.TurnValve(false, out _);
  436. _GasFinalValve.TurnValve(false, out _);
  437. _SoftPumpValve.TurnValve(false, out _);
  438. _FastPumpValve.TurnValve(false, out _);
  439. _TurboPumpPumpingValve.TurnValve(false, out _);
  440. _TurboPumpPurgeValve.TurnValve(false, out _);
  441. _GuageValve.TurnValve(false, out _);
  442. _LoadlockVentValve.TurnValve(false, out _);
  443. _LoadlockPumpingValve.TurnValve(false, out _);
  444. _N2Valve.TurnValve(false, out _);
  445. _FastPumpValve.TurnValve(false, out _);
  446. _Mfc1Valve.TurnValve(false, out _);
  447. _Mfc2Valve.TurnValve(false, out _);
  448. _Mfc3Valve.TurnValve(false, out _);
  449. _Mfc4Valve.TurnValve(false, out _);
  450. _Mfc5Valve.TurnValve(false, out _);
  451. _Mfc6Valve.TurnValve(false, out _);
  452. _Mfc7Valve.TurnValve(false, out _);
  453. _Mfc8Valve.TurnValve(false, out _);
  454. foreach (var stick in _gasLines)
  455. {
  456. stick.Stop();
  457. }
  458. }
  459. public void TurnDryPump(bool on)
  460. {
  461. //_pressureController.StartPump(on);
  462. _MainPump?.SetPumpOnOff(on);
  463. }
  464. public void TurnTurboPump(bool on)
  465. {
  466. _TurboPump?.SetPumpOnOff(on);
  467. }
  468. public void OpenValve(ValveType vlvType, bool on)
  469. {
  470. switch (vlvType)
  471. {
  472. case ValveType.PVN21:
  473. _PVN21Valve.TurnValve(on, out _);
  474. break;
  475. case ValveType.PVN22:
  476. _PVN22Valve.TurnValve(on, out _);
  477. break;
  478. case ValveType.PV11:
  479. _PV11Valve.TurnValve(on, out _);
  480. break;
  481. case ValveType.PV12:
  482. _PV12Valve.TurnValve(on, out _);
  483. break;
  484. case ValveType.PV21:
  485. _PV21Valve.TurnValve(on, out _);
  486. break;
  487. case ValveType.PV22:
  488. _PV22Valve.TurnValve(on, out _);
  489. break;
  490. case ValveType.PV31:
  491. _PV31Valve.TurnValve(on, out _);
  492. break;
  493. case ValveType.PV32:
  494. _PV32Valve.TurnValve(on, out _);
  495. break;
  496. case ValveType.PV41:
  497. _PV41Valve.TurnValve(on, out _);
  498. break;
  499. case ValveType.PV42:
  500. _PV42Valve.TurnValve(on, out _);
  501. break;
  502. case ValveType.N2:
  503. _N2Valve.TurnValve(on, out _);
  504. break;
  505. case ValveType.PVHe1:
  506. _PVHe1Valve.TurnValve(on, out _);
  507. break;
  508. case ValveType.PVHe2:
  509. _PVHe2Valve.TurnValve(on, out _);
  510. break;
  511. case ValveType.GasFinal:
  512. _GasFinalValve.TurnValve(on, out _);
  513. break;
  514. case ValveType.SoftPump:
  515. _SoftPumpValve.TurnValve(on, out _);
  516. break;
  517. case ValveType.FastPump:
  518. _FastPumpValve.TurnValve(on, out _);
  519. break;
  520. case ValveType.TurboPumpPumping:
  521. _TurboPumpPumpingValve.TurnValve(on, out _);
  522. break;
  523. case ValveType.TurboPumpPurge:
  524. _TurboPumpPurgeValve.TurnValve(on, out _);
  525. break;
  526. case ValveType.Guage:
  527. _GuageValve.TurnValve(on, out _);
  528. break;
  529. case ValveType.LoadlockVent:
  530. _LoadlockVentValve.TurnValve(on, out _);
  531. break;
  532. case ValveType.LoadlockPumping:
  533. _LoadlockPumpingValve.TurnValve(on, out _);
  534. break;
  535. case ValveType.Mfc1:
  536. _Mfc1Valve.TurnValve(on, out _);
  537. break;
  538. case ValveType.Mfc2:
  539. _Mfc2Valve.TurnValve(on, out _);
  540. break;
  541. case ValveType.Mfc3:
  542. _Mfc3Valve.TurnValve(on, out _);
  543. break;
  544. case ValveType.Mfc4:
  545. _Mfc4Valve.TurnValve(on, out _);
  546. break;
  547. case ValveType.Mfc5:
  548. _Mfc5Valve.TurnValve(on, out _);
  549. break;
  550. case ValveType.Mfc6:
  551. _Mfc6Valve.TurnValve(on, out _);
  552. break;
  553. case ValveType.Mfc7:
  554. _Mfc7Valve.TurnValve(on, out _);
  555. break;
  556. case ValveType.Mfc8:
  557. _Mfc8Valve.TurnValve(on, out _);
  558. break;
  559. default:
  560. throw new ArgumentOutOfRangeException($"Argument error {vlvType}-{on}");
  561. }
  562. }
  563. public override void Monitor()
  564. {
  565. foreach (var gas in _gasLines)
  566. {
  567. gas.Monitor();
  568. }
  569. CheckInterlock();
  570. }
  571. private void CheckInterlock()
  572. {
  573. if (ProcessPressure > 100 && _GuageValve.SetPoint)
  574. {
  575. _GuageValve.TurnValve(false, out _);
  576. LOG.Write(eEvent.WARN_DEVICE_INFO, Module, $"Process pressure:{ProcessPressure} exceed 100 mtorr, Guage Valve (DO-31) closed automaticlly.");
  577. }
  578. if(ForelinePressure > _foreline_interlock_pressure)
  579. {
  580. if(_TurboPumpPumpingValve.SetPoint || _TurboPumpPurgeValve.SetPoint || _pendulumValve.IsOpen)
  581. {
  582. _pendulumValve.TurnValve(false);
  583. _TurboPumpPurgeValve.TurnValve(false, out _);
  584. _TurboPumpPumpingValve.TurnValve(false, out _);
  585. LOG.Write(eEvent.WARN_DEVICE_INFO, Module, $"Foreline pressure:{ForelinePressure} exceed {_foreline_interlock_pressure} mtorr, Pendulum valve & PV6 & PV7 closed automaticlly.");
  586. }
  587. }
  588. }
  589. public void BuzzerBlinking(double time)
  590. {
  591. _SignalTower.BuzzerBlinking(time);
  592. }
  593. public void SwitchOnBuzzerAndRed()
  594. {
  595. _SignalTower.SwitchOnBuzzerAndRed("", null);
  596. }
  597. public override void Home()
  598. {
  599. // 与yp讨论过,PM 初始化不需要
  600. SetLiftPin(MovementPosition.Down, out _);
  601. SetSlitDoor(false, out _);
  602. }
  603. public bool SetLiftPin(MovementPosition dirt, out string reason)
  604. {
  605. reason = string.Empty;
  606. switch (dirt)
  607. {
  608. case MovementPosition.Down:
  609. return _LiftPin.SetCylinder(false, out reason);
  610. case MovementPosition.Up:
  611. return _LiftPin.SetCylinder(true, out reason);
  612. case MovementPosition.Left:
  613. case MovementPosition.Right:
  614. case MovementPosition.Middle:
  615. throw new ArgumentException("Movement argument error");
  616. }
  617. return true;
  618. }
  619. public void SetSlitDoor(bool open, out string reason)
  620. {
  621. reason = string.Empty;
  622. if(open)
  623. {
  624. double maxPressureDifference = SC.GetValue<double>("System.PMLLMaxPressureDifference");
  625. if(Math.Abs(LoadlockPressure - ChamberPressure) > maxPressureDifference)
  626. {
  627. reason = $"{Module} and Loadlock pressure difference exceeds the max limit";
  628. LOG.Write(eEvent.ERR_DEVICE_INFO, Module, reason);
  629. return;
  630. }
  631. }
  632. _slitDoor.SetCylinder(open, out reason);
  633. }
  634. public bool RetractWafer()
  635. {
  636. return _LoadLockArm.SetCylinder(false, out _);
  637. }
  638. public bool ExtendWafer()
  639. {
  640. return _LoadLockArm.SetCylinder(true, out _);
  641. }
  642. public bool FlowGas(int gasNum, double val)
  643. {
  644. if (_gasLines.Length <= gasNum)
  645. return false;
  646. _gasLines[gasNum].Flow(val);
  647. return true;
  648. }
  649. public bool StopGas(int gasNum)
  650. {
  651. if (_gasLines.Length <= gasNum)
  652. return false;
  653. _gasLines[gasNum].Stop();
  654. return true;
  655. }
  656. public void StopAllGases()
  657. {
  658. foreach (var line in _gasLines)
  659. {
  660. line.Stop();
  661. }
  662. }
  663. public bool TurnPendulumValve(bool on)
  664. {
  665. return _pendulumValve.TurnValve(on);
  666. }
  667. public bool SetPVPressure(int pressure)
  668. {
  669. return _pendulumValve.SetPressure(pressure);
  670. }
  671. public bool SetPVPostion(int position)
  672. {
  673. return _pendulumValve.SetPosition(position);
  674. }
  675. public int GetPVPosition()
  676. {
  677. return _pendulumValve.Position;
  678. }
  679. public void HeatChiller(double value, double offset)
  680. {
  681. _Chiller?.SetChillerTemp((float)value, (float)offset);
  682. _Chiller?.SetChillerOnOff(true);
  683. }
  684. public bool CheckChillerStatus()
  685. {
  686. return _Chiller != null /*&& _Chiller.IsRunning*/ && !_Chiller.IsError;
  687. }
  688. public void SetGeneratorCommunicationMode(int mode)
  689. {
  690. _Generator?.SetCommunicationMode(mode);
  691. }
  692. public bool GeneratorPowerOn(bool on)
  693. {
  694. if (_Generator == null) return false;
  695. if (on && !IsRFGInterlockOn)
  696. {
  697. LOG.Write(eEvent.ERR_RF, Module, "射频电源 Interlock条件不满足");
  698. return false;
  699. }
  700. return _Generator.SetPowerOnOff(on, out _);
  701. }
  702. public bool GeneratorSetpower(float val)
  703. {
  704. if (_Generator == null) return false;
  705. if (Math.Abs(val) > 0.01)
  706. _Generator.SetPower((ushort)val);
  707. return true;
  708. }
  709. public bool GeneratorBiasPowerOn(bool on)
  710. {
  711. if (_GeneratorBias == null) return false;
  712. if (on && !IsRFGInterlockOn)
  713. {
  714. LOG.Write(eEvent.ERR_RF, Module, "Bias射频电源 Interlock条件不满足");
  715. return false;
  716. }
  717. return _GeneratorBias.SetPowerOnOff(on, out _);
  718. }
  719. public bool GeneratorBiasSetpower(float val)
  720. {
  721. if (_GeneratorBias == null) return false;
  722. if (Math.Abs(val) > 0.01)
  723. _GeneratorBias.SetPower((ushort)val);
  724. return true;
  725. }
  726. public bool GeneratorBiasSetMatchMode(bool val)
  727. {
  728. if (_GeneratorBias == null) return false;
  729. string reason = string.Empty;
  730. _GeneratorBias.SetMatchingAutoMode(val, out reason);
  731. return true;
  732. }
  733. public bool SetMatchPosition(float c1, float c2)
  734. {
  735. if (_Match == null) return false;
  736. string reason = string.Empty;
  737. _Match.SetMatchPosition(c1, c2, out reason);
  738. return true;
  739. }
  740. public bool SetBiasMatchPosition(float c1, float c2)
  741. {
  742. if (_BiasMatch == null) return false;
  743. string reason = string.Empty;
  744. _BiasMatch.SetMatchPosition(c1, c2, out reason);
  745. return true;
  746. }
  747. public bool SetBiasPulseMode(bool on)
  748. {
  749. if (_GeneratorBias == null) return false;
  750. _GeneratorBias.SetPulseMode(on);
  751. return true;
  752. }
  753. public bool SetBiasPulseRateFreq(int nFreq)
  754. {
  755. if (_GeneratorBias == null) return false;
  756. _GeneratorBias.SetPulseRateFreq(nFreq);
  757. return true;
  758. }
  759. public bool SetDiasPulseDutyCycle(int percentage)
  760. {
  761. if (_GeneratorBias == null) return false;
  762. _GeneratorBias.SetPulseDutyCycle(percentage);
  763. return true;
  764. }
  765. public bool SetESCClampVoltage(int nVoltage)
  766. {
  767. if (_ESCHV == null) return false;
  768. return _ESCHV.SetOutputVoltage(nVoltage);
  769. }
  770. public bool CheckGeneratorAndHVInterlock(VenusDevice device)
  771. {
  772. eEvent evt = device == VenusDevice.Rf ? eEvent.ERR_RF : eEvent.ERR_ESC_HV;
  773. string deviceName = device == VenusDevice.Rf ? "RF Generator" : "ESC HV";
  774. if (!PMLidClosed)
  775. {
  776. LOG.Write(evt, Module, $"Cannot Power ON {deviceName} as PM Lid is Open.");
  777. return false;
  778. }
  779. if (!IsVAC)
  780. {
  781. LOG.Write(evt, Module, $"Cannot Power ON {deviceName} as PM is not Vacuum.");
  782. return false;
  783. }
  784. if(!IsWaterFlowOk)
  785. {
  786. LOG.Write(evt, Module, $"Cannot Power ON {deviceName} as Water Flow is OFF.");
  787. return false;
  788. }
  789. if(!IsRFGInterlockOn)
  790. {
  791. LOG.Write(evt, Module, $"Cannot Power ON {deviceName} as Generator Interlock is OFF.");
  792. return false;
  793. }
  794. if(!SourceRFFanInterlock)
  795. {
  796. LOG.Write(evt, Module, $"Cannot Power ON {deviceName} as Source RF Fan is OFF.");
  797. return false;
  798. }
  799. if(!SlitDoorClosed)
  800. {
  801. LOG.Write(evt, Module, $"Cannot Power ON {deviceName} as Slit Door is open.");
  802. return false;
  803. }
  804. return true;
  805. }
  806. #region EndPoint
  807. public void EPDRecipeStart()
  808. {
  809. _epdClient.RecipeStart();
  810. }
  811. public void EPDRecipeStop()
  812. {
  813. _epdClient.RecipeStop();
  814. }
  815. public void EPDStepStart(string cfgName)
  816. {
  817. _epdClient.StepStart(cfgName);
  818. }
  819. public void EPDStepStop()
  820. {
  821. _epdClient.StepStop();
  822. }
  823. #endregion
  824. public void SetBacksideHeFlow(double flow)
  825. {
  826. if (_backsideHe == null) return ;
  827. _backsideHe.Flow(flow);
  828. }
  829. public bool SetBacksideHePressure(int mTorr)
  830. {
  831. if (_backsideHe == null) return false;
  832. return _backsideHe.SetBacksideHelium(mTorr);
  833. }
  834. public bool SetBacksideHeThreshold(int nMin, int nMax)
  835. {
  836. if (_backsideHe == null) return false;
  837. return _backsideHe.SetFlowThreshold(nMin, nMax);
  838. }
  839. }
  840. }