question

Vanessa Buen Abad avatar image
0 Likes"
Vanessa Buen Abad asked Sam Stubbs commented

Problem in round robin

Hello

I have a problem in a model. The general idea is a source2 creating pallets and filling 4 random racks. Then another source1 creating orders (boxes) with a label "NumPallets" which tells the number of pallets (1 minimun or 2 maximum) of the order. This created order goes to a separator in which the boxes are split by the number of pallets (if the number of pallets is 1 it creates 1 box but if it is 2, 2 boxes are created). Then this boxes goes to a queue with an onEntry trigger with this code:

  1. int rnd=0;
  2. treenode yourRack1= centerobject(current, 1);
  3. treenode yourRack2= centerobject(current, 2);
  4. treenode yourRack3= centerobject(current, 3);
  5. treenode yourRack4= centerobject(current, 4);
  6.  
  7. rnd=duniform(1,4,0);
  8.  
  9. if (content(yourRack1)>0) {
  10. if (rnd==1) {
  11. openoutput(yourRack1);
  12. closeoutput(yourRack2);
  13. closeoutput(yourRack3);
  14. closeoutput(yourRack4);
  15. }
  16. }
  17.  
  18. if (content(yourRack2)>0) {
  19. if (rnd==2) {
  20. openoutput(yourRack2);
  21. closeoutput(yourRack1);
  22. closeoutput(yourRack3);
  23. closeoutput(yourRack4);
  24. }
  25. }
  26.  
  27. if (content(yourRack3)>0) {
  28. if (rnd==3) {
  29. openoutput(yourRack3);
  30. closeoutput(yourRack2);
  31. closeoutput(yourRack1);
  32. closeoutput(yourRack4);
  33. }
  34. }
  35.  
  36. if (content(yourRack4)>0) {
  37. if (rnd==4) {
  38. openoutput(yourRack4);
  39. closeoutput(yourRack2);
  40. closeoutput(yourRack3);
  41. closeoutput(yourRack1);
  42. }
  43. }

The code generates a random number from 1 to 4 and depends on this number is the center port which opens and the others close. On each of the racks there are 2 triggers on exit and on reset which close all ports if the condition is true.

The idea is when a box enters to this queue1, a pallet from the racks have to go out to the queue2. At the end the total number of boxes in queue1 (pallets orders) must be the same of queue2 (real pallets that have to go out).

It happens when the interarrival time of the pallets is like 30 secs (forum-1-ok.fsm) but does not happens when the interarrival tiem of the pallets is like 200 secs or more (forum-2-ng.fsm). Maybe it can be solved by substituting my code with a "round robin if available" code but I really do not understand it.

Can you help me please? I attached the two models. Thank you so much

forum-2-ng.fsm

forum-1-ok.fsm

Choose One
routinground robinflowitem routing
forum-1-ok.fsm (18.2 KiB)
forum-2-ng.fsm (18.4 KiB)
forum-1-ok.fsm (18.2 KiB)
· 2
5 |100000

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

Joerg Vogel avatar image
0 Likes"
Joerg Vogel answered Sam Stubbs commented

The Entry Trigger does not fire if you need an object. There are two different methods Flexsim works at all. Push by Send To and Pull by Pull From. Only if an item moves by those two functions a trigger fires. In the way of opening and closing the output you limit the time an object can move items by pull or push method. You don't initiate the move at all. If there isn't an released or pulled item in the time the rack has an open output, no item moves. As @Jeff Nordgren has already described your approach works only if all your racks store enough items and their dwell times had been finished. Your approach let fill up the racks instead of making them empty. You have to wait until the racks are storing enough items. Then you have to wait until the random number generator opens a rack's output at the event of entering the queue which fills the following racks. But if all stored items are ready for release in this rack, all items go to next objects if the capacity to receive those items match the number of items that have been released. Or another entering item in the queue which fills the racks closes the output again and opens another rack which isn't empty.

If you want that at every entering event in the queue a rack releases at least an item there has to be items to be released and the output of the populated rack has to be open. You can close the output of the rack right after an item has left or you define some conditions when the output is closed again.

I think your current approach works well as it is but you have to wait long periods to see racks to release items. This becomes even more true as you control more racks this way.

· 2
5 |100000

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

Jeff Nordgren avatar image
2 Likes"
Jeff Nordgren answered

@Vanessa Buen Abad,

I don't believe that the problem is with your code, per se. What I believe is happening is that when the interarrival time for the pallets is set low, there is always a supply of pallets in the racks to be sent to Queue2. But when the interarrival time for the pallets is set too high, then when a pallet is supposed to be sent to Queue2 but there isn't one in the rack to be sent, it just gets ignored and no pallet gets sent to Queue2.

As long as there is a supply of pallets in the racks, your model will work fine. If the racks are being "starved", then no pallet(s) will be sent to Queue2, which accounts for the difference in numbers that you are seeing. I hope that made some sense?

5 |100000

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