MFCoolingRoutine.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Core.RT.SCCore;
  3. using MECF.Framework.Common.Equipment;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Diagnostics;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using Venus_Core;
  11. using Venus_RT.Devices;
  12. namespace Venus_RT.Modules.TM
  13. {
  14. class MFCoolingRoutine : ModuleRoutineBase, IRoutine
  15. {
  16. private enum CoolingStep
  17. {
  18. kDelay,
  19. kStopVent,
  20. kStartCooling,
  21. kWaitCoolingEnd,
  22. kEndCooling,
  23. }
  24. private int _coolingTime;
  25. private double _coolingMFCFlow;
  26. private readonly JetTM _JetTM;
  27. private Stopwatch _coolingStopWatch = new Stopwatch();
  28. public MFCoolingRoutine(JetTM jetTM, ModuleName mod) : base(mod)
  29. {
  30. _JetTM = jetTM;
  31. }
  32. public RState Start(params object[] objs)
  33. {
  34. _coolingMFCFlow = SC.GetValue<double>($"{Module}.Cooling.MFCFlow");
  35. _coolingTime = SC.GetValue<int>($"{Module}.Cooling.CoolingTime");
  36. return Runner.Start(Module, Name);
  37. }
  38. public RState Monitor()
  39. {
  40. Runner .Delay(CoolingStep.kDelay, 1000)
  41. .Run(CoolingStep.kStopVent, StopVent)
  42. .Run(CoolingStep.kStartCooling, StartCooling)
  43. .Wait(CoolingStep.kWaitCoolingEnd, CoolingIsEnd)
  44. .End(CoolingStep.kEndCooling, ResetCooling, NullFun);
  45. return Runner.Status;
  46. }
  47. private bool StopVent()
  48. {
  49. _JetTM.TurnVentValve(Module, false);
  50. _JetTM.TurnExhaustValve(Module, false);
  51. return true;
  52. }
  53. private bool StartCooling()
  54. {
  55. _JetTM.TurnPurgeValve(Module, true);
  56. _JetTM.TurnExhaustValve(Module, true);
  57. if (Module == ModuleName.LLA)
  58. {
  59. _JetTM.SetLLAFlow(_coolingMFCFlow);
  60. }
  61. else if (Module == ModuleName.LLB)
  62. {
  63. _JetTM.SetLLBFlow(_coolingMFCFlow);
  64. }
  65. _coolingStopWatch.Start();
  66. return true;
  67. }
  68. private bool CoolingIsEnd()
  69. {
  70. return _coolingStopWatch.ElapsedMilliseconds > _coolingTime * 1000;
  71. }
  72. private bool ResetCooling()
  73. {
  74. _coolingStopWatch.Reset();
  75. if (Module == ModuleName.LLA)
  76. {
  77. _JetTM.SetLLAFlow(0d);
  78. }
  79. else if (Module == ModuleName.LLB)
  80. {
  81. _JetTM.SetLLBFlow(0d);
  82. }
  83. _JetTM.TurnPurgeValve(Module, false);
  84. _JetTM.TurnExhaustValve(Module, false);
  85. return true;
  86. }
  87. public void Abort()
  88. {
  89. _coolingStopWatch.Reset();
  90. if (Module == ModuleName.LLA)
  91. {
  92. _JetTM.SetLLAFlow(0);
  93. }
  94. else if (Module == ModuleName.LLB)
  95. {
  96. _JetTM.SetLLBFlow(0);
  97. }
  98. _JetTM.TurnPurgeValve(Module, false);
  99. _JetTM.TurnExhaustValve(Module, false);
  100. }
  101. }
  102. }