123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_Core
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public partial class PressureUnitByPressureMode : ProcessUnitBase
- {
- public string UnitName { get; set; } = "PressureUnitByPressureMode";
- public bool EnableRamp { get; set; }
- public int StartPressure { get; set; }
- public int TargetPressure { get; set; }
- public int ValvePositionPreset { get; set; }
- public int HoldTime { get; set; }
- }
- public class PressureUnitByValveMode : ProcessUnitBase
- {
- public string UnitName { get; set; } = "PressureUnitByValveMode";
- public bool EnableRamp { get; set; }
- public int StartPosition { get; set; }
- public int TargetPosition { get; set; }
- public int HoldTime { get; set; }
- }
- public class TCPUnit : ProcessUnitBase
- {
- public string UnitName { get; set; } = "TCPUnit";
- public bool EnableRamp { get; set; }
- public int RFPower { get; set; }
- public int StartPower { get; set; }
- public int TargetPower { get; set; }
- public int HoldTime { get; set; }
- public int TuneCapPreset { get; set; }
- public int LoadCapPreset { get; set; }
- public int MaxReflectedPower { get; set; }
- }
- public class BiasUnit : ProcessUnitBase
- {
- public string UnitName { get; set; } = "BiasUnit";
- public int BiasRFPower { get; set; }
- public bool EnableRamp { get; set; }
- public int StartBiasRFPower { get; set; }
- public int TargetBiasRFPower { get; set; }
- public int BiasRFHoldTime { get; set; }
- public int BiasTuneCapPreset { get; set; }
- public int BiasLoadCapPreset { get; set; }
- public int BiasMaxReflectedPower { get; set; }
- public GeneratorMode BiasGeneratorMode { get; set; }
- public int PulseRateFreq { get; set; }
- public int PulseDutyCycle { get; set; }
- }
- public class GasControlUnit : ProcessUnitBase
- {
- public string UnitName { get; set; } = "GasControlUnit";
- public bool EnableRamp { get; set; }
- public int Gas1 { get; set; }
- public int Gas1Target { get; set; }
- public int Gas2 { get; set; }
- public int Gas2Target { get; set; }
- public int Gas3 { get; set; }
- public int Gas3Target { get; set; }
- public int Gas4 { get; set; }
- public int Gas4Target { get; set; }
- public int Gas5 { get; set; }
- public int Gas5Target { get; set; }
- public int Gas6 { get; set; }
- public int Gas6Target { get; set; }
- public int Gas7 { get; set; }
- public int Gas7Target { get; set; }
- public int Gas8 { get; set; }
- public int Gas8Target { get; set; }
- public int FlowRatie { get; set; }
- }
- public class ESCHVUnit : ProcessUnitBase
- {
- public string UnitName { get; set; } = "ESCHVUnit";
- public int BacksideHelum { get; set; }
- public int MaxHeFlow { get; set; }
- public int MinHeFlow { get; set; }
- public int ESCClampValtage { get; set; }
- public int Temperature { get; set; }
- }
- public class ProcessKitUnit : ProcessUnitBase
- {
- public string UnitName { get; set; } = "ProcessKitUnit";
- public MovementPosition LiftPinPostion { get; set; }
- public MovementPosition WeprBasrPinPosition { get; set; }
- }
- }
|