question

Axel Kohonen avatar image
0 Likes"
Axel Kohonen asked Axel Kohonen edited

Use queue strategy for a resource in Process flow that is in numeric mode?

Hi,

I have a numeric resource in my process flow that is acquired at different phases of the process flow. I would like the acquire activities later down in the process flow to have a higher priority than the acquire activities at the start of the flow. Otherwise the tokens will get into the flow, but possibly never get out as new tokens entering reserve the resource first. I would not free the resource in between else, but there are other work phases in between when the first resource is not needed.

The solution would be to use the Queue strategy on the resource, but it seems that it is not possible when using numeric references.

See the attached model that illustrates the problem

20170814-queuestrategywithnumericresource.fsm

Any clue on if it is possible to use the queue strategy with numeric resources or how I can get around the problem?

Thank you!

Kind regards,

Axel

FlexSim 17.1.2
process flowresourcequeue strategynumeric reference
5 |100000

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

Matt Long avatar image
1 Like"
Matt Long answered Axel Kohonen edited

The numeric option for the Resource does not use a list, and so, you can't use a queue strategy. The numeric is just saying, I have x amount of something and the resource will decrement and increment that number as things acquire and release.

If you need to use a queue strategy I would suggest using an array instead of numeric. Set your Reference field to

  1. [1, 1, 1, 1, 1]
  2. or
  3. [1, 2, 3, 4, 5]

With an array, it can push each value of the array to a list and the pull those numbers off the list when you acquire.

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

Kari Payton avatar image
1 Like"
Kari Payton answered Axel Kohonen commented

@Axel Kohonen

You can set a token label in process flow and assign a resource queue strategy to order by the label you created.

1. Create label called priorityLabel and assign number values in ascending order (most important = 1...least important = 3).

2. In the resource connect it to a 3D object. Go to it's advanced properties in the process flow. In the fields tab, create a label field "priorityLabel". In the back orders tab, Queue strategy: ORDER BY Puller.priorityLabel ASC.

You should see the tokens that acquire the 3rd time exist faster than how it was set up previously. 8055-20170814-queuestrategywithnumericresource.fsm


· 5
5 |100000

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