ProcessUnitDefine.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Venus_Core
  7. {
  8. /// <summary>
  9. /// 设计概述:
  10. /// 本设计主要目的,为了满足复杂的刻蚀工艺需求(各个工艺参数之间相互关联), 和应对未来不断新增的工艺需求(新的设备、
  11. /// 新的工艺、新的材料等等), 同时又能对现存的Recipe保持最大的兼容
  12. ///
  13. /// 1. 将Process 的每道工艺分解为1个至多个逻辑工艺单元, 每个逻辑工艺单元通过 Class Name 和RT的工艺算法绑定,
  14. /// 同时也和 GUI Recipe Editor 的页面布局绑定。
  15. ///
  16. /// 2. 一个逻辑单元功能调试好, 并且有在客户端使用后, 此逻辑单元想关联的 RT Process 代码和GUI 界面代码,
  17. /// 不允许再修改, 只能增加新的Class 来实现新的工艺需求
  18. ///
  19. /// 3. 通过配置文件里面定义 ProcessUnit Class Name列表, 来定义当前机台支持的工艺功能, 也就是说如果Recipe文件里面保函了
  20. /// 配置文件里面没有列出的工艺单元, 表明本机台不支持此Recipe, 并报警提示用户
  21. /// </summary>
  22. public partial class PressureUnitByPressureMode : ProcessUnitBase
  23. {
  24. public string UnitName { get; set; } = "PressureUnitByPressureMode";
  25. public bool EnableRamp { get; set; }
  26. public int StartPressure { get; set; }
  27. public int TargetPressure { get; set; }
  28. public int ValvePositionPreset { get; set; }
  29. public int HoldTime { get; set; }
  30. }
  31. public class PressureUnitByValveMode : ProcessUnitBase
  32. {
  33. public string UnitName { get; set; } = "PressureUnitByValveMode";
  34. public bool EnableRamp { get; set; }
  35. public int StartPosition { get; set; }
  36. public int TargetPosition { get; set; }
  37. public int HoldTime { get; set; }
  38. }
  39. public class TCPUnit : ProcessUnitBase
  40. {
  41. public string UnitName { get; set; } = "TCPUnit";
  42. public bool EnableRamp { get; set; }
  43. public int RFPower { get; set; }
  44. public int StartPower { get; set; }
  45. public int TargetPower { get; set; }
  46. public int HoldTime { get; set; }
  47. public int TuneCapPreset { get; set; }
  48. public int LoadCapPreset { get; set; }
  49. public int MaxReflectedPower { get; set; }
  50. }
  51. public class BiasUnit : ProcessUnitBase
  52. {
  53. public string UnitName { get; set; } = "BiasUnit";
  54. public int BiasRFPower { get; set; }
  55. public bool EnableRamp { get; set; }
  56. public int StartBiasRFPower { get; set; }
  57. public int TargetBiasRFPower { get; set; }
  58. public int BiasRFHoldTime { get; set; }
  59. public int BiasTuneCapPreset { get; set; }
  60. public int BiasLoadCapPreset { get; set; }
  61. public int BiasMaxReflectedPower { get; set; }
  62. public GeneratorMode BiasGeneratorMode { get; set; }
  63. public int PulseRateFreq { get; set; }
  64. public int PulseDutyCycle { get; set; }
  65. }
  66. public class GasControlUnit : ProcessUnitBase
  67. {
  68. public string UnitName { get; set; } = "GasControlUnit";
  69. public bool EnableRamp { get; set; }
  70. public int Gas1 { get; set; }
  71. public int Gas1Target { get; set; }
  72. public int Gas2 { get; set; }
  73. public int Gas2Target { get; set; }
  74. public int Gas3 { get; set; }
  75. public int Gas3Target { get; set; }
  76. public int Gas4 { get; set; }
  77. public int Gas4Target { get; set; }
  78. public int Gas5 { get; set; }
  79. public int Gas5Target { get; set; }
  80. public int Gas6 { get; set; }
  81. public int Gas6Target { get; set; }
  82. public int Gas7 { get; set; }
  83. public int Gas7Target { get; set; }
  84. public int Gas8 { get; set; }
  85. public int Gas8Target { get; set; }
  86. public int FlowRatie { get; set; }
  87. }
  88. public class ESCHVUnit : ProcessUnitBase
  89. {
  90. public string UnitName { get; set; } = "ESCHVUnit";
  91. public int BacksideHelum { get; set; }
  92. public int MaxHeFlow { get; set; }
  93. public int MinHeFlow { get; set; }
  94. public int ESCClampValtage { get; set; }
  95. public int Temperature { get; set; }
  96. }
  97. public class ProcessKitUnit : ProcessUnitBase
  98. {
  99. public string UnitName { get; set; } = "ProcessKitUnit";
  100. public MovementPosition LiftPinPostion { get; set; }
  101. public MovementPosition WeprBasrPinPosition { get; set; }
  102. }
  103. }