question

diana avatar image
0 Likes"
diana asked Jason Lightfoot edited

scheduling

1115.fsm how can i dispatch this model usingshortest processing time and longest processing time,ERD(FCFS, ready time), ECT(ready time+processing time),Because my three products will be reflowed, for example, a machine will first process item1=0, and then reflow process item1=2, so how can the machine be ordered by processing time ASC before selecting item1=1 products in the SPT setting? I already have the processing time of each machine for three products in the global table,

FlexSim 20.1.3
schedulingsptlptecterd
1115.fsm (330.4 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered Jason Lightfoot edited

Put the expressions for ERD, ECT, SPT on the lists an when you pull you can say ORDER BY ..... ASC etc. Use the value and puller keywords in the expressions to refer to the jobs and resources (or vice versa) to determine the ERD and ECT based on the jobs that you've already assigned to that resource. I'd keep a track of those use a resource label with array or map data.

Also - your model looks like it should be using Object Process Flows since there is much duplication.

· 7
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Felix Möhlmann avatar image Felix Möhlmann commented ·

Example model:

The two labels "NextProcessingTime" and "TotalPendingTime" are added in the On Creation trigger of the source, in addition to the "Type" and "Step" label.

1669715888315.png

The queues after the source push the items onto a list (onto different partitions, so that the two clusters can't access each others items). The labels are added to the list as fields. This allows to filter and order the items by the label values when pulling them.

1669716956280.png (Only Type 1 and 2 can be pulled, ordered by the label "NextProcessingTime")

In the upper object cluster, the processors pull by the "NextProcessingTime" in ascending order, in the lower one by "TotalPendingTime". After running the model for some time, you will see that in the upper queue mainly accumulates green items at step3, since that step has the single longest processing time. In the lower queue fresh red items accumulate, since they have the overall longest processing time.

job-ordering.fsm

0 Likes 0 ·
1669715888315.png (13.8 KiB)
1669716956280.png (14.0 KiB)
job-ordering.fsm (162.8 KiB)
mark zhen avatar image mark zhen commented ·

The problem now is that I have a lot of q in the same place (because the products entered are different products). If so, is there a way to sort them? Or I can combine q into one. I would like to ask how to rewrite it.

1669717860880.png


0 Likes 0 ·
1669717860880.png (83.2 KiB)
Felix Möhlmann avatar image Felix Möhlmann mark zhen commented ·
As long as the items are distinguishable by a common label you can place them all in a single queue and filter for the correct ones in the query. See my attached model above in which three different types all share a queue.
0 Likes 0 ·
mark zhen avatar image mark zhen Felix Möhlmann commented ·

I don't understand why my model isn't pushed into the list1115-+柔.fsm

1669982572501.png

And I have to make sure that my itemN=M is a must

1669981801474.png

I have two products now, one is blue, item1=0, but the spt will be 60, brown is item=4, but the spt will be 50, and under normal circumstances, it will be an object with a smaller spt.

1669982583791.png

The yellow part will be item1=3 I have to make sure the tags are correct as it will affect my order.

0 Likes 0 ·
1669982572501.png (12.8 KiB)
1669982583791.png (44.7 KiB)
1115-柔.fsm (329.6 KiB)
Show more comments
Joerg Vogel avatar image
0 Likes"
Joerg Vogel answered diana edited

You can read table values in function for Process Time. You can assign label values at your items entering your processors. You read such labels to identify table row and column to get table cell value as your process time. If you compute your process time by different table cells you need more label values to get evaluated.

· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

diana avatar image diana commented ·

hi @Joerg Vogel thanks your answers, I have setting labels and identify table row and column,but i don't know how to set the setting in SPT and anthor rules, Because my three products will be reflowed, for example, a machine will first process item1=0, and then reflow process item1=2 ,I want to Order by processtime ASC first ,and then select item=2 ,how to write the code in Query of the Pull Strategy?

0 Likes 0 ·