コード例 #1
0
ファイル: InFlowMaster.cs プロジェクト: yichunbong/CSOT
        public static void RemoveJob(LotLocation lotLocation)
        {
            FabLot lot = lotLocation.Lot;

            string key = JobState.GetKey(lot);

            JobState jobState;

            if (_jobStateDic.TryGetValue(key, out jobState))
            {
                jobState.RemoveWipVar(lotLocation);
            }
        }
コード例 #2
0
        //TODO : jung DCN투입물량 Inflow 작성필요
        public void AddReleaePlan(JobState jobState, FabStep firstStep, AoEquipment equipment)
        {
            //Current 현재 3시간치 분량
            var plans = ReleasePlanMaster.DcnMst.Current;

            foreach (var plan in plans)
            {
                if (plan.IsRelease)
                {
                    continue;
                }
            }
        }
コード例 #3
0
ファイル: InFlowMaster.cs プロジェクト: yichunbong/CSOT
        public static void AddJob(LotLocation lotLocation)
        {
            FabLot lot = lotLocation.Lot;

            string key = JobState.GetKey(lot);

            JobState jobState;

            if (_jobStateDic.TryGetValue(key, out jobState) == false)
            {
                _jobStateDic.Add(key, jobState = new JobState(lot));
            }


            jobState.AddWipVar(lotLocation);
        }
コード例 #4
0
        internal static List <FabLot> WaitForPrevStepWip_Dummy(IDispatchContext ctx, FabAoEquipment eqp)
        {
            List <JobFilterInfo> jobList = ctx.Get <List <JobFilterInfo> >(Constants.JobGroup, null);

            if (jobList == null)
            {
                return(null);
            }

            FabPlanInfo last = eqp.GetLastPlan();             //eqp.LastPlan as FabPlanInfo;

            if (last == null)
            {
                return(null);
            }

            //if (eqp.EqpID == "THWEM200" && LcdHelper.StringToDateTime("20191021235617") <= eqp.NowDT)
            //	Console.WriteLine();

            JobState state = InFlowMaster.GetJobState(last.ProductID, last.OwnerType);

            if (state == null)
            {
                return(null);
            }

            var holdWips   = state.GetHoldWipList(last.FabStep, last.ProductVersion);
            var prvRunWips = state.GetPrevStepRunWipList(last.FabStep, last.ProductVersion);

            JobFilterInfo        minSetupJobFilter     = null;
            List <JobFilterInfo> filteredList          = new List <JobFilterInfo>();
            Dictionary <string, JobFilterInfo> current = new Dictionary <string, JobFilterInfo>();

            foreach (var info in jobList)
            {
                if (info.IsEmpty)
                {
                    continue;
                }

                string key = FilterHelper.GetJobFilterKey(info);
                current.Add(key, info);

                if (FilterHelper.CheckIsRunning(eqp, info))
                {
                    filteredList.Add(info);
                    continue;
                }

                if (info.FilterType != DispatchFilter.None)
                {
                    filteredList.Add(info);
                    continue;
                }

                if (info.SetupTime == 0)
                {
                    continue;
                }

                if (minSetupJobFilter == null)
                {
                    minSetupJobFilter = info;
                }

                if (minSetupJobFilter.SetupTime > info.SetupTime)
                {
                    minSetupJobFilter = info;
                }
            }

            if (minSetupJobFilter == null)
            {
                return(null);
            }

            Dictionary <string, FabLot> avableLots = new Dictionary <string, FabLot>();

            foreach (var lot in holdWips)
            {
                if (eqp.IsLastPlan(lot.CurrentShopID, last.StepID, lot.CurrentProductID, lot.CurrentProductVersion, lot.OwnerType, lot.OwnerID))
                {
                    continue;
                }

                string key = FilterHelper.GetJobFilterKey(lot.CurrentShopID, last.StepID, lot.CurrentProductID, lot.CurrentProductVersion, lot.OwnerType);
                if (current.ContainsKey(key))
                {
                    continue;
                }

                Time  remainHold = lot.HoldTime - (eqp.NowDT - lot.HoldStartTime);
                float setupTime  = SetupMaster.GetSetupTime(eqp, lot);

                if (remainHold.TotalMinutes + setupTime < minSetupJobFilter.SetupTime)
                {
                    if (avableLots.ContainsKey(key) == false)
                    {
                        avableLots.Add(key, lot);
                    }
                }
            }

            foreach (var lot in prvRunWips)
            {
                string lastShopID         = last.ShopID;
                string lastStepID         = last.StepID;
                string currProductID      = lot.CurrentProductID;
                string origProductVersion = lot.OrigProductVersion;
                string ownerType          = lot.OwnerType;
                string ownerID            = lot.OwnerID;

                //TODO : bong - product version ??
                if (eqp.IsLastPlan(lastShopID, lastStepID, currProductID, origProductVersion, ownerType, ownerID))
                {
                    continue;
                }

                string key = FilterHelper.GetJobFilterKey(lastShopID, lastStepID, currProductID, origProductVersion, ownerType);
                if (current.ContainsKey(key))
                {
                    continue;
                }

                Time tranferTime = TransferMaster.GetTransferTime(lot, eqp);
                Time setupTime   = SetupMaster.GetSetupTime(eqp, lastShopID, lastStepID, currProductID, origProductVersion, ownerType, ownerID);

                if (tranferTime + setupTime < minSetupJobFilter.SetupTime)
                {
                    if (avableLots.ContainsKey(key) == false)
                    {
                        avableLots.Add(key, lot);
                    }
                }
            }

            Dictionary <string, List <FabAoEquipment> > workingEqps = ResHelper.GetWorkingEqpInfos(eqp, true);

            List <FabLot> list = new List <FabLot>();

            foreach (var lot in avableLots.Values)
            {
                FabPlanInfo plan  = EntityControl.Instance.CreateLoadInfo(lot, last.Step) as FabPlanInfo;
                FabLot      dummy = CreateHelper.CreateDispatchDummyLot(last.FabStep, plan);
                dummy.LotID = "DUMMY_PREVSTEP";

                JobFilterInfo jobfilter = CreateHelper.CreateDispatchFilterInfo(last.Step as FabStep, lot.CurrentProductID, lot.OrigProductVersion, lot.OwnerType, lot.OwnerID);
                jobfilter.InitJobFilterInfo(eqp, workingEqps);
                jobfilter.LotList.Add(dummy);
                dummy.DispatchFilterInfo = jobfilter;

                list.Add(dummy);
            }

            return(list);
        }
コード例 #5
0
ファイル: InFlowMaster.cs プロジェクト: yichunbong/CSOT
        internal static JobState GetJobState(string productID, string ownerType)
        {
            string key = JobState.CreateKey(productID, ownerType);

            return(GetJobState(key));
        }
コード例 #6
0
ファイル: InFlowMaster.cs プロジェクト: yichunbong/CSOT
        internal static JobState GetJobState(FabLot lot)
        {
            string key = JobState.GetKey(lot);

            return(GetJobState(key));
        }
コード例 #7
0
ファイル: JobState.cs プロジェクト: yichunbong/CSOT
 public StepRouteInfo(JobState state, FabStep step, string productVersion)
 {
     this.Parent = state;
     this.Step   = step;
 }
コード例 #8
0
 public void AddReleaePlanInputAgent(JobState jobState, FabStep firstStep, AoEquipment equipment)
 {
 }