using Aitex.Core.RT.Routine; using Aitex.Core.RT.SCCore; using Aitex.Sorter.Common; using Venus_RT.Devices; using MECF.Framework.Common.Jobs; using MECF.Framework.Common.Routine; using MECF.Framework.Common.Equipment; using MECF.Framework.Common.SubstrateTrackings; using Venus_Core; using Aitex.Core.RT.Log; using Aitex.Core.Util; using MECF.Framework.Common.Schedulers; using System.Collections.Generic; using System; using MECF.Framework.Common.DBCore; using MECF.Framework.RT.Core.Equipments; namespace Venus_RT.Modules.TM { class MFPickRoutine : ModuleRoutineBase, IRoutine { private enum PickStep { WaitModuleReady, ModulePrepare, WaitPressreStable, OpenSlitDoor, Picking, QueryAwc, CloseSlitDoor, CheckAwc, NotifyDone, } private readonly JetTM _JetTM; private readonly ITransferRobot _robot; private int _pickingTimeout = 20 * 1000; private ModuleName _targetModule; private LLEntity _llModule; int _targetSlot; Hand _hand; private DateTime _starttime; private bool _queryAwc; private int _autoVentOptInWafer = 0; private int _autoVentOptOutWafer = 4; private SequenceLLInOutPath _sequencePattern = SequenceLLInOutPath.DInDOut; private bool _bAutoMode = true; double maxPressureDifference; int awcAlarmRange; int awcWarningRange; public MFPickRoutine(JetTM tm, ITransferRobot robot) :base(ModuleName.TMRobot) { _JetTM = tm; _robot = robot; Name = "Pick"; if (SC.GetValue($"TM.QueryAWCOption") == 1 || SC.GetValue($"TM.QueryAWCOption") == 3) _queryAwc = true; else _queryAwc = false; } public RState Start(params object[] objs) { _starttime = DateTime.Now; if (!_robot.IsHomed) { LOG.Write(eEvent.ERR_TM, Module, $"TM Robot is not homed, please home it first"); return RState.Failed; } var pickItem = (Queue)objs[0]; if (!WaferManager.Instance.CheckDuplicatedWafersBeforeMove(pickItem)) return RState.Failed; _targetModule = pickItem.Peek().SourceModule; _targetSlot = pickItem.Peek().SourceSlot; _hand = pickItem.Peek().RobotHand; if (ModuleHelper.IsLoadLock(_targetModule) && ModuleHelper.IsInstalled(_targetModule)) { _llModule = Singleton.Instance.GetLL(_targetModule); } else { LOG.Write(eEvent.ERR_TM, Module, $"Invalid target module : {_targetModule} for picking action"); return RState.Failed; } if (WaferManager.Instance.CheckHasWafer(ModuleName.TMRobot, (int)_hand)) { LOG.Write(eEvent.ERR_TM, Module, $"Cannot pick as TM Robot Arm: {_hand} already has a wafer"); return RState.Failed; } if (WaferManager.Instance.CheckNoWafer(_targetModule, _targetSlot)) { LOG.Write(eEvent.ERR_TM, Module, $"Cannot pick as {_targetModule} Slot {_targetSlot + 1} has no wafer"); return RState.Failed; } Reset(); _pickingTimeout = SC.GetValue("TM.PickTimeout") * 1000; _autoVentOptInWafer = SC.GetValue("TM.LLAutoVentInWaferOpt"); _autoVentOptOutWafer = SC.GetValue("TM.LLAutoVentOutWaferOpt"); _sequencePattern = Singleton.Instance.LLInOutPath; _bAutoMode = Singleton.Instance.IsAutoMode; awcAlarmRange = SC.GetValue($"TM.AWCAlarmRange"); awcWarningRange = SC.GetValue($"TM.AWCWarningRange"); maxPressureDifference = SC.GetValue("System.TMLLMaxPressureDifference"); return Runner.Start(Module, $"Pick from {_targetModule}"); } public RState Monitor() { Runner.Wait(PickStep.WaitModuleReady, () => _llModule.IsIdle, _delay_60s) .Run(PickStep.ModulePrepare, ModulePrepare, IsModulePrepareReady) .Wait(PickStep.WaitPressreStable, TMLLPressureIsOK, _delay_60s) .Run(PickStep.OpenSlitDoor, OpenSlitDoor, IsSlitDoorOpen) .Run(PickStep.Picking, Picking, WaitPickDone) .Run(PickStep.QueryAwc, QueryAwc, WaitQueryDoneAndRecord) .Run(PickStep.CloseSlitDoor, CloseSlitDoor, IsSlitDoorClosed) //.Run(PickStep.CheckAwc, CheckAwc ) .End(PickStep.NotifyDone, NotifyLLDone, _delay_50ms); return Runner.Status; } private bool ModulePrepare() { _llModule.PostMsg(LLEntity.MSG.Prepare_TM); return true; } private bool TMLLPressureIsOK() { if (RouteManager.IsATMMode) { return _JetTM.IsTMATM && _JetTM.IsModuleATM(_targetModule); } else { double llPressure = 0; if (_targetModule == ModuleName.LLA) { llPressure = _JetTM.LLAPressure; } else if (_targetModule == ModuleName.LLB) { llPressure = _JetTM.LLBPressure; } if (Math.Abs((llPressure - _JetTM.ChamberPressure)) < (maxPressureDifference-5)) { return true; } else { return false; } } } private bool IsModulePrepareReady() { return _llModule.Status == LLEntity.LLStatus.Ready_For_TM; } private bool OpenSlitDoor() { return _JetTM.TurnMFSlitDoor(_targetModule, true, out _); } private bool CloseSlitDoor() { return _JetTM.TurnMFSlitDoor(_targetModule, false, out _); } private bool IsSlitDoorOpen() { if (_targetModule == ModuleName.LLA) return _JetTM.IsLLASlitDoorOpen; else return _JetTM.IsLLBSlitDoorOpen; } private bool IsSlitDoorClosed() { if (_targetModule == ModuleName.LLA) return _JetTM.IsLLASlitDoorClosed; else return _JetTM.IsLLBSlitDoorClosed; } private bool Picking() { return _robot.Pick(_targetModule, _targetSlot, _hand); } private bool WaitPickDone() { if (_robot.Status == RState.Running) { if (Runner.StepElapsedMS > _pickingTimeout) { WaferManager.Instance.CreateDuplicatedWafer(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_hand); Runner.Stop($"TM Robot Picking {_targetModule}.{_targetSlot + 1} wafer timeout, {_pickingTimeout}"); return true; } return false; } else if (_robot.Status == RState.End) { WaferManager.Instance.WaferMoved(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_hand); return true; } else { WaferManager.Instance.CreateDuplicatedWafer(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_hand); Runner.Stop($"TM Robot Picking failed, {_robot.Status}"); return true; } } private bool QueryAwc() { if (!_queryAwc) return true; if (_robot.QueryAwc()) return true; else return false; } //private bool CheckAwc() //{ // if (Math.Abs(_robot.Offset_D) > awcAlarmRange*1000) // { // Stop($"Check AWC 失败, 当前 AWC [{_robot.Offset_D}um], 高于Alarm最大值: [{awcAlarmRange}mm]"); // return false; // } // if (Math.Abs(_robot.Offset_D) > awcWarningRange*1000) // { // Stop($"Check AWC 报警, 当前 AWC [{_robot.Offset_D}um], 高于Warning最大值: [{awcWarningRange}mm]"); // } // return true; //} private bool WaitQueryDoneAndRecord() { if (!_queryAwc) return true; if (_robot.Status == RState.Running) { return false; } else if (_robot.Status == RState.End) { //已经move后的数据 string _origin_module = $"LP{WaferManager.Instance.GetWafer(_targetModule, _targetSlot).OriginStation}"; int _origin_slot = WaferManager.Instance.GetWafer(_targetModule, _targetSlot).OriginSlot; //查询完毕 插入数据 OffsetDataRecorder.RecordOffsetData( Guid.NewGuid().ToString(), _targetModule, _targetSlot, ModuleName.TMRobot, 0, _origin_module, _origin_slot, _hand, RobotArmPan.None, _robot.Offset_X, _robot.Offset_Y, _robot.Offset_D, _starttime, DateTime.Now); return true; } else { Runner.Stop($"TM Robot Query Awc failed, {_robot.Status}"); return true; } } private bool NotifyLLDone() { bool bAutoVent = false; var waferStatus = _llModule.GetWaferProcessStatus(); if (_bAutoMode) { if (((_sequencePattern == SequenceLLInOutPath.AInBOut && _targetModule == ModuleName.LLA) || (_sequencePattern == SequenceLLInOutPath.BInAOut && _targetModule == ModuleName.LLB)) && waferStatus.unprocessed <= _autoVentOptInWafer) { bAutoVent = true; } else if (((_sequencePattern == SequenceLLInOutPath.AInBOut && _targetModule == ModuleName.LLB) || (_sequencePattern == SequenceLLInOutPath.BInAOut && _targetModule == ModuleName.LLA)) && waferStatus.processed >= _autoVentOptOutWafer) { bAutoVent = true; } else if (_sequencePattern == SequenceLLInOutPath.DInDOut && waferStatus.processed >= _autoVentOptOutWafer && waferStatus.unprocessed <= _autoVentOptInWafer) { bAutoVent = true; } } LOG.Write(eEvent.INFO_TM, Module, $"NotifyLLDone() => {_targetModule}, Sequence Pattern{_sequencePattern}, unprocessed wafer:{waferStatus.unprocessed}, processed wafer: {waferStatus.processed},bAutoVent = {bAutoVent}, Config Option:{_autoVentOptInWafer},{_autoVentOptOutWafer}"); _llModule.PostMsg(bAutoVent ? LLEntity.MSG.AutoVent : LLEntity.MSG.TM_Exchange_Ready); return true; } public void Abort() { _robot.Halt(); } } }