JetKepler2200BPM.cs 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999
  1. using Aitex.Core.Common.DeviceData;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.Device.Unit;
  4. using Aitex.Core.RT.SCCore;
  5. using Aitex.Core.RT.Log;
  6. using MECF.Framework.Common.Device.Bases;
  7. using MECF.Framework.Common.Equipment;
  8. using System;
  9. using Venus_Core;
  10. using Venus_RT.Devices.IODevices;
  11. using IoMfc = Venus_RT.Devices.IODevices.IoMfc;
  12. using System.Threading.Tasks;
  13. using System.Diagnostics;
  14. using CommunityToolkit.HighPerformance;
  15. using Aitex.Core.Util;
  16. namespace Venus_RT.Devices
  17. {
  18. class JetKepler2200BPM : JetPMBase
  19. {
  20. private readonly IoLid _Lid;
  21. //private readonly IoLid _LidLoadlock;
  22. private readonly IoCylinder _slitDoor;
  23. //private readonly IoCylinder _LiftPin;
  24. //private readonly IoCylinder _LoadLockArm;
  25. private readonly IoValve _PVN21Valve;
  26. private readonly IoValve _PVN22Valve;
  27. private readonly IoValve _PV11Valve;
  28. private readonly IoValve _PV12Valve;
  29. private readonly IoValve _PV21Valve;
  30. private readonly IoValve _PV22Valve;
  31. private readonly IoValve _PV31Valve;
  32. private readonly IoValve _PV32Valve;
  33. private readonly IoValve _PV41Valve;
  34. private readonly IoValve _PV42Valve;
  35. private readonly IoValve _N2Valve;
  36. private readonly IoValve _PurgeValve;
  37. private readonly IoValve _Mfc1Valve;
  38. private readonly IoValve _Mfc2Valve;
  39. private readonly IoValve _Mfc3Valve;
  40. private readonly IoValve _Mfc4Valve;
  41. private readonly IoValve _Mfc5Valve;
  42. private readonly IoValve _Mfc6Valve;
  43. //private readonly IoValve _Mfc7Valve;
  44. //private readonly IoValve _Mfc8Valve;
  45. //private readonly IoValve _PVHe1Valve;
  46. //private readonly IoValve _PVHe2Valve;
  47. private readonly IoValve _GasFinalValve;
  48. private readonly IoValve _SoftPumpValve;
  49. private readonly IoValve _FastPumpValve;
  50. private readonly IoValve _TurboPumpPumpingValve;
  51. private readonly IoValve _TurboPumpPurgeValve;
  52. private readonly IoValve _GuageValve;
  53. //private readonly IoValve _LoadlockVentValve;
  54. //private readonly IoValve _LoadlockPumpingValve;
  55. private readonly IoSensor _ATM_sw;
  56. private readonly IoSensor _CDAPressure;
  57. private readonly IoSensor _ATM_Loadlock_sw;
  58. private readonly IoSensor _N2Pressure_sw;
  59. private readonly IoSensor _VAC_sw;
  60. private readonly IoSensor _WLK_sw;
  61. private readonly IoSensor _Water_Flow;
  62. private readonly IoSensor _RFG_Interlock;
  63. private readonly IoSensor _PM_Lid_Closed;
  64. private readonly IoSensor _Source_RF_Match_Interlock;
  65. private readonly IoSensor _PM_SlitDoor_Closed;
  66. private readonly IoSensor _TurboPumpInterlock;
  67. private readonly IoSensor _GasBoxDoor;
  68. private readonly IoSensor _GasBoxPressure;
  69. private readonly IoSensor _GasBoxN2Flow_sw;
  70. private readonly IoHighTemperatureHeater _highTemperatureHeater;
  71. private readonly F_TRIG _GasBoxN2FlowSwitchTrigger = new F_TRIG();
  72. private readonly PumpBase _MainPump;
  73. //private readonly ESC5HighVoltage _ESCHV;
  74. private readonly AdixenTurboPump _TurboPump;
  75. private readonly PendulumValve _pendulumValve;
  76. //private readonly ChillerBase _Chiller;
  77. private readonly RfPowerBase _Generator;//srf=>AdTecGenerator
  78. private readonly RfMatchBase _Match;
  79. //private readonly RfPowerBase _GeneratorBias;//brf=>CometRF
  80. private readonly RfMatchBase _RFBox;
  81. //private readonly IoSignalTower _SignalTower;
  82. private readonly IoHeater _ForelineTC;
  83. private readonly IoHeater _WallTC;
  84. private readonly IoPressureControl _pressureController;
  85. private readonly IoGasStick[] _gasLines;
  86. private readonly IoGasStick _gasLineN2;
  87. //private readonly IoBacksideHe _backsideHe;
  88. //private readonly IoMfc _heMfc;
  89. private readonly double _foreline_interlock_pressure = 750;
  90. private Stopwatch _GasRFStopWatch = new Stopwatch();
  91. private bool _GasFlag = false;
  92. //private PressureType _PressureType;
  93. private double processPressureLimit;
  94. // 盖子的状态
  95. public override bool IsLidClosed => _Lid.OFFFeedback;
  96. //public override bool IsLidLoadlockClosed => _LidLoadlock.OFFFeedback;
  97. public override bool IsSlitDoorClosed => !_slitDoor.ONFeedback && _slitDoor.OFFFeedback;
  98. public override bool IsPumpRunning => _MainPump.IsRunning;
  99. public override bool IsTurboPumpRunning => _TurboPump.IsRunning;
  100. public override bool IsTurboPumpAtSpeed => _TurboPump.AtSpeed;
  101. public override bool IsISOOpen => _TurboPumpPumpingValve.Status;
  102. public override float TurboPumpSpeed => _TurboPump.Speed;
  103. public override bool HasPumpError => _MainPump.IsError || !_MainPump.IsRunning;
  104. public override bool HasTurboPumpError => _TurboPump.IsError || !_TurboPump.IsRunning;
  105. public override bool IsCDA_OK => _CDAPressure.Value;
  106. public override bool IsFastPumpOpened => _FastPumpValve.Status;
  107. public override bool IsSoftPumpOpened => _SoftPumpValve.Status;
  108. public override bool IsMfc1ValveOpened => _Mfc1Valve.Status;
  109. public override bool IsMfc2ValveOpened => _Mfc2Valve.Status;
  110. public override bool IsMfc3ValveOpened => _Mfc3Valve.Status;
  111. public override bool IsMfc4ValveOpened => _Mfc4Valve.Status;
  112. public override bool IsMfc5ValveOpened => _Mfc5Valve.Status;
  113. public override bool IsMfc6ValveOpened => _Mfc6Valve.Status;
  114. public override bool IsMfc7ValveOpened => false;
  115. public override bool IsMfc8ValveOpened => false;
  116. public override bool IsGuageValveOpened => _GuageValve.Status;
  117. // 压力信号
  118. public override bool IsATM => _ATM_sw.Value;
  119. public override bool PVN22ValveIsOpen => _PVN22Valve.Status;
  120. public override bool LiftPinIsDown => false;
  121. public override bool LiftPinIsUp => false;
  122. public override bool IsATMLoadlock => _ATM_Loadlock_sw.Value;
  123. public override bool IsVACLoadLock => LoadlockPressure <= 1000;
  124. public override bool IsVAC => _VAC_sw.Value;
  125. public override bool IsWaterFlowOk => true;
  126. public override bool IsWLK => _WLK_sw.Value;
  127. public override bool IsRFGInterlockOn => _RFG_Interlock.Value;
  128. public override bool PMLidClosed => _PM_Lid_Closed.Value;
  129. public override bool TurboPumpInterlock => _TurboPumpInterlock.Value;
  130. public override bool SourceRFMatchInterlock => _Source_RF_Match_Interlock.Value;
  131. public override bool SlitDoorClosed => _PM_SlitDoor_Closed.Value;
  132. //public override double ProcessLowPressure => _pendulumValve.Pressure;
  133. //public override double ProcessHighPressure => _pressureController.ProcessHigh.Value;
  134. public override double CalculationPressure
  135. {
  136. get
  137. {
  138. if (ProcessPressure < ConvertPressureUnit.ConvertmTorrToPa(2000))
  139. {
  140. return ProcessPressure;
  141. }
  142. else
  143. {
  144. return ChamberPressure;
  145. }
  146. }
  147. }
  148. public override double ProcessPressure => _pendulumValve.Pressure;
  149. public override double ChamberPressure => _pressureController.PressureGauge.Value;
  150. public override double ForelinePressure => _pressureController.ForelineGauge.Value;
  151. public override double TargetPressure => ChamberPressure;
  152. public override float ReflectPower => _Generator.ReflectPower;
  153. //public override float BiasReflectPower => _GeneratorBias.ReflectPower;
  154. public override float ForwardPower => _Generator.ForwardPower;
  155. //public override bool BackSideHeOutOfRange => _backsideHe.OutOfRange;
  156. public override float RFMatchC1 => _Match != null ? _Match.TunePosition1 : 0;
  157. public override float RFMatchC2 => _Match != null ? _Match.TunePosition2 : 0;
  158. public override float RFBoxC1 => _RFBox != null ? _RFBox.TunePosition1 : 0;
  159. //public override float BiasRFMatchC2 => _BiasMatch != null ? _BiasMatch.TunePosition1 : 0;
  160. public override double MFC1FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas1").FeedBack;
  161. public override double MFC2FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas2").FeedBack;
  162. public override double MFC3FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas3").FeedBack;
  163. public override double MFC4FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas4").FeedBack;
  164. public override double MFC5FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas5").FeedBack;
  165. public override double MFC6FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas6").FeedBack;
  166. public override float ChamberTemperature => _highTemperatureHeater.HighTemperatureHighHeaterTemperature;
  167. public override float PendulumPressure => _pendulumValve.Pressure;
  168. public override float PendulumPosition => _pendulumValve.Position;
  169. public new ModuleName Module { get; }
  170. public override bool CheckAtm()
  171. {
  172. return _ATM_sw.Value && ChamberPressure > 700000;
  173. }
  174. public override bool CheckSlitDoorOpen()
  175. {
  176. return _slitDoor.State == CylinderState.Open;
  177. }
  178. public override bool CheckSlitDoorClose()
  179. {
  180. return _slitDoor.State == CylinderState.Close;
  181. }
  182. public override bool IsBiasRFAble()
  183. {
  184. return false;
  185. }
  186. public override double TotalGasSetpoint
  187. {
  188. get
  189. {
  190. double sum = 0;
  191. foreach (var gas in _gasLines)
  192. {
  193. sum += gas.FlowSP;
  194. }
  195. return sum;
  196. }
  197. }
  198. public override bool HasGasOutOfRange
  199. {
  200. get
  201. {
  202. foreach (var gas in _gasLines)
  203. {
  204. if (!gas.IsOutOfRange)
  205. return false;
  206. }
  207. return true;
  208. }
  209. }
  210. public override bool PendulumValveIsOpen()
  211. {
  212. return _pendulumValve.IsOpen;
  213. }
  214. #region 构造函数
  215. public JetKepler2200BPM(ModuleName moduleName) : base(moduleName)
  216. {
  217. Module = moduleName;
  218. _Lid = DEVICE.GetDevice<IoLid>($"{Module}.{VenusDevice.Lid}");
  219. //_LidLoadlock = DEVICE.GetDevice<IoLid>($"{Module}.{VenusDevice.LidLoadlock}");
  220. _slitDoor = DEVICE.GetDevice<IoCylinder>($"{Module}.{VenusDevice.SlitDoor}");
  221. //_LiftPin = DEVICE.GetDevice<IoCylinder>($"{Module}.{VenusDevice.LiftPin}");
  222. //_LoadLockArm = DEVICE.GetDevice<IoCylinder>($"{Module}.{VenusDevice.LoadLockArm}");
  223. _PVN21Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVN21}");
  224. _PVN22Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVN22}");
  225. _PV11Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV11}");
  226. _PV12Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV12}");
  227. _PV21Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV21}");
  228. _PV22Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV22}");
  229. _PV31Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV31}");
  230. _PV32Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV32}");
  231. _PV41Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV41}");
  232. _PV42Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePV42}");
  233. _N2Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveN2}");
  234. _PurgeValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePurge}");
  235. _Mfc1Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc1}");
  236. _Mfc2Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc2}");
  237. _Mfc3Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc3}");
  238. _Mfc4Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc4}");
  239. _Mfc5Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc5}");
  240. _Mfc6Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc6}");
  241. //_Mfc7Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc7}");
  242. //_Mfc8Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveMfc8}");
  243. //_PVHe1Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVHe1}");
  244. //_PVHe2Valve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValvePVHe2}");
  245. _GasFinalValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveGasFinal}");
  246. _SoftPumpValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveSoftPump}");
  247. _FastPumpValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveFastPump}");
  248. _TurboPumpPumpingValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveTurboPumpPumping}");
  249. _TurboPumpPurgeValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveTurboPumpPurge}");
  250. _GuageValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveGuage}");
  251. //_LoadlockVentValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveLoadlockVent}");
  252. //_LoadlockPumpingValve = DEVICE.GetDevice<IoValve>($"{Module}.{VenusDevice.ValveLoadlockPumping}");
  253. //_heMfc = DEVICE.GetDevice<IoMfc>($"{Module}.MfcHe");
  254. _ATM_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorATMSwitch");
  255. _ATM_Loadlock_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorLoadlockATMSwitch");
  256. _N2Pressure_sw = DEVICE.GetDevice<IoSensor>($"{Module}.N2PressureOk");
  257. _VAC_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorVacSwitch");
  258. _Water_Flow = DEVICE.GetDevice<IoSensor>($"{Module}.SensorWaterFlowOk");
  259. _WLK_sw = DEVICE.GetDevice<IoSensor>($"{Module}.SensorWaterLeakOk");
  260. _CDAPressure = DEVICE.GetDevice<IoSensor>($"{Module}.SensorCDAPressureOk");
  261. _RFG_Interlock = DEVICE.GetDevice<IoSensor>($"{Module}.GeneratorInterlock");
  262. _PM_Lid_Closed = DEVICE.GetDevice<IoSensor>($"{Module}.SensorPMLidClosed");
  263. _Source_RF_Match_Interlock = DEVICE.GetDevice<IoSensor>($"{Module}.RFMatchInterlock");
  264. _PM_SlitDoor_Closed = DEVICE.GetDevice<IoSensor>($"{Module}.SensorSlitDoorClosed");
  265. _TurboPumpInterlock = DEVICE.GetDevice<IoSensor>($"{Module}.TurboPumpInterlock");
  266. _GasBoxDoor = DEVICE.GetDevice<IoSensor>($"{Module}.GasBoxDoorSW");
  267. _GasBoxPressure = DEVICE.GetDevice<IoSensor>($"{Module}.GasBoxPressureSW");
  268. _GasBoxN2Flow_sw = DEVICE.GetDevice<IoSensor>($"{Module}.GasBoxN2FlowSwitch");
  269. _ForelineTC = DEVICE.GetDevice<IoHeater>($"{Module}.ForelineHeater");
  270. _WallTC = DEVICE.GetDevice<IoHeater>($"{Module}.WallHeater");
  271. //_SignalTower = DEVICE.GetDevice<IoSignalTower>($"{Module}.SignalTower");
  272. _CDAPressure = DEVICE.GetDevice<IoSensor>($"{Module}.SensorCDAPressureOk");
  273. _pressureController = DEVICE.GetDevice<IoPressureControl>($"{Module}.{VenusDevice.PressureControl}");
  274. _gasLines = new IoGasStick[8];
  275. for (int index = 0; index < 8; index++)
  276. {
  277. _gasLines[index] = DEVICE.GetDevice<IoGasStick>($"{Module}.GasStick{index + 1}");
  278. }
  279. _gasLineN2 = DEVICE.GetDevice<IoGasStick>($"{Module}.GasStickN2");
  280. //_backsideHe = DEVICE.GetDevice<IoBacksideHe>($"{Module}.BacksideHelium");
  281. _highTemperatureHeater = DEVICE.GetDevice<IoHighTemperatureHeater>($"{Module}.HighTemperatureHeater");
  282. _MainPump = DEVICE.GetDevice<PumpBase>($"{Module}.{VenusDevice.MainPump}");
  283. // RS232 Dry pump, SKY
  284. if (SC.GetValue<int>($"{Module}.DryPump.CommunicationType") == (int)CommunicationType.RS232)
  285. {
  286. if (SC.GetValue<int>($"{Module}.DryPump.MFG") == (int)DryPumpMFG.SKY)
  287. {
  288. _MainPump = DEVICE.GetDevice<SkyPump>($"{Module}.{VenusDevice.MainPump}");
  289. }
  290. else if (SC.GetValue<int>($"{Module}.DryPump.MFG") == (int)DryPumpMFG.Edwards)
  291. {
  292. _MainPump = DEVICE.GetDevice<EdwardsPump>($"{Module}.{VenusDevice.MainPump}");
  293. }
  294. }
  295. //_ESCHV = DEVICE.GetDevice<ESC5HighVoltage>($"{Module}.{VenusDevice.ESCHV}");
  296. _TurboPump = DEVICE.GetDevice<AdixenTurboPump>($"{Module}.{VenusDevice.TurboPump}");
  297. _pendulumValve = DEVICE.GetDevice<PendulumValve>($"{Module}.{VenusDevice.PendulumValve}");
  298. //if (SC.GetValue<bool>($"{Module}.Chiller.EnableChiller") &&
  299. // SC.GetValue<int>($"{Module}.Chiller.CommunicationType") == (int)CommunicationType.RS232)
  300. //{
  301. // if (SC.GetValue<int>($"{Module}.Chiller.MFG") == (int)ChillerMFG.SMC)
  302. // {
  303. // _Chiller = DEVICE.GetDevice<SMCChiller>($"{Module}.{VenusDevice.Chiller}");
  304. // }
  305. // else if (SC.GetValue<int>($"{Module}.Chiller.MFG") == (int)ChillerMFG.AIRSYS)
  306. // {
  307. // _Chiller = DEVICE.GetDevice<AIRSYSChiller>($"{Module}.{VenusDevice.Chiller}");
  308. // }
  309. //}
  310. // RS223 AdTec Generator
  311. if (SC.GetValue<int>($"{Module}.Rf.CommunicationType") == (int)CommunicationType.RS232 &&
  312. SC.GetValue<int>($"{Module}.Rf.MFG") == (int)GeneratorMFG.AdTec)
  313. {
  314. _Generator = DEVICE.GetDevice<AdTecGenerator>($"{Module}.{VenusDevice.Rf}");
  315. }
  316. processPressureLimit = ConvertPressureUnit.ConvertmTorrToPa(1950);
  317. if (SC.GetValue<int>($"{Module}.Match.CommunicationType") == (int)CommunicationType.RS232 &&
  318. SC.GetValue<int>($"{Module}.Match.MFG") == (int)MatchMFG.AdTec)
  319. {
  320. _Match = DEVICE.GetDevice<AdTecMatch>($"{Module}.{VenusDevice.Match}");
  321. }
  322. else if (
  323. SC.GetValue<int>($"{Module}.Match.MFG") == (int)MatchMFG.Revtech)
  324. {
  325. _Match = DEVICE.GetDevice<RevtechMatch>($"{Module}.{VenusDevice.BiasMatch}");
  326. }
  327. _GasRFStopWatch.Stop();
  328. if (SC.GetValue<bool>($"{Module}.RFBox.EnableMatch") &&
  329. SC.GetValue<int>($"{Module}.RFBox.CommunicationType") == (int)CommunicationType.RS232 &&
  330. SC.GetValue<int>($"{Module}.RFBox.MFG") == (int)MatchMFG.AdTec)
  331. {
  332. _RFBox = DEVICE.GetDevice<AdTecMatch>($"{Module}.{VenusDevice.RFBox}");
  333. }
  334. else if (SC.GetValue<bool>($"{Module}.RFBox.EnableMatch") &&
  335. SC.GetValue<int>($"{Module}.RFBox.MFG") == (int)MatchMFG.Revtech)
  336. {
  337. _RFBox = DEVICE.GetDevice<RevtechMatch>($"{Module}.{VenusDevice.RFBox}");
  338. }
  339. _foreline_interlock_pressure = SC.GetValue<int>($"{Module}.PendulumValve.ForelinePressureLimit");
  340. //_PressureType = (PressureType)SC.GetValue<int>("System.PressureUnitType");
  341. //DATA.Subscribe($"{Name}.SCR1", () => GetAiValue($"{Module}.AI_CHB_M-HT_SCR1_PWR_OUT"));
  342. //DATA.Subscribe($"{Name}.SCR2", () => GetAiValue($"{Module}.AI_CHB_M-HT_SCR2_PWR_OUT"));
  343. //DATA.Subscribe($"{Name}.AI_CHB_M-HT_Reference_Power_Output", () => GetAiValue($"{Module}.AI_CHB_M-HT_Reference_Power_Output"));
  344. //DATA.Subscribe($"{Name}.AI_CHB_M-HT_Max_Power", () => GetAiValue($"{Module}.AI_CHB_M-HT_Max_Power"));
  345. //DATA.Subscribe($"{Name}.AI_CHB_M-HT_Min_Power", () => GetAiValue($"{Module}.AI_CHB_M-HT_Min_Power"));
  346. //DATA.Subscribe($"{Name}.AI_CHB_M-HT_Current_Speed", () => GetAiValue($"{Module}.AI_CHB_M-HT_Current_Speed"));
  347. }
  348. #endregion
  349. public async override void CloseValves(int? delayTime = null)
  350. {
  351. _PVN21Valve.TurnValve(false, out _);
  352. // _PVN22Valve.TurnValve(false, out _);
  353. _PV11Valve.TurnValve(false, out _);
  354. _PV12Valve.TurnValve(false, out _);
  355. _PV21Valve.TurnValve(false, out _);
  356. _PV22Valve.TurnValve(false, out _);
  357. _PV31Valve.TurnValve(false, out _);
  358. _PV32Valve.TurnValve(false, out _);
  359. _PV41Valve.TurnValve(false, out _);
  360. _PV42Valve.TurnValve(false, out _);
  361. //_PVHe1Valve.TurnValve(false, out _);
  362. //_PVHe2Valve.TurnValve(false, out _);
  363. _SoftPumpValve.TurnValve(false, out _);
  364. _FastPumpValve.TurnValve(false, out _);
  365. _TurboPumpPumpingValve.TurnValve(false, out _);
  366. _TurboPumpPurgeValve.TurnValve(false, out _);
  367. _GuageValve.TurnValve(false, out _);
  368. _N2Valve.TurnValve(false, out _);
  369. _FastPumpValve.TurnValve(false, out _);
  370. _Mfc1Valve.TurnValve(false, out _);
  371. _Mfc2Valve.TurnValve(false, out _);
  372. _Mfc3Valve.TurnValve(false, out _);
  373. _Mfc4Valve.TurnValve(false, out _);
  374. _Mfc5Valve.TurnValve(false, out _);
  375. _Mfc6Valve.TurnValve(false, out _);
  376. //_Mfc7Valve.TurnValve(false, out _);
  377. //_Mfc8Valve.TurnValve(false, out _);
  378. foreach (var stick in _gasLines)
  379. {
  380. stick.Stop();
  381. }
  382. if (delayTime != null)
  383. {
  384. await Task.Delay((int)delayTime);
  385. }
  386. _GasFinalValve.TurnValve(false, out _);
  387. _PurgeValve.TurnValve(false, out _);
  388. }
  389. public override void TurnDryPump(bool on)
  390. {
  391. //_pressureController.StartPump(on);
  392. _MainPump?.SetPumpOnOff(on);
  393. }
  394. public override void TurnTurboPump(bool on)
  395. {
  396. _TurboPump?.SetPumpOnOff(on);
  397. }
  398. public override void OpenValve(ValveType vlvType, bool on)
  399. {
  400. switch (vlvType)
  401. {
  402. case ValveType.PVN21:
  403. _PVN21Valve.TurnValve(on, out _);
  404. break;
  405. case ValveType.PVN22:
  406. _PVN22Valve.TurnValve(on, out _);
  407. LOG.Write(eEvent.EV_DEVICE_INFO, Module, $"{(on ? "打开" : "关闭")} 阀 {vlvType.ToString()}");
  408. break;
  409. case ValveType.PV11:
  410. _PV11Valve.TurnValve(on, out _);
  411. break;
  412. case ValveType.PV12:
  413. _PV12Valve.TurnValve(on, out _);
  414. break;
  415. case ValveType.PV21:
  416. _PV21Valve.TurnValve(on, out _);
  417. break;
  418. case ValveType.PV22:
  419. _PV22Valve.TurnValve(on, out _);
  420. break;
  421. case ValveType.PV31:
  422. _PV31Valve.TurnValve(on, out _);
  423. break;
  424. case ValveType.PV32:
  425. _PV32Valve.TurnValve(on, out _);
  426. break;
  427. case ValveType.PV41:
  428. _PV41Valve.TurnValve(on, out _);
  429. break;
  430. case ValveType.PV42:
  431. _PV42Valve.TurnValve(on, out _);
  432. break;
  433. case ValveType.N2:
  434. _N2Valve.TurnValve(on, out _);
  435. break;
  436. case ValveType.Purge:
  437. _PurgeValve.TurnValve(on, out _);
  438. break;
  439. //case ValveType.PVHe1:
  440. // _PVHe1Valve.TurnValve(on, out _);
  441. // break;
  442. //case ValveType.PVHe2:
  443. // _PVHe2Valve.TurnValve(on, out _);
  444. // break;
  445. case ValveType.GasFinal:
  446. _GasFinalValve.TurnValve(on, out _);
  447. break;
  448. case ValveType.SoftPump:
  449. _SoftPumpValve.TurnValve(on, out _);
  450. break;
  451. case ValveType.FastPump:
  452. _FastPumpValve.TurnValve(on, out _);
  453. break;
  454. case ValveType.TurboPumpPumping:
  455. _TurboPumpPumpingValve.TurnValve(on, out _);
  456. break;
  457. case ValveType.TurboPumpPurge:
  458. _TurboPumpPurgeValve.TurnValve(on, out _);
  459. break;
  460. case ValveType.Guage:
  461. _GuageValve.TurnValve(on, out _);
  462. break;
  463. //case ValveType.LoadlockVent:
  464. // _LoadlockVentValve.TurnValve(on, out _);
  465. // break;
  466. //case ValveType.LoadlockPumping:
  467. // _LoadlockPumpingValve.TurnValve(on, out _);
  468. // break;
  469. case ValveType.Mfc1:
  470. _Mfc1Valve.TurnValve(on, out _);
  471. break;
  472. case ValveType.Mfc2:
  473. _Mfc2Valve.TurnValve(on, out _);
  474. break;
  475. case ValveType.Mfc3:
  476. _Mfc3Valve.TurnValve(on, out _);
  477. break;
  478. case ValveType.Mfc4:
  479. _Mfc4Valve.TurnValve(on, out _);
  480. break;
  481. case ValveType.Mfc5:
  482. _Mfc5Valve.TurnValve(on, out _);
  483. break;
  484. case ValveType.Mfc6:
  485. _Mfc6Valve.TurnValve(on, out _);
  486. break;
  487. //case ValveType.Mfc7:
  488. // _Mfc7Valve.TurnValve(on, out _);
  489. // break;
  490. //case ValveType.Mfc8:
  491. // _Mfc8Valve.TurnValve(on, out _);
  492. // break;
  493. //default:
  494. // throw new ArgumentOutOfRangeException($"Argument error {vlvType}-{on}");
  495. }
  496. }
  497. public override void Monitor()
  498. {
  499. foreach (var gas in _gasLines)
  500. {
  501. gas.Monitor();
  502. }
  503. CheckPermanentInterlock();
  504. CheckHighTemperatureHeaterInterlock();
  505. }
  506. private void CheckHighTemperatureHeaterInterlock()
  507. {
  508. _GasBoxN2FlowSwitchTrigger.CLK = _GasBoxN2Flow_sw.Value;
  509. if (_GasBoxN2FlowSwitchTrigger.Q)
  510. {
  511. var limitTemperature = SC.GetValue<double>($"{Module}.HighTemperatureHeater.N2WarningTemperatureLimit");
  512. SetHighTemperatureHeaterTemperature((int)limitTemperature);
  513. LOG.Write(eEvent.WARN_DEVICE_INFO, Module, $"Gas Box N2 Flow Trigger Warning,HighTemperatureHeater Cool Down to {limitTemperature} ℃");
  514. }
  515. }
  516. protected override void CheckPermanentInterlock()
  517. {
  518. if (ChamberPressure >= processPressureLimit && _GuageValve.SetPoint)
  519. {
  520. _GuageValve.TurnValve(false, out _);
  521. LOG.Write(eEvent.WARN_DEVICE_INFO, Module, $"Process pressure:{ChamberPressure} exceed {processPressureLimit} Pa, Guage Valve (DO-31) closed automaticlly.");
  522. }
  523. if (ChamberPressure < processPressureLimit && !_GuageValve.SetPoint)
  524. {
  525. _GuageValve.TurnValve(true, out _);
  526. LOG.Write(eEvent.WARN_DEVICE_INFO, Module, $"Process pressure:{ChamberPressure} less than {processPressureLimit} Pa, Guage Valve (DO-31) open automaticlly.");
  527. }
  528. }
  529. public override void CheckIdleInterlock()
  530. {
  531. if (ForelinePressure > _foreline_interlock_pressure)
  532. {
  533. if (_TurboPumpPumpingValve.SetPoint || _TurboPumpPurgeValve.SetPoint || _pendulumValve.IsOpen)
  534. {
  535. _pendulumValve.TurnValve(false);
  536. _TurboPumpPurgeValve.TurnValve(false, out _);
  537. _TurboPumpPumpingValve.TurnValve(false, out _);
  538. LOG.Write(eEvent.ERR_DEVICE_INFO, Module, $"Foreline pressure:{ForelinePressure} exceed {_foreline_interlock_pressure} Pa, Pendulum valve & PV6 & PV7 closed automaticlly.");
  539. }
  540. }
  541. }
  542. public override void Home()
  543. {
  544. //2023/03/08添加
  545. OpenValve(ValveType.PVN22, true);
  546. _Generator?.ReConnect();
  547. _Match?.ReConnect();
  548. _MainPump?.ReConnect();
  549. _TurboPump?.ReConnect();
  550. _pendulumValve?.ReConnect();
  551. _RFBox?.ReConnect();
  552. }
  553. public override bool FlowGas(int gasNum, double val)
  554. {
  555. if (_gasLines.Length <= gasNum)
  556. return false;
  557. //double value = (val / _gasLines[gasNum]._mfc.Scale) * 100;
  558. //double setPoint =Math.Round( value / 8000 * _gasLines[gasNum]._mfc.Scale,2);
  559. _gasLines[gasNum].Flow(val);
  560. return true;
  561. }
  562. public override bool StopGas(int gasNum)
  563. {
  564. if (_gasLines.Length <= gasNum)
  565. return false;
  566. _gasLines[gasNum].Stop();
  567. return true;
  568. }
  569. public override bool FlowN2(double val)
  570. {
  571. _gasLineN2.Flow(val);
  572. return true;
  573. }
  574. public override bool StopN2()
  575. {
  576. _gasLineN2.Stop();
  577. return true;
  578. }
  579. public override void StopAllGases()
  580. {
  581. foreach (var line in _gasLines)
  582. {
  583. line.Stop();
  584. }
  585. }
  586. public override bool TurnPendulumValve(bool on)
  587. {
  588. return _pendulumValve.TurnValve(on);
  589. }
  590. public override bool SetPVPressure(float pressure)
  591. {
  592. return _pendulumValve.SetPressure(pressure);
  593. }
  594. public override bool SetPVPostion(float position)
  595. {
  596. return _pendulumValve.SetPosition(position);
  597. }
  598. public override float GetPVPosition()
  599. {
  600. return _pendulumValve.Position;
  601. }
  602. //public override async void HeatChiller(ChillerType chillerType, double value, double offset)
  603. //{
  604. // _Chiller?.SetChillerTemp((float)value, (float)offset);
  605. // await Task.Delay(1000);
  606. // _Chiller?.SetChillerOnOff(true);
  607. //}
  608. //public override void OnOffChiller(ChillerType chillerType, bool onoff)
  609. //{
  610. // _Chiller?.SetChillerOnOff(onoff);
  611. //}
  612. //public override bool CheckChillerStatus()
  613. //{
  614. // return _Chiller != null /*&& _Chiller.IsRunning*/ && !_Chiller.IsError;
  615. //}
  616. public override void SetGeneratorCommunicationMode(int mode)
  617. {
  618. _Generator?.SetCommunicationMode(mode);
  619. }
  620. public override bool GeneratorPowerOn(bool on)
  621. {
  622. if (_Generator == null) return false;
  623. if (on && !IsRFGInterlockOn)
  624. {
  625. LOG.Write(eEvent.ERR_RF, Module, "射频电源 Interlock条件不满足");
  626. return false;
  627. }
  628. return _Generator.SetPowerOnOff(on, out _);
  629. }
  630. public override bool GeneratorSetpower(float val)
  631. {
  632. if (_Generator == null) return false;
  633. if (Math.Abs(val) > 0.01)
  634. _Generator.SetPower((ushort)val);
  635. return true;
  636. }
  637. public override bool SetRFBoxC1Position(float c1)
  638. {
  639. if (_RFBox == null) return false;
  640. _RFBox.SetMatchPositionC1(c1, out _);
  641. return true;
  642. }
  643. public override bool SetWallTCTemperature(float value)
  644. {
  645. return _WallTC.RampTemp(value);
  646. }
  647. //public override bool GeneratorBiasSetMatchMode(bool val)
  648. //{
  649. // if (_GeneratorBias == null) return false;
  650. // string reason = string.Empty;
  651. // _GeneratorBias.SetMatchingAutoMode(val, out reason);
  652. // return true;
  653. //}
  654. public override bool SetMatchPosition(float c1, float c2)
  655. {
  656. if (_Match == null) return false;
  657. string reason = string.Empty;
  658. _Match.SetMatchPosition(c1, c2, out reason);
  659. return true;
  660. }
  661. public override bool SetMatchWorkMode(MatchWorkMode matchWorkMode)
  662. {
  663. if (_Match == null) return false;
  664. if (matchWorkMode == MatchWorkMode.Auto)
  665. {
  666. return _Match.SetMatchMode(EnumRfMatchTuneMode.Auto, out _);
  667. }
  668. else if (matchWorkMode == MatchWorkMode.Manual)
  669. {
  670. return _Match.SetMatchMode(EnumRfMatchTuneMode.Manual, out _);
  671. }
  672. return false;
  673. }
  674. public override bool CheckGeneratorAndHVInterlock(VenusDevice device)
  675. {
  676. eEvent evt = device == VenusDevice.Rf ? eEvent.ERR_RF : eEvent.ERR_ESC_HV;
  677. if (!PMLidClosed)
  678. {
  679. LOG.Write(evt, Module, $"Cannot Power ON {device} as PM Lid is Open.");
  680. return false;
  681. }
  682. if (!IsVAC)
  683. {
  684. LOG.Write(evt, Module, $"Cannot Power ON {device} as PM is not Vacuum.");
  685. return false;
  686. }
  687. if (!IsWaterFlowOk)
  688. {
  689. LOG.Write(evt, Module, $"Cannot Power ON {device} as Water Flow is OFF.");
  690. return false;
  691. }
  692. if (!IsRFGInterlockOn)
  693. {
  694. LOG.Write(evt, Module, $"Cannot Power ON {device} as Generator Interlock is OFF.");
  695. return false;
  696. }
  697. if (!SlitDoorClosed)
  698. {
  699. LOG.Write(evt, Module, $"Cannot Power ON {device} as Slit Door is open.");
  700. return false;
  701. }
  702. return true;
  703. }
  704. //public override bool SetBacksideHeThreshold(int nMin, int nMax)
  705. //{
  706. // if (_backsideHe == null) return false;
  707. // return _backsideHe.SetFlowThreshold(nMin, nMax);
  708. //}
  709. public override bool StartControlPressure(int pressureSetpoint, int flowSetpoint)
  710. {
  711. OpenValve(ValveType.Purge, true);
  712. OpenValve(ValveType.N2, true);
  713. OpenValve(ValveType.PVN22, true);
  714. OpenValve(ValveType.GasFinal, false);
  715. OpenValve(ValveType.TurboPumpPumping, true);
  716. TurnPendulumValve(true);
  717. SetPVPressure(pressureSetpoint);
  718. return true;
  719. }
  720. public async override void AbortControlPressure()
  721. {
  722. OpenValve(ValveType.N2, false);
  723. //OpenValve(ValveType.PVN22, false);
  724. //SetPVPressure(0);
  725. SetPVPostion(1000);
  726. await Task.Delay(500);
  727. OpenValve(ValveType.Purge, false);
  728. //return true;
  729. }
  730. public override bool HighTemperatureHeaterGotoPosition(HighTemperatureHeaterPosition highTemperatureHeaterPosition)
  731. {
  732. return _highTemperatureHeater.GotoPosition(highTemperatureHeaterPosition);
  733. }
  734. public override bool SetHighTemperatureHeaterTemperature(int temperature)
  735. {
  736. _highTemperatureHeater.HighTemperatureHighHeaterTemperature = temperature;
  737. return true;
  738. }
  739. public override bool SetHighTemperatureHeaterRatio(int ratio)
  740. {
  741. _highTemperatureHeater.HighTemperatureHeaterRatio = ratio;
  742. return true;
  743. }
  744. public override bool PreparePlace()
  745. {
  746. //if (!SetSlitDoor(true, out string reason))
  747. //{
  748. // LOG.Write(eEvent.ERR_PM, Module, $"Set Slit Door Open failed:{reason}");
  749. // return false;
  750. //}
  751. return _highTemperatureHeater.GotoPosition(HighTemperatureHeaterPosition.Position1);
  752. }
  753. public override bool PreparePick()
  754. {
  755. //if (!SetSlitDoor(true, out string reason))
  756. //{
  757. // LOG.Write(eEvent.ERR_PM, Module, $"Set Slit Door Open failed:{reason}");
  758. // return false;
  759. //}
  760. return _highTemperatureHeater.GotoPosition(HighTemperatureHeaterPosition.Position1);
  761. }
  762. public override bool PreparePlaceIsOK()
  763. {
  764. return _highTemperatureHeater.CurrentPosition == HighTemperatureHeaterPosition.Position1;
  765. }
  766. public override bool PreparePickIsOK()
  767. {
  768. return _highTemperatureHeater.CurrentPosition == HighTemperatureHeaterPosition.Position1;
  769. }
  770. public override bool EndPlace()
  771. {
  772. //if (!SetSlitDoor(false, out string reason))
  773. //{
  774. // LOG.Write(eEvent.ERR_PM, Module, $"Set Slit Door Close failed:{reason}");
  775. // return false;
  776. //}
  777. if (!_highTemperatureHeater.GotoPosition(HighTemperatureHeaterPosition.Position2))
  778. {
  779. LOG.Write(eEvent.ERR_PM, Module, $"Set High Temperature Heater To Posotion2 failed");
  780. return false;
  781. }
  782. return true;
  783. }
  784. public override bool EndPick()
  785. {
  786. //if (!SetSlitDoor(false, out string reason))
  787. //{
  788. // LOG.Write(eEvent.ERR_PM, Module, $"Set Slit Door Close failed:{reason}");
  789. // return false;
  790. //}
  791. return true;
  792. }
  793. public override bool EndPlaceIsOK()
  794. {
  795. return _highTemperatureHeater.CurrentPosition == HighTemperatureHeaterPosition.Position2;
  796. }
  797. public override bool EndPickIsOK()
  798. {
  799. return CheckSlitDoorClose();
  800. }
  801. public override void RTCloseEvent()
  802. {
  803. if (_Generator.IsPowerOn)
  804. {
  805. GeneratorPowerOn(false);
  806. }
  807. if (PendulumValveIsOpen())
  808. {
  809. TurnPendulumValve(false);
  810. }
  811. }
  812. public override bool RFInterlock(VenusDevice device)
  813. {
  814. eEvent evt = eEvent.ERR_RF;
  815. if (!IsWaterFlowOk)
  816. {
  817. LOG.Write(evt, Module, $"Cannot Power ON {device} as Water Flow is OFF.");
  818. return false;
  819. }
  820. if (!IsRFGInterlockOn)
  821. {
  822. LOG.Write(evt, Module, $"Cannot Power ON {device} as Generator Interlock is OFF.");
  823. return false;
  824. }
  825. if (GasIsOff())
  826. {
  827. LOG.Write(evt, Module, $"Cannot Power ON {device} as Gas is OFF.");
  828. return false;
  829. }
  830. return true;
  831. }
  832. private bool GasIsOff()
  833. {
  834. if ((IsMfc1ValveOpened == false && IsMfc2ValveOpened == false && IsMfc3ValveOpened == false && IsMfc4ValveOpened == false && IsMfc5ValveOpened == false && IsMfc6ValveOpened == false && _GasFlag == false) || (MFC1FeedBack < 1 && MFC2FeedBack < 1 && MFC3FeedBack < 1 && MFC4FeedBack < 1 && MFC5FeedBack < 1 && MFC6FeedBack < 1 && _GasFlag == false))
  835. {
  836. if (_GasRFStopWatch.IsRunning == false)
  837. {
  838. _GasRFStopWatch.Start();
  839. }
  840. if (_GasRFStopWatch.ElapsedMilliseconds > 1500 && _GasRFStopWatch.ElapsedMilliseconds < 2500)
  841. {
  842. var item = _GasRFStopWatch.ElapsedMilliseconds;
  843. _GasRFStopWatch.Reset();
  844. _GasFlag = true;
  845. return true;
  846. }
  847. }
  848. else
  849. {
  850. _GasRFStopWatch.Reset();
  851. _GasFlag = false;
  852. }
  853. return false;
  854. }
  855. public override void PMInError()
  856. {
  857. CloseValves();
  858. GeneratorPowerOn(false);
  859. GeneratorBiasPowerOn(false);
  860. OpenValve(ValveType.TurboPumpPumping, true);
  861. OpenValve(ValveType.TurboPumpPurge, true);
  862. }
  863. }
  864. }