question

JUanGarcia avatar image
0 Likes"
JUanGarcia asked Jeanette F commented

DDMRP Problem

We are trying to simulate a DDMRP case with FlexSim, we have some problems. First of all we want the sink to take the product types at the time and quantity that is stablish in the Global Table called "Demand". Then we want to make the queu to ask the procesor called "Solder Paste" to process a number of boxes when the queu arrives to a number of boxes establish. Then, each references in the queu will be different, but if you do an example of any quantity and time will be okay, we will change them.

We will be grateful if you can help us.

DDMRP Question.fsm

FlexSim 22.1.3
global tablepull strategyddmrp
ddmrp-question.fsm (71.4 KiB)
· 3
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

Kavika F avatar image
2 Likes"
Kavika F answered Joerg Vogel commented

Hey @JUanGarcia, I'll see if I can help here.

1) The Sink: For your sink to save it's values to a table, you need to provide the "Increment" section with a treenode. I just made a Global Table called "Sink Types" to store values for simplicity:

1674250916488.png

As for your Demand table, you can have a Process Flow that takes care of it.
1674252928316.png

Here's an example. You have two sources - one spawns a token when an Item enters a qReference queue and other that spawns tokens based on your Demand schedule. So you'll have nearly 14500 tokens come from the left Source but only about 3500 tokens come out of the right Source. They'll push those tokens to a list. On the sink, you can have a Pull Strategy to only pull items that are found on that list.

1674253244412.png

2) The Processor: For your second question, it sounds like you want to have an Event-Trigger that opens and closes the Solder Paste port based on a queue's quantity. Based on your OnEntry triggers in your Solder Paste Processor, it looks like you want to do this based on the quantities in the qReference Queues.

You can write a script that checks the queues to see if they're past a certain amount. For example:

  1. /**Custom Code*/
  2. string nameStart = "qReference";
  3. int pastMax = 0;
  4. Table maximums = Table("Maximums");
  5. for (int i = 1; i <= 14; i++) {
  6. string queueName = nameStart + i;
  7. int currentAmount = Model.find(queueName).subnodes.length;
  8. if (currentAmount > maximums[i][1]) {
  9. pastMax = 1;
  10. break;
  11. }
  12. }
  13. return pastMax;

This will look at each of the queues and see if any of their current amounts is greater than a maximum set in a Global Table. You can use this as the condition in an OnEntry trigger for the Solder Paste processor:

1674255086461.png

Then you can have somewhere else a trigger that opens the input with the same condition but negative.


1674250916488.png (5.4 KiB)
1674252928316.png (19.2 KiB)
1674253244412.png (7.9 KiB)
1674255086461.png (7.9 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.