question

tyler.mauk avatar image
0 Likes"
tyler.mauk asked Matthew Gillespie commented

Define flow rates by distribution

I want to be able to change the distribution from the queue named _12 Percent Custom. I need to send it to the processors by some sort of distribution, whether it be uniform, triangular, lognormal, etc.

Any help or direction would be appreciated.

send to portstatistical distributionflowflexsim 7.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.

1 Answer

·
Jeff Nordgren avatar image
0 Likes"
Jeff Nordgren answered Matthew Gillespie commented

Setting flow rules based on distributions isn't a typical use case. Usually your historical data defining your flow can be broken down into percentages.

If you do find that you need to use a distribution to define your Send To Port logic, there are several factors to consider.

Bounded Distributions

For a bounded distribution (having a defined minimum and maximum), things stay fairly simple. For instance, for your queue where the minimum port is 1, and the maximum port can be obtained via a call to nrop(), in your queue's Send To Port field, you could have the following:

return duniform(1, nrop(current));

uniform() is a continuous distribution, and it doesn't really make sense to send an item through port 3.1415. This is why we used the discrete version, duniform().

For a triangular() distribution, things get just a bit trickier. Given a mode value, we then have to account for the fact that the triangular distribution is continuous. Our port numbers are discrete, so we need to convert the continuous value returned by triangular() to an integer:

double mode = 2.3456;
int port = triangular(1, nrop(current)+1, mode);
return minof(port, nrop(current));

Here we're casting the result of the triangular() function call to an integer. Doing so strips the decimal value from the number, ie 1.4, 1.6, or 1.999 all become 1.

Why is triangular()'s max set as nrop()+1? Let's say nrop(current)==4. Our triangular distribution will return any value between 1 and 5, inclusive. By stripping off the decimal parts of the return values, we get our discrete values of 1, 2, 3, or 4. However, having our max set to 5 does allow triangular() to return 5 as a valid result, which won't make sense for our port numbers.

This is why we call minof() in the return statement. We are able to disallow the return of that max value (5) by only returning values up to the actual number of output ports.

Unbounded Distributions

How will you handle the infinite range of values that can be returned by an unbounded distribution? How will you put your own bounds on the result? Since you mentioned it, let's use the lognormal() distribution as an example.

The following graph shows the result of 10,000 calls of lognormal(1,2,1):

Notice that the chances of getting values between 3 and 15 are pretty good - there is a high frequency of results being in that range. Probabilities diminish as we move further right. At the far right of the graph is a spike. This is the "catchall" bin - with this particular graph of the results, any values greater than 100 are lumped in that far right bin. The probability of any single value diminishes as we move to the right, but the power of the long tail is evident - there are a lot of values returned that are out of the bounds of the bins that I defined in Excel. Statistically, that long tail extends infinitely, with ever diminishing probabilities.

How should we equate these results with port numbers in FlexSim? There are several ways you could approach this problem - below is just one example.

Choose a range of values that capture the portion of the curve's shape that you're interested in. In this graph, our minimum value is 1, and a max of 101 adequately captures the shape of this curve for our purposes. If we ever roll the lognormal() dice and get a value greater than 101, we'll just roll the dice again. This essentially takes any remaining probability of values greater than 101 and spreads that probability across the portion of the curve that we're keeping.

Now we have to convert these values, 1-101, into port numbers 1-4 (keeping with the example where nrop(current)==4):

int minval = 1;
int maxval = 101;
double val = lognormal(1,2,1);
while (val >= 101) {
	val = lognormal(1,2,1);
}
int range = maxval-minval;
int port = (val-minval)*nrop(current)/range;
port = minof(port+minval, nrop(current));
return port;

The following graph shows the histogram of values produced by 10,000 iterations of the above code:

As you can see we've pretty well approximated the lognormal() curve as best we can using just 4 bins for the 4 output ports.


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

Brandon Peterson avatar image Brandon Peterson ♦ commented ·

If you still want to use a distribution then you need to make sure that the value you return is an integer. You can either use the trunc() or round() commands. If you are using round() then the second parameter needs to be '0'.

Example:

return round(normal(5, 1.1), 0);
0 Likes 0 ·
Matthew Gillespie avatar image Matthew Gillespie ♦♦ Brandon Peterson ♦ commented ·

In this answer Jeff does this by storing the value returned by the distribution in an integer which accomplishes the same thing.

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.