ITM.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Aitex.Core.RT.Device.Unit;
  7. using MECF.Framework.Common.Equipment;
  8. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.TMs
  9. {
  10. public interface ITM
  11. {
  12. bool CheckAtm();
  13. bool CheckVacuum();
  14. bool SetFastVentValve(bool isOpen, out string reason);
  15. bool SetSlowVentValve(bool isOpen, out string reason);
  16. bool SetFastPumpValve(bool isOpen, out string reason);
  17. bool SetSlowPumpValve(bool isOpen, out string reason);
  18. bool SetTurboPumpIsoValve(bool isOpen, out string reason);
  19. bool SetTurboPumpBackingValve(bool isOpen, out string reason);
  20. bool CheckTurboPumpStable();
  21. bool CheckTurboPumpOn();
  22. bool CheckTurboPumpOff();
  23. bool CheckTurboPumpError();
  24. bool TurboPumpOn();
  25. bool TurboPumpOff();
  26. bool SetSlitValve(ModuleName module, bool isOpen, out string reason);
  27. bool CheckSlitValveOpen(ModuleName module);
  28. bool CheckSlitValveClose(ModuleName module);
  29. }
  30. }