|
@@ -37,6 +37,18 @@ namespace Venus_RT.Modules.PMs
|
|
|
|
|
|
};
|
|
|
|
|
|
+ private Dictionary<string, Action<ProcessUnitBase, RecipeStep>> endHelper = new Dictionary<string, Action<ProcessUnitBase, RecipeStep>>
|
|
|
+ {
|
|
|
+ {"PressureUnitByPressureMode", PressureUnitByPressureMode_End},
|
|
|
+ {"PressureUnitByValveMode", PressureUnitByValveMode_End},
|
|
|
+ {"TCPUnit", TCPUnit_End},
|
|
|
+ {"BiasUnit", BiasUnit_End},
|
|
|
+ {"GasControlUnit", GasControlUnit_End},
|
|
|
+ {"ESCHVUnit", ESCHVUnit_End},
|
|
|
+ {"ProcessKitUnit", ProcessKitUnit_End}
|
|
|
+
|
|
|
+ };
|
|
|
+
|
|
|
public ProcessHelper(JetPM pm)
|
|
|
{
|
|
|
Chamber = pm;
|
|
@@ -44,7 +56,7 @@ namespace Venus_RT.Modules.PMs
|
|
|
|
|
|
static private RState PressureUnitByPressureMode_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
- var ProcessUnit = unit as PressureUnitByPressureMode;
|
|
|
+ var ProcessUnit = unit as PressureByPressureModeUnit;
|
|
|
if (Chamber.SetPVPressure(ProcessUnit.StartPressure))
|
|
|
{
|
|
|
return RState.Running;
|
|
@@ -55,7 +67,7 @@ namespace Venus_RT.Modules.PMs
|
|
|
|
|
|
static private RState PressureUnitByPressureMode_Check(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
- var ProcessUnit = unit as PressureUnitByPressureMode;
|
|
|
+ var ProcessUnit = unit as PressureByPressureModeUnit;
|
|
|
if(ProcessUnit.EnableRamp)
|
|
|
{
|
|
|
if (Chamber.SetPVPressure(ProcessUnit.StartPressure + (int)((ProcessUnit.TargetPressure - ProcessUnit.StartPressure) * step.RampFactor())))
|
|
@@ -72,9 +84,14 @@ namespace Venus_RT.Modules.PMs
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void PressureUnitByPressureMode_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
static private RState PressureUnitByValveMode_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
- var ProcessUnit = unit as PressureUnitByValveMode;
|
|
|
+ var ProcessUnit = unit as PressureByValveModeUnit;
|
|
|
if(Chamber.SetPVPostion(ProcessUnit.StartPosition))
|
|
|
{
|
|
|
return RState.Running;
|
|
@@ -85,7 +102,7 @@ namespace Venus_RT.Modules.PMs
|
|
|
|
|
|
static private RState PressureUnitByValveMode_Check(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
- var ProcessUnit = unit as PressureUnitByValveMode;
|
|
|
+ var ProcessUnit = unit as PressureByValveModeUnit;
|
|
|
if(ProcessUnit.EnableRamp)
|
|
|
{
|
|
|
if (Chamber.SetPVPostion(ProcessUnit.StartPosition + (int)((ProcessUnit.TargetPosition - ProcessUnit.StartPosition) * step.RampFactor())))
|
|
@@ -97,54 +114,151 @@ namespace Venus_RT.Modules.PMs
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void PressureUnitByValveMode_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
static private RState TCPUnit_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as TCPUnit;
|
|
|
+ Chamber.GeneratorSetpower(ProcessUnit.RFPower);
|
|
|
+ Chamber.GeneratorPowerOn(true);
|
|
|
+ Chamber.SetMatchPosition(ProcessUnit.TuneCapPreset, ProcessUnit.LoadCapPreset);
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
static private RState TCPUnit_Check(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as TCPUnit;
|
|
|
+ if(ProcessUnit.MaxReflectedPower > 0 && Chamber.ReflectPower > ProcessUnit.MaxReflectedPower)
|
|
|
+ {
|
|
|
+ return RState.Failed;
|
|
|
+ }
|
|
|
+
|
|
|
+ if(step.ElapsedTime > ProcessUnit.HoldTime * 1000)
|
|
|
+ {
|
|
|
+ Chamber.GeneratorSetpower(0);
|
|
|
+ Chamber.GeneratorPowerOn(false);
|
|
|
+ }
|
|
|
+
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void TCPUnit_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+ Chamber.GeneratorSetpower(0);
|
|
|
+ Chamber.GeneratorPowerOn(false);
|
|
|
+ }
|
|
|
+
|
|
|
static private RState BiasUnit_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as BiasUnit;
|
|
|
+ Chamber.GeneratorBiasSetpower(ProcessUnit.BiasRFPower);
|
|
|
+ Chamber.GeneratorBiasPowerOn(true);
|
|
|
+ Chamber.SetBiasMatchPosition(ProcessUnit.BiasTuneCapPreset, ProcessUnit.BiasLoadCapPreset);
|
|
|
+ if(ProcessUnit.BiasGeneratorMode == GeneratorMode.Pulsing)
|
|
|
+ {
|
|
|
+ Chamber.SetBiasPulseMode(true);
|
|
|
+ Chamber.SetBiasPulseRateFreq(ProcessUnit.PulseRateFreq);
|
|
|
+ Chamber.SetDiasPulseDutyCycle(ProcessUnit.PulseDutyCycle);
|
|
|
+ }
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
static private RState BiasUnit_Check(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as BiasUnit;
|
|
|
+ if (ProcessUnit.BiasMaxReflectedPower > 0 && Chamber.BiasReflectPower > ProcessUnit.BiasMaxReflectedPower)
|
|
|
+ {
|
|
|
+ return RState.Failed;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (step.ElapsedTime > ProcessUnit.BiasRFHoldTime * 1000)
|
|
|
+ {
|
|
|
+ Chamber.GeneratorBiasSetpower(0);
|
|
|
+ Chamber.GeneratorBiasPowerOn(false);
|
|
|
+ }
|
|
|
+
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void BiasUnit_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+ Chamber.GeneratorBiasSetpower(0);
|
|
|
+ Chamber.GeneratorBiasPowerOn(false);
|
|
|
+ }
|
|
|
+
|
|
|
static private RState GasControlUnit_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as GasControlUnit;
|
|
|
+ Chamber.FlowGas(0, ProcessUnit.Gas1);
|
|
|
+ Chamber.FlowGas(1, ProcessUnit.Gas2);
|
|
|
+ Chamber.FlowGas(2, ProcessUnit.Gas3);
|
|
|
+ Chamber.FlowGas(3, ProcessUnit.Gas4);
|
|
|
+ Chamber.FlowGas(4, ProcessUnit.Gas5);
|
|
|
+ Chamber.FlowGas(5, ProcessUnit.Gas6);
|
|
|
+ Chamber.FlowGas(6, ProcessUnit.Gas7);
|
|
|
+ Chamber.FlowGas(7, ProcessUnit.Gas8);
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
static private RState GasControlUnit_Check(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as GasControlUnit;
|
|
|
+ if(ProcessUnit.EnableRamp)
|
|
|
+ {
|
|
|
+ double rampFactor = step.RampFactor();
|
|
|
+ Chamber.FlowGas(0, ProcessUnit.Gas1 + (ProcessUnit.Gas1Target - ProcessUnit.Gas1) * rampFactor);
|
|
|
+ Chamber.FlowGas(1, ProcessUnit.Gas2 + (ProcessUnit.Gas2Target - ProcessUnit.Gas2) * rampFactor);
|
|
|
+ Chamber.FlowGas(2, ProcessUnit.Gas3 + (ProcessUnit.Gas3Target - ProcessUnit.Gas3) * rampFactor);
|
|
|
+ Chamber.FlowGas(3, ProcessUnit.Gas4 + (ProcessUnit.Gas4Target - ProcessUnit.Gas4) * rampFactor);
|
|
|
+ Chamber.FlowGas(4, ProcessUnit.Gas5 + (ProcessUnit.Gas5Target - ProcessUnit.Gas5) * rampFactor);
|
|
|
+ Chamber.FlowGas(5, ProcessUnit.Gas6 + (ProcessUnit.Gas6Target - ProcessUnit.Gas6) * rampFactor);
|
|
|
+ Chamber.FlowGas(6, ProcessUnit.Gas7 + (ProcessUnit.Gas7Target - ProcessUnit.Gas7) * rampFactor);
|
|
|
+ Chamber.FlowGas(7, ProcessUnit.Gas8 + (ProcessUnit.Gas8Target - ProcessUnit.Gas8) * rampFactor);
|
|
|
+ }
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void GasControlUnit_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+ Chamber.FlowGas(0, 0);
|
|
|
+ Chamber.FlowGas(1, 0);
|
|
|
+ Chamber.FlowGas(2, 0);
|
|
|
+ Chamber.FlowGas(3, 0);
|
|
|
+ Chamber.FlowGas(4, 0);
|
|
|
+ Chamber.FlowGas(5, 0);
|
|
|
+ Chamber.FlowGas(6, 0);
|
|
|
+ Chamber.FlowGas(7, 0);
|
|
|
+ }
|
|
|
+
|
|
|
static private RState ESCHVUnit_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as ESCHVUnit;
|
|
|
+ Chamber.SetESCClampVoltage(ProcessUnit.ESCClampValtage);
|
|
|
+ Chamber.SetBacksideHePressure(ProcessUnit.BacksideHelum * 1000);
|
|
|
+ Chamber.SetBacksideHeThreshold(ProcessUnit.MinHeFlow, ProcessUnit.MaxHeFlow);
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
static private RState ESCHVUnit_Check(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
- var ProcessUnit = unit as ESCHVUnit;
|
|
|
+ if(Chamber.BackSideHeOutOfRange)
|
|
|
+ {
|
|
|
+ return RState.Failed;
|
|
|
+ }
|
|
|
+
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void ESCHVUnit_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+ Chamber.SetESCClampVoltage(0);
|
|
|
+ //Chamber.SetBacksideHePressure(0);
|
|
|
+ Chamber.SetBacksideHeThreshold(0, 0);
|
|
|
+ }
|
|
|
+
|
|
|
static private RState ProcessKitUnit_Start(ProcessUnitBase unit, RecipeStep step)
|
|
|
{
|
|
|
var ProcessUnit = unit as ProcessKitUnit;
|
|
@@ -157,6 +271,10 @@ namespace Venus_RT.Modules.PMs
|
|
|
return RState.Running;
|
|
|
}
|
|
|
|
|
|
+ static private void ProcessKitUnit_End(ProcessUnitBase unit, RecipeStep step)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
public bool LoadMethods(ProcessUnitBase unit)
|
|
|
{
|
|
|
var className = unit.GetType().Name;
|
|
@@ -164,12 +282,71 @@ namespace Venus_RT.Modules.PMs
|
|
|
{
|
|
|
unit.starter = startHelper[className];
|
|
|
unit.checker = checkerHelper[className];
|
|
|
+ unit.end = endHelper[className];
|
|
|
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
return false;
|
|
|
}
|
|
|
+
|
|
|
+ private static RState stepStarter(RecipeStep step)
|
|
|
+ {
|
|
|
+ return RState.Running;
|
|
|
+ }
|
|
|
+
|
|
|
+ private static RState stepChecker(RecipeStep step)
|
|
|
+ {
|
|
|
+ switch(step.Type)
|
|
|
+ {
|
|
|
+ case StepType.Time:
|
|
|
+ return step.ElapsedTime > step.Time ? RState.End : RState.Running;
|
|
|
+ case StepType.EndPoint:
|
|
|
+ return Chamber.CheckEndPoint() ? RState.End : RState.Running;
|
|
|
+ }
|
|
|
+
|
|
|
+ return RState.Running;
|
|
|
+ }
|
|
|
+
|
|
|
+ public bool LoadStepFuns(RecipeStep step)
|
|
|
+ {
|
|
|
+ step.starter = stepStarter;
|
|
|
+ step.checker = stepChecker;
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ #region EndPoint
|
|
|
+
|
|
|
+ public static bool CheckEndPoint()
|
|
|
+ {
|
|
|
+ return Chamber.CheckEndPoint();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public static void StartEndPoint(string config, int index)
|
|
|
+ {
|
|
|
+ Chamber.StartEndPoint(config, index);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void StopEndPoint()
|
|
|
+ {
|
|
|
+ Chamber.StopEndPoint();
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void EndPointRecipeStop()
|
|
|
+ {
|
|
|
+ Chamber.EndPointRecipeStop();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void EndPointRecipeStart(string recipeName)
|
|
|
+ {
|
|
|
+ Chamber.EndPointRecipeStart(recipeName);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ #endregion
|
|
|
}
|
|
|
|
|
|
public class test
|