question

harish.varma avatar image
0 Likes"
harish.varma asked harish.varma commented

Simulate changeover only for an specific itemtype.

Suppose we have 3 itemtypes say item1, item2, item3

At the processor, we had to include the changeover time based on the sequence of flow of items. Changeover time should be considered only when item3 enters the processor.

CHANGEOVER: When there is a change in itemtype i.e if current itemtype is different than the lastitemtype..

Changeover time between item1 and item2 is 0 min.

Changeover time between item2 and item3 is 15 min.

Changeover time between item1 and item3 is 15 min.

Please let me know how to simulate the changeover for an specific itemtype.

Thanks.

FlexSim 7.7.4
simulate changeoverspecific itemtype
5 |100000

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

1 Answer

·
achuta.kalidindi avatar image
2 Likes"
achuta.kalidindi answered harish.varma commented

One way to do it would be to capture the last item type in a label on the processor, and compare it to the current item type.

Ex:

if(getlabel(current, "item_type") == 2 && getitemtype(item) == 3)

{

return 15;

}

Make sure to list all the applicable conditions and do this in the setup time field

*item_type is just a place holder, for any label name

@harish.varma

· 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.

harish.varma avatar image harish.varma commented ·

Thanks @achuta.kalidindi. It worked.

0 Likes 0 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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