question

Jay K9 avatar image
0 Likes"
Jay K9 asked Felix Möhlmann commented

Get stat of number of group in Batch Process Flow?

I am trying to batch tokens as per a specific label group. However, I want no more than 10 group in the batch process flow block. If the token entering is from the group that are being matched it should be allowed to enter, if its a token carrying a label which will create new group than it should wait till one of the group have completed batching 5 tokens of same group type.

Is there a way to achieve this?

FlexSim 23.0.15
batchlabelgroup by
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

·
Jason Lightfoot avatar image
2 Likes"
Jason Lightfoot answered Felix Möhlmann commented

Here's one approach using a list which seems to work. If you want the tokens batched in to one token, you could add a batch activity and after the final pull use the pulled array to set a batchID on each token (such as the time of the pull).

BatchZoneViaLists_4.fsm


· 4
5 |100000

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

Felix Möhlmann avatar image Felix Möhlmann commented ·

Here's another possible approach:

Each token first has to enter a zone that only allows one token per type. If its type is not part of a currently active batch (tracked in a map global variable), the token first has to acquire a "batch spot" before it can continue. Tokens of already active batches can bypass this step. After a batch is complete, the token that acquired the resource returns it and resets the entry in the global variable.

The "Breathe" after the first zone entry allows this to happen before further tokens of the same type are allowed to enter the batch activity.

limit-number-of-active-batches-fm.fsm

1 Like 1 ·
Jay K9 avatar image Jay K9 Felix Möhlmann commented ·

Thanks, I do think second approach is fitting my current logic well. In this one addition I'd like to have ideally is after batch there's a 1 hr delay in my model. Now if a token.type=4, won't be released from map which might make a token.type of value 4 generated to bypass the batchspots acquiring even though the the initial value 4 token has batched and is being processed so this new one should be acquiring a batch spot

0 Likes 0 ·
Jay K9 avatar image Jay K9 Jay K9 commented ·

@Felix Möhlmann continued question above

0 Likes 0 ·
Show more comments

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.