JetPMBase.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. using Aitex.Core.RT.DataCenter;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.OperationCenter;
  4. using Aitex.Core.Util;
  5. using MECF.Framework.Common.Equipment;
  6. using System.Collections.Generic;
  7. using Venus_Core;
  8. using Venus_RT.Modules;
  9. using System;
  10. using Aitex.Core.RT.SCCore;
  11. using System.Threading.Tasks;
  12. using Aitex.Core.RT.Log;
  13. namespace Venus_RT.Devices
  14. {
  15. abstract class JetPMBase : BaseDevice, IDevice
  16. {
  17. // 盖子的状态
  18. public abstract bool IsLidClosed { get; }
  19. public virtual bool IsLidLoadlockClosed { get; }
  20. public abstract bool IsSlitDoorClosed { get; }
  21. public virtual bool IsLinerDoorClosed { get; }
  22. public virtual bool IsISOOpen { get; }
  23. public virtual bool IsPenVOpen { get; }
  24. public abstract bool IsPumpRunning { get; }
  25. public abstract bool IsTurboPumpRunning { get; }
  26. public abstract bool IsTurboPumpAtSpeed { get; }
  27. public abstract float TurboPumpSpeed { get; }
  28. public abstract bool HasPumpError { get; }
  29. public abstract bool HasTurboPumpError { get; }
  30. public abstract bool IsCDA_OK { get; }
  31. public abstract bool IsFastPumpOpened { get; }
  32. public abstract bool IsSoftPumpOpened { get; }
  33. public abstract bool IsMfc1ValveOpened { get; }
  34. public abstract bool IsMfc2ValveOpened { get; }
  35. public abstract bool IsMfc3ValveOpened { get; }
  36. public abstract bool IsMfc4ValveOpened { get; }
  37. public abstract bool IsMfc5ValveOpened { get; }
  38. public abstract bool IsMfc6ValveOpened { get; }
  39. public abstract bool IsMfc7ValveOpened { get; }
  40. public abstract bool IsMfc8ValveOpened { get; }
  41. public abstract bool IsGuageValveOpened { get; }
  42. public abstract bool IsATM { get; }
  43. public abstract bool PVN22ValveIsOpen { get; }
  44. public virtual bool LiftPinIsDown { get; }
  45. public virtual bool LiftPinIsUp { get; }
  46. public abstract bool IsATMLoadlock { get; }
  47. public abstract bool IsVACLoadLock { get; }
  48. public abstract bool IsVAC { get; }
  49. public abstract bool IsWaterFlowOk { get; }
  50. public abstract bool IsWLK { get; }
  51. public abstract bool IsRFGInterlockOn { get; }
  52. public abstract bool PMLidClosed { get; }
  53. public abstract bool TurboPumpInterlock { get; }
  54. public virtual bool SourceRFFanInterlock { get; }
  55. public virtual bool SourceRFMatchInterlock { get; }
  56. public abstract bool SlitDoorClosed { get; }
  57. public virtual bool LinerDoorClosed { get; }
  58. //public virtual double ProcessLowPressure { get; }
  59. //public virtual double ProcessHighPressure { get; }
  60. public abstract double ProcessPressure { get; }
  61. public abstract double ChamberPressure { get; }
  62. public virtual double CalculationPressure { get; }
  63. public abstract double ForelinePressure { get; }
  64. public abstract double TargetPressure { get; }
  65. public virtual double ESCHePressure { get; }
  66. public virtual int ESCOutputVoltage { get; }
  67. public virtual double ESCPositiveOutputCurrent { get; }//R+
  68. public virtual double ESCNegativeOutputCurrent { get; }//R-
  69. public virtual bool IsHVOn { get; }
  70. public virtual float CoolantInletTempFB { get; }
  71. public virtual float CoolantInletWallTempFB { get; }
  72. public virtual float CoolantOutletTempFB { get; }
  73. public virtual bool ChillerIsRunning { get; }
  74. //Loadlock_Arm
  75. public virtual bool IsLoadlockArmRetract { get; }
  76. public virtual bool IsLoadlockArmExtend { get; }
  77. //Loadlock_Arm DO
  78. public virtual bool LoadlockArmRetract { get; }
  79. public virtual bool LoadlockArmExtend { get; }
  80. public abstract float ReflectPower { get; }
  81. public virtual float BiasReflectPower { get; }
  82. public virtual float ForwardPower { get; }
  83. public virtual float BiasForwardPower { get; }
  84. public virtual bool BackSideHeOutOfRange { get; }
  85. public abstract float RFMatchC1 { get; }
  86. public abstract float RFMatchC2 { get; }
  87. public virtual float BiasRFMatchC1 { get; }
  88. public virtual float BiasRFMatchC2 { get; }
  89. public virtual float RFBoxC1 { get; }
  90. public new ModuleName Module;
  91. public virtual MovementPosition LiftPinPosition { get; }
  92. public virtual float ChamberTemperature { get; }
  93. //public virtual float WallTemperature { get; }
  94. //public virtual float ESCTemperature { get; }
  95. public virtual float HighTemperatureHeaterTemperature { get; }
  96. public abstract bool CheckAtm();
  97. public virtual bool CheckSlitDoorOpen()
  98. {
  99. return false;
  100. }
  101. public virtual bool CheckSlitDoorClose()
  102. {
  103. return true;
  104. }
  105. public virtual bool CheckLinerDoorOpen()
  106. {
  107. return true;
  108. }
  109. public virtual bool CheckLinerDoorClose()
  110. {
  111. return true;
  112. }
  113. public virtual bool CheckLiftUp()
  114. {
  115. return false;
  116. }
  117. public virtual bool CheckLiftDown()
  118. {
  119. return false;
  120. }
  121. public abstract double TotalGasSetpoint { get; }
  122. public abstract bool HasGasOutOfRange { get; }
  123. public abstract bool PendulumValveIsOpen();
  124. public virtual double LoadlockPressure { get; }
  125. public virtual double MFC1FeedBack { get; }
  126. public virtual double MFC2FeedBack { get; }
  127. public virtual double MFC3FeedBack { get; }
  128. public virtual double MFC4FeedBack { get; }
  129. public virtual double MFC5FeedBack { get; }
  130. public virtual double MFC6FeedBack { get; }
  131. public virtual double MFC7FeedBack { get; }
  132. public virtual double MFC8FeedBack { get; }
  133. public virtual double MFC9FeedBack { get; }
  134. public virtual double MFC10FeedBack { get; }
  135. public virtual double MFC11FeedBack { get; }
  136. public virtual double MFC12FeedBack { get; }
  137. public virtual double HeliumFeedBack { get; }
  138. public virtual float PendulumPressure { get; }
  139. public virtual float PendulumPosition { get; }
  140. public double TMPressure { get { return Singleton<RouteManager>.Instance.TM.TMPressure; } }
  141. public bool IsTMATM
  142. {
  143. get
  144. {
  145. if (Singleton<RouteManager>.Instance.TM != null)
  146. {
  147. return Singleton<RouteManager>.Instance.TM.IsTMATM;
  148. }
  149. else
  150. {
  151. return Singleton<RouteManager>.Instance.seTM.TMIsATM;
  152. }
  153. }
  154. }
  155. public bool IsTMVAC
  156. {
  157. get
  158. {
  159. if (Singleton<RouteManager>.Instance.TM != null)
  160. {
  161. return Singleton<RouteManager>.Instance.TM.IsTMVac;
  162. }
  163. else
  164. {
  165. return Singleton<RouteManager>.Instance.seTM.TMIsVAC;
  166. }
  167. }
  168. }
  169. // EndPoint
  170. private readonly JetEPDBase _epdClient;
  171. public List<string> EPDCfgList => _epdClient?.CFGFileList;
  172. //public List<string> EPDCfgList=new List<string>() { "1","2"};
  173. public bool EPDCaptured => _epdClient.Captured;
  174. public bool EPDConnected => _epdClient.IsEPDConnected;
  175. public JetChamber ChamberType = JetChamber.None;
  176. public JetPMBase(ModuleName module) : base(module.ToString(), module.ToString(), module.ToString(), module.ToString())
  177. {
  178. Module = module;
  179. _epdClient = DEVICE.GetDevice<JetEPDBase>($"{Module}.{VenusDevice.EndPoint}");
  180. ChamberType = (JetChamber)SC.GetValue<int>($"{Module}.ChamberType");
  181. DATA.Subscribe($"{Name}.ForelinePressure", () => ForelinePressure);
  182. //DATA.Subscribe($"{Name}.ProcessHighPressure", () => ProcessHighPressure, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  183. //DATA.Subscribe($"{Name}.ProcessLowPressure", () => ProcessLowPressure,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  184. DATA.Subscribe($"{Name}.CalculationPressure", () => CalculationPressure, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  185. DATA.Subscribe($"{Name}.ChamberPressure", () => ChamberPressure);
  186. DATA.Subscribe($"{Name}.ProcessPressure", () => ProcessPressure);
  187. DATA.Subscribe($"{Name}.ESCHePressure", () => ESCHePressure);
  188. DATA.Subscribe($"{Name}.LoadlockPressure", () => LoadlockPressure);
  189. DATA.Subscribe($"{Name}.IsATM", () => IsATM, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  190. DATA.Subscribe($"{Name}.IsVAC", () => IsVAC, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  191. DATA.Subscribe($"{Name}.LiftPinIsUp", () => LiftPinIsUp, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  192. DATA.Subscribe($"{Name}.LiftPinIsDown", () => LiftPinIsDown, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  193. DATA.Subscribe($"{Name}.PumpIsRunning", () => IsPumpRunning, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  194. DATA.Subscribe($"{Name}.TurboPumpIsRunning", () => IsTurboPumpRunning, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  195. DATA.Subscribe($"{Name}.IsSlitDoorClosed", () => IsSlitDoorClosed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  196. DATA.Subscribe($"{Name}.IsLinerDoorClosed", () => IsLinerDoorClosed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  197. DATA.Subscribe($"{Name}.IsLidClosed", () => IsLidClosed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  198. DATA.Subscribe($"{Name}.TurboPumpRotationalSpeed", () => TurboPumpSpeed);
  199. DATA.Subscribe($"{Name}.IsWaterFlowOk", () => IsWaterFlowOk, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  200. DATA.Subscribe($"{Name}.IsWLK", () => IsWLK, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  201. DATA.Subscribe($"{Name}.IsCDA_OK", () => IsCDA_OK, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  202. DATA.Subscribe($"{Name}.SourceRFFanInterlock", () => SourceRFFanInterlock, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  203. DATA.Subscribe($"{Name}.SourceRFMatchInterlock", () => SourceRFMatchInterlock, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  204. DATA.Subscribe($"{Name}.IsTurboPumpInterlock", () => TurboPumpInterlock, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  205. DATA.Subscribe($"{Name}.IsATMLoadlock", () => IsATMLoadlock, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  206. DATA.Subscribe($"{Name}.IsVACLoadlock", () => IsVACLoadLock, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  207. DATA.Subscribe($"{Name}.GetPVPosition", () => GetPVPosition());
  208. DATA.Subscribe($"{Name}.ESCHV.Temp", () => CoolantOutletTempFB);
  209. DATA.Subscribe($"{Name}.Chiller.Temp", () => CoolantInletTempFB);
  210. DATA.Subscribe($"{Name}.WallChiller.Temp", () => CoolantInletWallTempFB,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  211. //DATA.Subscribe($"{Name}.Chiller.IsOn", () => ChillerIsRunning, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  212. DATA.Subscribe($"{Name}.IsTurboPumpAtSpeed", () => IsTurboPumpAtSpeed);
  213. DATA.Subscribe($"{Name}.EPDCfgList", () => EPDCfgList, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  214. OP.Subscribe($"{Module}.SetLiftPin", (cmd, args) =>
  215. {
  216. if ((bool)args[0] == true)
  217. {
  218. return SetLiftPin(MovementPosition.Up, out _);
  219. }
  220. else
  221. {
  222. return SetLiftPin(MovementPosition.Down, out _);
  223. }
  224. });
  225. OP.Subscribe($"{Module}.SetSRf", (cmd, args) =>
  226. {
  227. var ison = (bool)args[1];
  228. if (ison == true)
  229. {
  230. GeneratorPowerOn(true);
  231. GeneratorSetpower((float)args[0]);
  232. }
  233. else
  234. {
  235. GeneratorPowerOn(false);
  236. }
  237. return true;
  238. });
  239. OP.Subscribe($"{Module}.SetBRf", (cmd, args) =>
  240. {
  241. var ison = (bool)args[1];
  242. if (ison == true)
  243. {
  244. GeneratorBiasPowerOn(true);
  245. GeneratorBiasSetpower((float)args[0]);
  246. }
  247. else
  248. {
  249. GeneratorBiasPowerOn(false);
  250. }
  251. return true;
  252. });
  253. OP.Subscribe($"{Module}.SetMagnet", (cmd, args) =>
  254. {
  255. var ison = (bool)args[1];
  256. MagnetSetpower((float)args[0]);
  257. return true;
  258. });
  259. OP.Subscribe($"{Module}.SetSlitDoor", (cmd, args) =>
  260. {
  261. SetSlitDoor((bool)args[0], out _);
  262. return true;
  263. });
  264. OP.Subscribe($"{Module}.SetLinerDoor", (cmd, args) =>
  265. {
  266. SetLinerDoor((bool)args[0], out _);
  267. return true;
  268. });
  269. OP.Subscribe($"{Module}.SetESCHVIsOn", (cmd, args) =>
  270. {
  271. OnOffSetESCHV((bool)args[0]);
  272. return true;
  273. });
  274. OP.Subscribe($"{Module}.SetESCHV", (cmd, args) =>
  275. {
  276. SetESCClampVoltage((int)args[0]);
  277. return true;
  278. });
  279. OP.Subscribe($"{Module}.SetPVPostion", (cmd, args) =>
  280. {
  281. SetPVPostion(Convert.ToSingle(args[0]));
  282. return true;
  283. });
  284. OP.Subscribe($"{Module}.SetPVPressure", (cmd, args) =>
  285. {
  286. SetPVPressure(Convert.ToSingle(args[0]));
  287. return true;
  288. });
  289. OP.Subscribe($"{Module}.ClosePump", (cmd, args) =>
  290. {
  291. TurnDryPump(false);
  292. return true;
  293. });
  294. OP.Subscribe($"{Module}.CloseTurboPump", (cmd, args) =>
  295. {
  296. TurnTurboPump(false);
  297. return true;
  298. });
  299. OP.Subscribe($"{Module}.ControlValve", (cmd, args) =>
  300. {
  301. if (Enum.TryParse(args[0].ToString(), out ValveType targetvalve))
  302. {
  303. OpenValve(targetvalve, (bool)args[1]);
  304. }
  305. return true;
  306. });
  307. OP.Subscribe($"{Module}.TurnPendulumValve", (cmd, args) =>
  308. {
  309. TurnPendulumValve((bool)args[0]);
  310. return true;
  311. });
  312. OP.Subscribe($"{Module}.HeatChiller", (cmd, args) =>
  313. {
  314. var chillerType = (ChillerType)Enum.Parse(typeof(ChillerType), args[0].ToString());
  315. HeatChiller(chillerType, (float)args[1], (float)args[2]);
  316. return true;
  317. });
  318. OP.Subscribe($"{Module}.OnOffChiller", (cmd, args) =>
  319. {
  320. var chillerType = (ChillerType)Enum.Parse(typeof(ChillerType), args[0].ToString());
  321. var ison = Convert.ToBoolean(args[1]);
  322. OnOffChiller(chillerType, ison);
  323. return true;
  324. });
  325. OP.Subscribe($"{Module}.WallChiller", (cmd, args) =>
  326. {
  327. float value;
  328. float.TryParse(args[0].ToString(), out value);
  329. SetWallTCTemperature(value);
  330. return true;
  331. });
  332. OP.Subscribe($"{Module}.SetBacksideHeFlow", (cmd, args) =>
  333. {
  334. double value;
  335. double.TryParse(args[0].ToString(), out value);
  336. SetBacksideHeFlow(value);
  337. return true;
  338. });
  339. OP.Subscribe($"{Module}.SetBacksideHePressure", (cmd, args) =>
  340. {
  341. float value;
  342. float.TryParse(args[0].ToString(), out value);
  343. SetBacksideHePressure(value);
  344. return true;
  345. });
  346. OP.Subscribe($"{Module}.EndPoint.SearchCfg", (cmd, args) =>
  347. {
  348. _epdClient?.QueryConfigList();
  349. return true;
  350. });
  351. }
  352. public abstract void CloseValves(int? delayTime = null);
  353. public abstract void TurnDryPump(bool on);
  354. public abstract void TurnTurboPump(bool on);
  355. public abstract void OpenValve(ValveType vlvType, bool on);
  356. public virtual void Monitor()
  357. {
  358. }
  359. public virtual bool Initialize()
  360. {
  361. return true;
  362. }
  363. public virtual void Terminate()
  364. {
  365. }
  366. public virtual void Reset()
  367. {
  368. }
  369. public virtual bool OnOffSetESCHV(bool on)
  370. {
  371. return false;
  372. }
  373. public abstract bool SetWallTCTemperature(float value);
  374. protected abstract void CheckPermanentInterlock();
  375. public abstract void CheckIdleInterlock();
  376. public virtual void BuzzerBlinking(double time)
  377. {
  378. }
  379. public virtual void SwitchOnBuzzerAndRed()
  380. {
  381. }
  382. public abstract void Home();
  383. public virtual bool SetLiftPin(MovementPosition dirt, out string reason)
  384. {
  385. reason = "";
  386. return false;
  387. }
  388. public virtual bool SetSlitDoor(bool open, out string reason)
  389. {
  390. reason = "";
  391. return false;
  392. }
  393. public virtual bool SetLinerDoor(bool open, out string reason)
  394. {
  395. reason = "";
  396. return false;
  397. }
  398. public virtual bool RetractWafer()
  399. {
  400. return false;
  401. }
  402. public virtual bool ExtendWafer()
  403. {
  404. return false;
  405. }
  406. public abstract bool FlowGas(int gasNum, double val);
  407. public abstract bool StopGas(int gasNum);
  408. public abstract bool FlowN2(double val);
  409. public abstract bool StopN2();
  410. public abstract void StopAllGases();
  411. public abstract bool TurnPendulumValve(bool on);
  412. public abstract bool SetPVPressure(float pressure);
  413. public abstract bool SetPVPostion(float position);
  414. public abstract float GetPVPosition();
  415. public virtual void HeatChiller(ChillerType chillerType, double value, double offset)
  416. {
  417. }
  418. public virtual void OnOffChiller(ChillerType chillerType, bool onoff)
  419. {
  420. }
  421. public virtual bool CheckChillerStatus()
  422. {
  423. return false;
  424. }
  425. public abstract void SetGeneratorCommunicationMode(int mode);
  426. public abstract bool GeneratorPowerOn(bool on);
  427. public abstract bool GeneratorSetpower(float val);
  428. public virtual bool GeneratorBiasPowerOn(bool on)
  429. { return false; }
  430. public virtual bool MagnetSetpower(float val)
  431. { return false; }
  432. public virtual bool SetFieldRatio(float val)
  433. { return false; }
  434. public virtual bool SetWaveform(int val)
  435. { return false; }
  436. public virtual bool GeneratorBiasSetpower(float val)
  437. { return false; }
  438. public virtual bool GeneratorBiasSetMatchMode(bool val)
  439. { return false; }
  440. public abstract bool SetMatchPosition(float c1, float c2);
  441. public virtual bool SetBiasMatchPosition(float c1, float c2)
  442. { return false; }
  443. public virtual bool SetMatchWorkMode(MatchWorkMode matchWorkMode)
  444. {
  445. return false;
  446. }
  447. public virtual bool SetBiasMatchWorkMode(MatchWorkMode matchWorkMode)
  448. {
  449. return false;
  450. }
  451. //public virtual async Task<bool> SetBiasMatchWorkMode2(MatchWorkMode matchWorkMode)
  452. //{
  453. // await Task.Delay(1200);
  454. // return false;
  455. //}
  456. public virtual bool SetMatchC1Position(float c1)
  457. {
  458. return false;
  459. }
  460. public virtual bool SetBiasPulseMode(bool on)
  461. { return false; }
  462. public virtual bool SetBiasPulseRateFreq(int nFreq)
  463. {
  464. return false;
  465. }
  466. public virtual bool SetRFBoxC1Position(float c1)
  467. {
  468. return false;
  469. }
  470. public virtual bool SetDiasPulseDutyCycle(int percentage)
  471. {
  472. return false;
  473. }
  474. public virtual bool SetESCClampVoltage(int nVoltage)
  475. {
  476. return false;
  477. }
  478. public abstract bool CheckGeneratorAndHVInterlock(VenusDevice device);
  479. #region EndPoint
  480. public void EPDRecipeStart(string recipe)
  481. {
  482. try
  483. {
  484. _epdClient?.RecipeStart(recipe);
  485. }
  486. catch
  487. {
  488. }
  489. }
  490. public void EPDRecipeStop()
  491. {
  492. try
  493. {
  494. _epdClient?.RecipeStop();
  495. }
  496. catch
  497. {
  498. }
  499. }
  500. public void EPDStepStart(string cfgName, int step)
  501. {
  502. try
  503. {
  504. _epdClient?.StepStart(cfgName, step);
  505. }
  506. catch
  507. {
  508. }
  509. }
  510. public void EPDStepStop()
  511. {
  512. try
  513. {
  514. _epdClient?.StepStop();
  515. }
  516. catch
  517. {
  518. }
  519. }
  520. #endregion
  521. public virtual void SetBacksideHeFlow(double flow)
  522. {
  523. }
  524. public virtual bool SetBacksideHePressure(float mTorr)
  525. {
  526. return false;
  527. }
  528. public virtual bool SetBacksideHeThreshold(float nMin, float nMax)
  529. {
  530. return true;
  531. }
  532. public virtual bool HighTemperatureHeaterGotoPosition(HighTemperatureHeaterPosition highTemperatureHeaterPosition)
  533. {
  534. return false;
  535. }
  536. public virtual bool SetHighTemperatureHeaterTemperature(int temperature)
  537. {
  538. return false;
  539. }
  540. public virtual bool SetHighTemperatureHeaterRatio(int ratio)
  541. {
  542. return false;
  543. }
  544. public virtual bool SetHighTemperatureHeaterRate(int rate)
  545. {
  546. return false;
  547. }
  548. public virtual bool StartControlPressure(int pressureSetpoint, int flowSetpoint)
  549. {
  550. return false;
  551. }
  552. public virtual async Task<bool> AbortControlPressure()
  553. {
  554. await Task.Delay(0);
  555. return false;
  556. }
  557. public virtual bool PreparePlace()
  558. {
  559. return false;
  560. }
  561. public virtual bool PreparePlaceIsOK()
  562. {
  563. return false;
  564. }
  565. public virtual bool PreparePick()
  566. {
  567. return false;
  568. }
  569. public virtual bool PreparePickIsOK()
  570. {
  571. return false;
  572. }
  573. public virtual bool EndPlace()
  574. {
  575. return false;
  576. }
  577. public virtual bool EndPlaceIsOK()
  578. {
  579. return false;
  580. }
  581. public virtual bool EndPick()
  582. {
  583. return false;
  584. }
  585. public virtual bool EndPickIsOK()
  586. {
  587. return false;
  588. }
  589. public virtual void RTCloseEvent()
  590. {
  591. }
  592. public virtual bool RFInterlock(VenusDevice device)
  593. {
  594. return true;
  595. }
  596. public abstract void PMInError();
  597. }
  598. }