question

Manuel Silva avatar image
0 Likes"
Manuel Silva asked Manuel Silva commented

Combine items with the same color in a tray

I'm working on a model where I have three sources (one for trays and the other two for regular lane and fast lane) and these are connected to two combiners. The combiners pack two items per tray. What I want to do is to combine two items with the same color in one tray. I have found a similar question, however in that case the pallets are colored too (Similar Question) and in my case the trays are all equal. Can anyone help me solve this problem?

FlexSim 25.0.2
combiner pull
· 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.

1 Answer

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Manuel Silva commented

In the post you linked, Jason compares the Type label on the container object with that of the item to be pulled to decide whether it can be pulled or not. You would alter this to first check if there is already an item on the tray. If so, do the same check. If not, return "1" to pull any item.

So this would one possible implementation of that in the Pull Requirement code.

  1. /**Custom Code*/
  2. Object current = ownerobject(c);
  3. Object item = param(1);
  4. int port =  param(2);
  5.  
  6. if(port == 1) {
  7.     // Pull any tray
  8.     return 1;
  9. }
  10.  
  11. if(current.first.subnodes.length > 0) {
  12.     // If there is an item on the tray, type must match
  13.     return current.first.first.Type == item.Type;
  14. }
  15. else {
  16. // Pull any item if tray is empty
  17. return 1;
  18. }
· 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.